/*
 * Vana Retreat - Luxury rooted in Nature
 * Core Style Sheets & Design System
 */

/* ==========================================================================
   1. Design Tokens & Root Variables
   ========================================================================== */
:root {
    /* Harmony Color Palette */
    --color-primary: #3A322D;            /* Deep Warm Clay Espresso */
    --color-primary-rgb: 58, 50, 45;
    --color-gold: #C8A96E;               /* Warm Organic Gold */
    --color-gold-dark: #B09058;          /* Rich Mustard Gold */
    --color-charcoal: #2C2C2C;           /* Elegant Charcoal Text */
    --color-charcoal-rgb: 44, 44, 44;
    --color-cream: #f5f1eb;              /* Warm Sand/Stone Cream */
    --color-cream-dark: #EAE0D2;         /* Structured Soft Clay */
    --color-white: #FFFFFF;
    
    /* Elegant Typography */
    --font-serif-display: 'Cinzel', serif;
    --font-serif-body: 'Playfair Display', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Layout Tokens */
    --header-height: 80px;
    --header-height-mobile: 70px;
    --border-radius: 12px;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-snappy: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   2. Reset & Global Styles
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    background-color: var(--color-cream);
    color: var(--color-charcoal);
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

img, video {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-snappy);
}

button, input, select, textarea {
    font-family: inherit;
    background: none;
    border: none;
    outline: none;
}

/* Typography Helpers */
.font-serif {
    font-family: var(--font-serif-body);
}

.accent-text {
    color: var(--color-gold-dark);
    font-weight: 500;
}

/* ==========================================================================
   3. Main Header Navigation
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 2rem;
    transition: var(--transition-smooth);
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
}

/* Scroll Active Header State */
.main-header.scrolled {
    background: rgba(var(--color-charcoal-rgb), 0.95);
    backdrop-filter: blur(15px);
    padding: 1rem 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(200, 169, 110, 0.15);
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-cols: 1fr auto 1fr;
    align-items: center;
    width: 100%;
}

/* Menu Toggle Button (Left) */
.header-left {
    display: flex;
    justify-content: flex-start;
}

.menu-toggle-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: var(--transition-snappy);
    padding: 8px 12px;
    border-radius: 6px;
}

.menu-toggle-btn:hover {
    color: var(--color-gold);
}

.menu-icon {
    transition: var(--transition-snappy);
}

.menu-toggle-btn:hover .menu-icon {
    transform: scale(1.1);
}

/* Center Logo */
.header-center {
    display: flex;
    justify-content: center;
}

.brand-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.main-header.scrolled .brand-logo-img {
    height: 48px;
}

.drawer-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Header Right: Book Now Button */
.header-right {
    display: flex;
    justify-content: flex-end;
}

.book-now-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-gold);
    color: var(--color-charcoal);
    padding: 0.75rem 1.75rem;
    border-radius: var(--border-radius);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    overflow: hidden;
    position: relative;
    border: 1px solid transparent;
}

.book-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-gold-dark);
    z-index: 1;
    transform: translateY(100%);
    transition: var(--transition-snappy);
}

.book-now-btn:hover::before {
    transform: translateY(0);
}

.btn-text-wrapper {
    position: relative;
    display: inline-block;
    height: 15px;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.btn-text-normal, .btn-text-hover {
    display: block;
    transition: transform 0.3s ease-in-out;
}

.btn-text-hover {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
}

.book-now-btn:hover .btn-text-normal {
    transform: translateY(-100%);
}

.book-now-btn:hover .btn-text-hover {
    transform: translateY(0);
}

.chevron-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.book-now-btn:hover .chevron-icon {
    transform: translateY(2px);
}

/* ==========================================================================
   4. Navigation Drawer Overlay
   ========================================================================== */
.navigation-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    visibility: hidden;
    transition: visibility 0.5s;
}

.navigation-drawer.open {
    visibility: visible;
}

.drawer-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.navigation-drawer.open .drawer-backdrop {
    opacity: 1;
}

