/* ==========================================================================
   1. GLOBAL CONFIGURATION & SMOOTH SCROLLING
   ========================================================================== */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #2D3748; 
    background-color: #F8FAFC; 
    line-height: 1.7;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #1A3020; 
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ==========================================================================
   2. STICKY NAVIGATION BAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px); 
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.logo-link {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 80px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #475569;
    font-weight: 500;
    font-size: 1.3rem;
}

.nav-links a:hover {
    color: #C27D38; 
}

.cta-btn {
    background-color: #1A3020;
    color: #FFFFFF !important;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.cta-btn:hover {
    background-color: #2D4A35;
    transform: translateY(-1px);
}

/* ==========================================================================
   3. HERO SPLIT SECTION
   ========================================================================== */
.hero-split {
    margin-top: 71px; 
    background-color: #F4F4F0; 
    display: flex;
    align-items: center;
    min-height: 75vh; 
    overflow: hidden;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 45% 55%; 
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    padding: 5vw 4% 5vw 5%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.hero-welcome {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 1.2vw, 1.1rem); 
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #475569; 
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.hero-hotel-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4.5vw, 4rem); 
    line-height: 1.1;
    color: #C27D38; 
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    color: #1A3020; 
    margin-bottom: 1.75rem;
}

.hero-desc {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    color: #576574;
    margin-bottom: 2.5rem;
    max-width: 480px;
    line-height: 1.7;
}

.hero-primary-btn {
    align-self: flex-start;
    background-color: #1A3020;
    color: #FFFFFF;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 4px;
}

.hero-image-side {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: url('images/sunset-img.png') center right/cover no-repeat;
}

.hero-image-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1px; 
    width: 101%;
    height: 100%;
    background: linear-gradient(to right, #F4F4F0 0%, rgba(244, 244, 240, 0.4) 25%, rgba(244, 244, 240, 0) 60%);
    pointer-events: none;
}

/* ==========================================================================
   4. BRAND AMENITIES PANEL
   ========================================================================== */
.amenities-bar {
    background-color: #1A3020; 
    color: #FFFFFF;
    padding: 2.5rem 5%;
}

.amenities-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.amenity-item {
    text-align: center;
    flex: 1;
    min-width: 160px;
}

.amenity-icon {
    display: inline-block;
    height: 40px;
    width: auto;
    margin-bottom: 0.75rem;
}

.amenity-item h3 {
    color: #EFEFEA;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.amenity-item p {
    color: #A3B8CC;
    font-size: 0.85rem;
}

/* ==========================================================================
   5. CONTAINER & LAYOUT MANAGEMENT
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem; 
}

.section-scroll {
    scroll-margin-top: 100px;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1A3020;
}

.page-header p {
    color: #64748B;
    font-size: 1.1rem;
}

/* ==========================================================================
   6. CARDS, GRID ARCHITECTURE & GALLERY
   ========================================================================== */
.grid-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.display-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border-left: 4px solid #1A3020;
}

.display-card h3 {
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

/* FEATURED ROOM LUXURY CONTAINER */
.rooms-showcase {
    max-width: 850px;
    margin: 0 auto;
}

.display-card-featured {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border-top: 5px solid #1A3020;
}

.display-card-featured h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.card-divider {
    border: 0;
    height: 1px;
    background: #E2E8F0;
    margin: 2rem 0;
}

.amenities-grid-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.amenity-bullet {
    font-size: 0.95rem;
    color: #475569;
}

.picnic-highlight {
    background-color: #F4F4F0;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    border-left: 4px solid #C27D38;
    font-size: 0.95rem;
    color: #1A3020;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ==========================================================================
   7. INTERACTIVE CONTACT SECTION & LIVE MAP
   ========================================================================== */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.map-container {
    width: 100%;
    min-height: 380px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border: 1px solid #E2E8F0;
}

/* ==========================================================================
   8. FOOTER
   ========================================================================== */
footer {
    background-color: #111827;
    color: #94A3B8;
    text-align: center;
    padding: 3rem 1rem;
    font-size: 0.9rem;
    border-top: 4px solid #C27D38;
}

/* ==========================================================================
   9. OPTIMIZED RESPONSIVE MEDIA QUERIES (Centering & Tightening Gaps)
   ========================================================================== */
@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-text {
        text-align: center;
        align-items: center; 
        padding: 3rem 5% 3rem 5%;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto; 
    }
    
    .hero-primary-btn {
        align-self: center; 
    }

    .hero-image-side {
        min-height: 350px; 
    }
    
    .hero-image-side::before {
        background: linear-gradient(to bottom, #F4F4F0 0%, rgba(244, 244, 240, 0.5) 20%, rgba(244, 244, 240, 0) 50%);
    }

    .container {
        padding: 3.5rem 1.5rem; 
    }
    
    .page-header {
        margin-bottom: 2rem; 
    }

    .contact-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-container {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .navbar {
        position: absolute;
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem 5%;
    }

    .nav-links {
        gap: 0.75rem 1.25rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .hero-split {
        margin-top: 0;
        padding-top: 230px; 
    }

    .display-card-featured {
        padding: 2rem 1.5rem;
    }

    .amenities-grid-list {
        grid-template-columns: 1fr; 
    }

    /* Combined Center Aligning Flex Layout for Green Ribbon Icons on Mobile Phones */
    .amenities-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center; 
        gap: 1.5rem 1rem;
    }

    .amenity-item {
        flex: 1 1 calc(50% - 1rem); 
        max-width: 200px;
    }
}