/* ==========================================================================
   1. Basic Reset & Typography
   ========================================================================== */
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    background-color: #f9f9f9; 
    color: #333; 
    line-height: 1.6; 
}

/* ==========================================================================
   2. Header Layout (3 Equi-distant Columns)
   ========================================================================== */
.main-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background-color: #ffffff; 
    padding: 15px 30px; 
    border-bottom: 1px solid #ddd; 
}

/* Base style for all 3 header columns to keep them equal width */
.header-col { 
    flex: 1; 
}

/* Left column containing the larger logo */
.left-nav { 
    text-align: left; 
}

.site-logo { 
    max-height: 120px; /* Increased size to make it more prominent */
    width: auto; 
    display: block; 
}

/* Center column containing the page links */
.logo-zone { 
    text-align: center; 
}

.logo-zone a {
    color: #1a365d;
    text-decoration: none;
    font-weight: 500;
}

/* Right column containing contact text */
.right-nav { 
    text-align: right; 
    font-size: 0.95rem;
}

/* ==========================================================================
   3. Main Page Grid Architecture (4 Columns Total)
   ========================================================================== */
.site-container { 
    max-width: 1400px; /* Slightly increased max width to make use of wider screens */
    margin: 20px auto; 
    padding: 0 15px; 
}

/* Changed from 1fr 2fr 1fr to 0.75fr 2.5fr 0.75fr for skinnier sidebars */
.main-layout { 
    display: grid; 
    grid-template-columns: 0.75fr 2.5fr 0.75fr; 
    gap: 25px; /* Slightly increased the gap for a cleaner, modern look */
}

/* ==========================================================================
   4. Sidebars (Columns 1 & 4)
   ========================================================================== */
.sidebar { 
    background-color: #ffffff; 
    padding: 15px; 
    border: 1px solid #e0e0e0; 
    border-radius: 6px; 
    height: fit-content;
}

.sidebar h3 { 
    font-size: 1.1rem; 
    margin-bottom: 15px; 
    color: #1a365d; 
    border-bottom: 2px solid #f0f0f0; 
    padding-bottom: 5px; 
}

.local-ad { 
    margin-bottom: 15px; 
    font-size: 0.9rem; 
}

.ad-img { 
    width: 100%; 
    height: auto; 
    border-radius: 4px; 
    margin-bottom: 8px; 
}

.sidebar a {
    color: #2b6cb0;
    font-weight: bold;
    text-decoration: none;
}

/* ==========================================================================
   5. Center Section (Columns 2 & 3 - Hotel Grid)
   ========================================================================== */
.hotel-content h2 { 
    margin-bottom: 20px; 
    color: #1a365d; 
}

/* Splitting the 2 center columns into two side-by-side hotel cards */
.hotel-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
}

/* Hotel Cards - Merged into one clean, symmetrical rule */
.hotel-card { 
    background-color: #ffffff; 
    border: 1px solid #e0e0e0; 
    border-radius: 8px; 
    overflow: hidden; 
    display: flex; 
    flex-direction: column; 
    min-height: 480px; /* Forces cards to line up symmetrically at the bottom */
}

/* Hard-locked Image Settings for your standardized images */
.hotel-img { 
    width: 100%;       /* Forces image to expand to the full width of the card */
    height: auto;      /* Allows it to respect your standard image aspect ratio perfectly */
    display: block;    /* Removes annoying default baseline gaps beneath the image */
}

.hotel-card-body { 
    padding: 15px; 
    display: flex; 
    flex-direction: column; 
    flex-grow: 1; 
    justify-content: space-between; /* Pushes card content and buttons into perfect alignment */
}

/* ==========================================================================
   6. Footer Setup
   ========================================================================== */
.main-footer { 
    background-color: #1a365d; 
    color: white; 
    padding: 30px 20px; 
    margin-top: 40px; 
    text-align: center; 
    font-size: 0.9rem; 
}

.main-footer a { 
    color: #90cdf4; 
    text-decoration: none; 
}

.disclosure-text { 
    margin-top: 15px; 
    font-size: 0.8rem; 
    color: #cbd5e0; 
}

/* ==========================================================================
   7. Responsive adjustments for Mobile/Tablets
   ========================================================================== */
@media (max-width: 992px) {
    /* Collapse the 4 desktop columns into 1 clean vertical column on smaller screens */
    .main-layout { 
        grid-template-columns: 1fr; 
    } 
    
    .hotel-grid { 
        grid-template-columns: 1fr; 
    }
    
    /* Stack the header elements centrally on mobile */
    .main-header { 
        flex-direction: column; 
        gap: 15px; 
    }
    
    .left-nav, .logo-zone, .right-nav { 
        text-align: center; 
    }
    
    .site-logo {
        margin: 0 auto;
    }
}