.drawer-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 10px 0 50px rgba(0, 0, 0, 0.5);
    border-right: 1px solid rgba(200, 169, 110, 0.2);
}

.navigation-drawer.open .drawer-content {
    transform: translateX(0);
}

.drawer-close-btn {
    align-self: flex-end;
    color: var(--color-gold);
    cursor: pointer;
    transition: var(--transition-snappy);
    padding: 8px;
    border-radius: 50%;
}

.drawer-close-btn:hover {
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.05);
    transform: rotate(90deg);
}

.drawer-brand {
    margin-bottom: 2rem;
}

.drawer-brand-title {
    display: block;
    font-family: var(--font-serif-display);
    font-size: 2.2rem;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: 0.25rem;
}

.drawer-brand-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.7;
}

.drawer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-link {
    font-family: var(--font-serif-body);
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    transition: var(--transition-snappy);
    display: inline-block;
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: var(--transition-snappy);
}

.nav-link:hover {
    color: var(--color-gold);
    transform: translateX(10px);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-gold);
}

.drawer-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.drawer-address {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.drawer-socials {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
}

.drawer-socials a:hover {
    color: var(--color-white);
}

/* ==========================================================================
   5. Immersive Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
}

.hero-media-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

.hero-content-container {
    position: relative;
    z-index: 2;
    padding-bottom: 6rem;
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.hero-text-reveal {
    overflow: hidden;
}

.hero-title {
    font-family: var(--font-serif-body);
    font-size: clamp(2rem, 4.5vw, 4rem);
    color: var(--color-white);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-title.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Sound Floating Button */
.volume-btn {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 5;
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-snappy);
}

.volume-btn:hover {
    background: var(--color-gold);
    color: var(--color-charcoal);
    border-color: transparent;
    transform: scale(1.05);
}

.hidden {
    display: none !important;
}

/* Mobile Booking Banner */
.mobile-booking-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-primary);
    padding: 12px;
    z-index: 90;
    border-top: 1px solid rgba(200, 169, 110, 0.25);
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
}

.mobile-book-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: var(--color-gold);
    color: var(--color-charcoal);
    padding: 0.85rem;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
}

/* ==========================================================================
   6. Custom Fades & Entrance Animations (Scroll Reveal)
   ========================================================================== */
.reveal-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Section Divider */
.divider-wrapper {
    max-width: 1600px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.decor-line {
    height: 1px;
    width: 100%;
    background-color: rgba(200, 169, 110, 0.3);
}

/* ==========================================================================
   7. Tranquil Escape Intro Section
   ========================================================================== */
.intro-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.section-subtitle {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

.section-paragraph {
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 1.5rem;
    font-family: var(--font-sans);
    font-weight: 300;
    color: #444;
}

.intro-right-illustration {
    display: flex;
    justify-content: center;
}

.illustration-container {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 320 / 260;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.camp-illustration {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ==========================================================================
   8. Showcase Split Highlight
   ========================================================================== */
.showcase-section {
    width: 100%;
    background-color: var(--color-charcoal);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
}

.showcase-media-box {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.media-zoom-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 12s ease-out;
}

.showcase-media-box:hover .showcase-image {
    transform: scale(1.08);
}

.showcase-text-box {
    background-color: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    border-left: 2px solid var(--color-gold);
}

.showcase-content {
    max-width: 500px;
}

.showcase-quote {
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    line-height: 1.25;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
}

.showcase-body {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.8;
}

/* ==========================================================================
   9. Story Parallax Grid Section
   ========================================================================== */
.story-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.story-left-sticky {
    position: relative;
}

.story-sticky-container {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    padding-right: 2rem;
}

.story-description {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.button-center-wrapper {
    display: flex;
    justify-content: center;
}

.luxury-action-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-gold);
    color: var(--color-charcoal);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(200, 169, 110, 0.2);
}

.luxury-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-gold-dark);
    z-index: 1;
    transform: translateY(100%);
    transition: var(--transition-snappy);
}

.luxury-action-btn:hover::before {
    transform: translateY(0);
}

.action-btn-text-wrapper {
    position: relative;
    display: inline-block;
    height: 16px;
    overflow: hidden;
    z-index: 2;
}

.action-text-normal, .action-text-hover {
    display: block;
    transition: transform 0.3s ease-in-out;
}

.action-text-hover {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
}

.luxury-action-btn:hover .action-text-normal {
    transform: translateY(-100%);
}

.luxury-action-btn:hover .action-text-hover {
    transform: translateY(0);
}

/* Right Cascading Parallax Images Stack */
.story-right-parallax {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.parallax-images-stack {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.parallax-wrapper {
    width: 80%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background-color: var(--color-cream-dark);
    transition: transform 0.1s ease-out; /* Parallax adjustments will override this */
}

.alignment-start {
    align-self: flex-start;
}

.alignment-end {
    align-self: flex-end;
}

.parallax-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

/* ==========================================================================
   10. Rooms & Suites Section
   ========================================================================== */
.rooms-section {
    background-color: var(--color-cream-dark);
    padding: 6rem 2rem;
}

.rooms-header-block {
    max-width: 1000px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.rooms-main-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.rooms-subtitle {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    font-weight: 300;
}

/* Room Showroom Display */
.room-showroom-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.room-slides-wrapper {
    position: relative;
    width: 100%;
}

.room-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    width: 100%;
}

.room-slide.active {
    display: block;
    opacity: 1;
}

.room-slide-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 45px rgba(0, 0, 0, 0.08);
}

.room-image-pane {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.room-full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s cubic-bezier(0.25, 1, 0.5, 1);
}

.room-slide.active .room-full-img {
    transform: scale(1.05);
}

.room-detail-pane {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-category-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold-dark);
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: block;
}

.room-title {
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.room-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 300;
}

.room-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 1.5rem;
    margin-bottom: 2rem;
}

