/* Meal and Lodging Layout */
.meal-lodging {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin: 30px 0;
}

.meal-lodging h2 {
  border-left: 4px solid #fec300;
  padding-left: 10px;
  margin-top: 0;
  font-size: 1.5em; 
  color: #444;
}
.meal-lodging h3 {
    text-align: center;
}

.meal-lodging p {
text-align:left;
}

.meal-lodging .text,
.meal-lodging .image {
    flex: 1 1 48%; /* Makes them sit side by side with some space */
}

.meal-lodging .text {
   text-align: left;
}

.meal-lodging img {
    width: 100%;
    max-width: 328px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: center;
}

.space-div {
text-align: center;
}

.space-image {
    width: 500px;
    border-radius: 8px;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .meal-lodging {
        flex-direction: column;
    }

    .meal-lodging .text,
    .meal-lodging .image {
        flex: 1 1 100%;
    }

    .space-image {
    max-width: 500px;
    width: 90%;}
}


/* Lodging Table */
.lodging-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.lodging-table th,
.lodging-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.lodging-table th {
    background-color: var(--lighter-bg);
}