.meta-item {
    font-size: 0.85rem;
    color: #444;
}

.meta-item strong {
    font-weight: 600;
    color: var(--color-primary);
}

.room-book-btn {
    align-self: flex-start;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 1px solid var(--color-primary);
    padding: 0.85rem 2rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    border-radius: var(--border-radius);
    transition: var(--transition-snappy);
    box-shadow: 0 4px 15px rgba(17, 34, 17, 0.15);
}

.room-book-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-charcoal);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

/* Slider Bottom Tabs */
.showroom-nav-bar {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.slide-nav-btn {
    font-family: var(--font-serif-body);
    font-size: 1.1rem;
    padding: 1.2rem 2.2rem;
    cursor: pointer;
    color: #666;
    border-bottom: 2px solid transparent;
    transition: var(--transition-snappy);
    position: relative;
}

.slide-nav-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-gold-dark);
    transition: var(--transition-snappy);
    transform: translateX(-50%);
}

.slide-nav-btn:hover {
    color: var(--color-primary);
}

.slide-nav-btn.active {
    color: var(--color-primary);
    font-weight: 600;
}

.slide-nav-btn.active::after {
    width: 100%;
}

/* ==========================================================================
   11. Experiences Section
   ========================================================================== */
.experiences-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.experiences-header {
    max-width: 900px;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.experiences-intro {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    font-weight: 300;
}

/* Experiences Horizontal Cards */
.experience-deck {
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1.5rem;
}

.experience-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.scroll-hide {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.scroll-hide::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

@media (min-width: 768px) {
    .experience-card {
        flex: 0 0 calc(50% - 1.25rem);
    }
}

@media (min-width: 1024px) {
    .experience-deck {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow-x: visible;
        padding-bottom: 0;
    }
    .experience-card {
        display: flex;
    }
}

.card-image-box {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.experience-card:hover .card-img {
    transform: scale(1.08);
}

.card-divider {
    height: 1px;
    background-color: var(--color-gold);
    width: 100%;
    margin-bottom: 1.2rem;
    opacity: 0.6;
}

.card-title {
    font-size: 1.25rem;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.card-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    font-weight: 300;
}

/* ==========================================================================
   12. Contact Form & Footer Section
   ========================================================================== */
.contact-section {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 6rem 2rem;
}

.contact-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
}

.contact-form-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-weight: 400;
}

.contact-form-subtitle {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    font-weight: 700;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    color: var(--color-white);
    padding: 0.85rem 1.2rem;
    font-size: 0.95rem;
    transition: var(--transition-snappy);
    width: 100%;
}

.form-group input::placeholder, 
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--color-gold);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(200, 169, 110, 0.15);
}

.form-group select option {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.form-submit-btn {
    background-color: var(--color-gold);
    color: var(--color-charcoal);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: var(--transition-snappy);
    margin-top: 1rem;
    display: inline-flex;
    justify-content: center;
}

.form-submit-btn:hover {
    background-color: var(--color-gold-dark);
    transform: translateY(-2px);
}

.form-feedback-message {
    margin-top: 2rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(200, 169, 110, 0.4);
    background-color: rgba(200, 169, 110, 0.08);
    color: var(--color-gold);
    font-size: 0.95rem;
    text-align: center;
}

/* Info Details Block (Right) */
.contact-info-block {
    display: flex;
    align-items: center;
}

.contact-info-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4rem;
    border-radius: var(--border-radius);
    width: 100%;
}

.info-pretitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.info-title {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
}

.info-details-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.info-detail-item strong {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.6;
}

.info-detail-item span {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.6;
}

.info-detail-item a {
    color: var(--color-gold);
}

.info-detail-item a:hover {
    color: var(--color-white);
}

/* Map Mockup */
.map-placeholder {
    height: 180px;
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 34, 17, 0.75);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-snappy);
}

.map-placeholder:hover .map-overlay {
    background-color: rgba(17, 34, 17, 0.6);
}

.map-text {
    font-size: 1rem;
    color: var(--color-white);
}

.map-mock-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: var(--transition-smooth);
}

.map-placeholder:hover .map-mock-bg {
    transform: scale(1.1);
}

/* ==========================================================================
   13. Footer Area
   ========================================================================== */
.main-footer {
    background-color: var(--color-charcoal);
    color: var(--color-white);
    padding: 5rem 2rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    font-size: 2.2rem;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    display: block;
    line-height: 1;
}

.footer-brand-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.6;
    margin-top: -0.5rem;
}

.footer-brand-desc {
    font-size: 0.85rem;
    opacity: 0.7;
    line-height: 1.7;
    font-weight: 300;
}

.footer-col-title {
    font-size: 1.25rem;
    color: var(--color-gold);
    font-weight: 500;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column ul a {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition-snappy);
}

.footer-column ul a:hover {
    color: var(--color-gold);
    opacity: 1;
    transform: translateX(5px);
}

.newsletter-txt {
    font-size: 0.85rem;
    opacity: 0.7;
    line-height: 1.6;
    font-weight: 300;
}

.footer-newsletter-form {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 8px;
    align-items: center;
}

.footer-newsletter-form input {
    background: none;
    border: none;
    color: var(--color-white);
    padding: 8px 0;
    width: 100%;
    font-size: 0.9rem;
}

.footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter-form button {
    color: var(--color-gold);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-snappy);
    padding: 0 8px;
}

.footer-newsletter-form button:hover {
    color: var(--color-white);
    transform: translateX(4px);
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright {
    font-size: 0.8rem;
    opacity: 0.5;
    font-weight: 300;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-links a {
    font-size: 0.8rem;
    opacity: 0.5;
}

.footer-legal-links a:hover {
    opacity: 1;
    color: var(--color-gold);
}

/* ==========================================================================
   14. Responsiveness Media Queries
   ========================================================================== */

/* Wide Screen Adjustments */
@media (min-width: 1600px) {
    .header-container {
        padding: 0 4rem;
    }
}

/* Mid Screen Adjustments (Tablets / Laptops) */
@media (max-width: 1100px) {
    .footer-top-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .intro-right-illustration {
        order: -1;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-text-box {
        border-left: none;
        border-top: 2px solid var(--color-gold);
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-sticky-container {
        position: static;
        padding-right: 0;
    }
    
    .experience-deck {
        grid-template-columns: 1fr 1fr;
    }
    
    .room-slide-grid {
        grid-template-columns: 1fr;
    }
    
    .room-detail-pane {
        padding: 2.5rem;
    }
    
    .room-slides-wrapper {
        min-height: auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

/* Small Screen Adjustments (Mobile Devices) */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    body {
        padding-bottom: 60px; /* Booking bar headroom */
    }
    
    .main-header {
        padding: 1rem;
    }
    
    .main-header.scrolled {
        padding: 0.8rem 1rem;
    }
    
    .header-container {
        display: flex;
        justify-content: space-between;
    }
    
    .menu-text {
        display: none; /* Icon only on mobile navigation bar */
    }
    
    .book-now-btn {
        display: none; /* Floating booking button on mobile */
    }
    
    .mobile-booking-bar {
        display: block;
    }
    
    .brand-logo-img {
        height: 44px;
    }
    
    .main-header.scrolled .brand-logo-img {
        height: 36px;
    }
    
    .hero-content-container {
        padding-bottom: 8rem;
    }
    
    .volume-btn {
        bottom: 6rem;
        left: 1rem;
        width: 40px;
        height: 40px;
    }
    
    .intro-section {
        padding: 2.5rem 1rem;
    }
    
    .showcase-text-box {
        padding: 2.5rem 1.5rem;
    }
    
    .story-section {
        padding: 2.5rem 1rem;
    }
    
    .rooms-section {
        padding: 3rem 1rem;
    }
    
    .room-detail-pane {
        padding: 1.5rem;
    }
    
    .room-meta-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .showroom-nav-bar {
        flex-wrap: wrap;
    }
    
    .slide-nav-btn {
        font-size: 0.95rem;
        padding: 0.8rem 1.2rem;
    }
    
    .experiences-section {
        padding: 3rem 1rem;
    }
    
    .experience-deck {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-section {
        padding: 3rem 1rem;
    }
    
    .contact-info-content {
        padding: 2rem 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    
    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .main-footer {
        padding-top: 3rem;
    }
}

/* ==========================================================================
   15. Destination Weddings & Celebrations Section
   ========================================================================== */
.weddings-section {
    background-color: var(--color-cream);
    padding: 4rem 2rem;
    overflow: hidden;
}

.weddings-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    text-align: center;
}

.weddings-content-box {
    max-width: 900px;
}

.weddings-media-box {
    width: 80%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.weddings-radial-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(ellipse 60% 55% at center, transparent 0%, transparent 25%, rgba(245, 241, 235, 0.1) 40%, rgba(245, 241, 235, 0.4) 55%, rgba(245, 241, 235, 0.7) 70%, rgba(245, 241, 235, 0.9) 82%, var(--color-cream) 95%, var(--color-cream) 100%);
}

.weddings-illustration-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95) contrast(0.9) saturate(0.8);
}

@media (min-width: 1024px) {
    .weddings-section {
        padding: 6rem 2rem;
    }
    .weddings-grid {
        gap: 6rem;
    }
    .weddings-media-box {
        min-height: 700px;
        width: 85%;
    }
}

/* ==========================================================================
   16. Floating Reels Play Button
   ========================================================================== */
.watch-reels-btn {
    position: fixed;
    right: 2.5rem;
    bottom: 2.5rem;
    z-index: 99;
    background-color: var(--color-gold-dark);
    color: var(--color-white);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition-snappy);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.watch-reels-btn:hover {
    transform: scale(1.1);
    background-color: var(--color-gold);
    color: var(--color-charcoal);
}

.reels-play-icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
    position: relative;
    left: 2px; /* Center alignment adjustment for play icon */
}

.pulse-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    animation: ringPulse 2s infinite ease-out;
    pointer-events: none;
    opacity: 0;
}

@keyframes ringPulse {
    0% {
        transform: scale(0.85);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .watch-reels-btn {
        bottom: 5.5rem; /* Repositioned above mobile booking tab bar */
        right: 1.5rem;
        width: 48px;
        height: 48px;
    }
    .reels-play-icon {
        width: 18px;
        height: 18px;
    }
}
