/* 
   Mungo Lodge Style Sheet
   Patched for strict layout, responsive, and typography rules
*/

:root {
    --color-primary: #cc4336;
    --color-accent: #FA8046;
    --color-brown: #4B2313;
    --color-forest: #1A2F1C;
    --color-text-dark: #1c1917;
    --color-text-body: #57534e;
    --color-bg-light: #FFFFFF;
    --color-bg-stone: #F7F5F2;

    --font-display: 'Playfair Display', serif;
    --font-body: 'Source Sans 3', sans-serif;

    /* Spacing System - Mobile First Baseline */
    --section-spacing: 4rem;
    /* 64px standard mobile padding */
    --section-gap: 3rem;
    /* 48px standard mobile margin */
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography Utilities */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 500;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
}

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

/* Base Section Styling */
section {
    position: relative;
    width: 100%;
    z-index: 1;
}

/* Universal Aurora Effect for Slide Content */
.slide-content h1,
.slide-content p,
.slide-content .feature-item {
    /* Aurora Text Effect */
    background: linear-gradient(to right,
            #ffffff 20%,
            #FCD34D 40%,
            #cc4336 50%,
            #FCD34D 60%,
            #ffffff 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: aurora-shift 5s linear infinite;
    text-shadow: none !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.9));
}

.aurora-text-wrapper {
    display: inline-block;
    opacity: 0;
    margin-bottom: 0.5rem;
    transform: translateY(30px);
    animation: fadeUpElite 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
}

@keyframes aurora-shift {
    from {
        background-position: 0% center;
    }

    to {
        background-position: 200% center;
    }
}

/* Buttons Base Elements */
.btn-primary,
.btn-book-header,
.btn-book-mobile,
.btn-banner,
.btn-check,
.btn-search,
.mega-cta,
.home-btn-check,
.product-cards-wide__btn,
.btn-book-now {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #ffffff;
    background: var(--color-primary);
    /* #cc4336 */
    border: none;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 0px 2px 5px rgba(34, 34, 34, 0.5);
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

/* Secondary & Details Buttons (Light style) */
.btn-secondary,
.btn-details,
.home-btn-details {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-dark);
    background: white;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 0px 2px 5px rgba(34, 34, 34, 0.5);
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

/* Hover Effects */
.btn-primary:hover,
.btn-book-header:hover,
.btn-book-mobile:hover,
.btn-banner:hover,
.btn-check:hover,
.btn-search:hover,
.mega-cta:hover,
.home-btn-check:hover,
.product-cards-wide__btn:hover,
.btn-book-now:hover,
.btn-secondary:hover,
.btn-details:hover,
.home-btn-details:hover {
    background-color: var(--color-accent) !important;
    /* #FA8046 */
    color: #ffffff !important;
    transform: translate(2px, 2px);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}

/* Mega CTA specific tweaks */
.mega-cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
}

/* Newsletter Subscribe Button Fix */
.newsletter-form button[type="submit"] {
    width: auto;
    min-width: 200px;
    align-self: center;
    padding: 1rem 3rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    color: white;
    background: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
    padding-bottom: 0;
}

.header.scrolled {
    background: rgba(255, 200, 162, 0.95);
    /* Dark Stone */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    position: relative;
    max-width: 1400px;
    /* Wider for mega menu */
}

.header-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

/* Logo */
.header-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.8));
}

.header-logo:hover img {
    transform: scale(1.05);
    /* Gentle zoom */
}

/* Desktop Nav */
.header-nav {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    height: 100%;
    gap: 0.5rem;
}

.nav-item {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    /* Slightly larger */
    font-weight: 700;
    letter-spacing: 0.05em;
    /* Slightly tighter */
    text-transform: uppercase;
    color: white;
    /* Solid white */
    padding: 0 1rem;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    position: relative;
    transition: opacity 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
    /* Strong double shadow for maximum readability */

    /* Removed Aurora Text Effect for better readability on video */
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-text-fill-color: initial;
}

.nav-link:hover {
    opacity: 1;
    color: #FA8046;
    /* Gold accent on hover */
}

.nav-link .arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-item:hover .nav-link .arrow {
    transform: rotate(180deg);
}

/* Mega Menu & Dropdown */
.mega-menu,
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text-dark);
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), inset 0 2px 4px rgba(255, 255, 255, 0.4);
    padding: 3rem 0;
}

.dropdown-menu {
    width: 250px;
    /* Smaller for simple dropdowns */
    left: auto;
    /* Allow positioning relative to item if needed, but here we keep simple */
    padding: 1rem 0;
}

/* Fix for simple dropdown positioning if needed to align with parent */
.nav-item:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.nav-item:hover .mega-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* Mega Content Layout */
.mega-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.6fr 1fr;
    gap: 2rem;
}

.mega-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-brown);
}

.mega-info p {
    font-size: 0.875rem;
    color: var(--color-text-body);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 300px;
}

.mega-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;

}

.mega-links h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: #cc4336;
    font-weight: 700;
}

.mega-links h4:not(:first-child) {
    margin-top: 1.5rem;
}

.mega-links ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 2rem;
}

.mega-links a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;

    /* Text Shadow Only (No Box) - Increased Intensity */
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9), 0 4px 8px rgba(0, 0, 0, 0.15);
    /* Glossy/Depth text shadow */
}

.mega-links a span {
    font-size: 1.25rem;
    color: #cc4336;
    /* Red to match Book Now button */
    transition: color 0.3s;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Shadow on icons */
}

.mega-links a:hover {
    color: #FA8046;
    /* Gold like logo */
    background: none;
    box-shadow: none;
    transform: none;
    background: none;
    box-shadow: none;
    transform: none;
    /* text-shadow: none; removed to keep static shadow or just change color */
}

.mega-links a:hover span {
    color: #FA8046;
}

/* Main Container for Border */
/* Main Container for Border */
.mega-featured {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    /* Simple Glossy Border & Shadow */
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    /* Slightly stronger shadow for image */
    z-index: 1;
}

.mega-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mega-featured:hover img {
    transform: scale(1.05);
}

.featured-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
}

.featured-text span {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.5rem;
}

.featured-text h5 {
    font-size: 1.125rem;
    font-family: var(--font-display);
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.search-toggle {
    color: white;
    padding: 0.5rem;
}

.contact-info-desktop {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 0.75rem;
    line-height: 1.4;
}

.contact-info-desktop span {
    opacity: 0.8;
}

.phone-number {
    font-weight: 700;
    letter-spacing: 0.05em;
}

.menu-toggle {
    display: none;
    /* Mobile only */
    flex-direction: column;
    gap: 6px;
    width: 30px;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.3s;
}

/* Mobile Responsive */
@media (max-width: 1024px) {

    .header-nav,
    .contact-info-desktop,
    .btn-book-header {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .header-right {
        gap: 0.5rem;
    }
}

/* Mobile Menu & Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: white;
    z-index: 1002;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-header img {
    height: 40px;
}

.mobile-close {
    color: var(--color-text-dark);
}

.mobile-nav {
    flex: 1;
    overflow-y: auto;
    padding: 2rem 0;
}

.mobile-item {
    border-bottom: 1px solid #f5f5f5;
}

.mobile-link-header,
.mobile-item>a {
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-text-dark);
    font-weight: 500;
    width: 100%;
}

.submenu-toggle {
    color: #a8a29e;
}

.mobile-submenu {
    list-style: none;
    background: #fafafa;
    display: none;
    /* JS Toggle */
    padding: 1rem 0;
}

.mobile-submenu.open {
    display: block;
}

.mobile-submenu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 2rem;
    color: var(--color-text-body);
    font-size: 0.95rem;
    transition: all 0.3s;

    /* Text Shadow Only (No Box) - Increased Intensity */
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9), 0 4px 8px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid #f0f0f0;
    /* Restore simple divider if needed, or keep clean */
}

.mobile-submenu a span {
    font-size: 1.25rem;
    color: #cc4336;
    /* Red to match Book Now button */
    transition: color 0.3s;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Shadow on icons */
}

.mobile-submenu a:hover {
    color: #FA8046;
    /* Gold like logo */
    background: none;
    text-shadow: none;
}

.mobile-submenu a:hover span {
    color: #FA8046;
}

.mobile-submenu .mobile-menu-title {
    display: block;
    padding: 1rem 2rem 0.5rem;
    color: #cc4336;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.mobile-footer {
    padding: 2rem;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.mobile-phone {
    font-size: 1.25rem;
    font-family: var(--font-display);
    color: var(--color-brown);
}

/* btn-book-mobile now part of global button group above */

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.search-form {
    display: flex;
    border-bottom: 2px solid var(--color-text-dark);
}

.search-form input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 2rem;
    font-family: var(--font-display);
    padding: 1rem;
    outline: none;
}

.btn-search {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.search-close {
    position: absolute;
    top: -100px;
    right: 0;
    font-size: 2rem;
    padding: 1rem;
}

/* Hero Section */
/* Note: Hero section needs to be full screen but comply with overlap rules.
   The padding-top: 40px default on sections might need override for hero if visual design demands it, 
   but specific instructions say "margin-bottom: 60px; padding-top: 40px" for EVERY section.
   However, Hero usually needs padding for the fixed header too.
   I will ensure padding-top is sufficient to clear header + satisfy rule.
*/
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    padding: 0;
    /* Reset global section padding */
    margin-bottom: 0;
    /* Flush with next section */
    z-index: auto;
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 120px;
        padding-bottom: 4rem;
    }
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Align content to bottom */
    align-items: center;
    padding: 0 1rem 12vh 1rem;
    /* Add bottom padding to lift text up slightly */
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Ken Burns Zoom Effect */
@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.25);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slide.active img.hero-bg {
    animation: zoomEffect 15s ease-in-out infinite alternate;
}

/* Base Section Styling */
section {
    position: relative;
    width: 100%;
    /* SVH-based vertical rhythm as requested for mobile viewport stability */
    padding-block: clamp(3rem, 6svh, 5rem);
    margin-bottom: clamp(1rem, 2svh, 3rem);
    z-index: 1;
}


.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(28, 25, 23, 0.6);
    /* Slightly darker for contrast */
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    /* High z-index to ensure visibility */
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.slider-arrow:hover {
    background: #cc4336;
    border-color: #cc4336;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 2rem;
}

.slider-arrow.next {
    right: 2rem;
}

@media (max-width: 768px) {
    .slider-arrow {
        width: 36px;
        height: 36px;
    }

    .slider-arrow.prev {
        left: 1rem;
    }

    .slider-arrow.next {
        right: 1rem;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Professional Multi-Layered Signature Scrim */
    background:
        radial-gradient(circle at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%),
        linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 10%);
    z-index: 1;
    pointer-events: none;
}

/* Cinematic Ken Burns Effect */
.hero-bg {
    transition: transform 12s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform: scale(1.1);
    /* Default slightly zoomed */
}

.hero-slide.active .hero-bg {
    transform: scale(1);
    /* Zooms out slowly while active */
}

/* Elite Hero Content Layout */
.hero-content-inner {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.hero p,
.hero-desc-highlight {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.15rem);
    /* Reduced size */
    font-weight: 400;
    /* Normal weight */
    line-height: 1.6;
    margin: 0 auto;
    max-width: 600px;
    color: #ffe34b;
    /* Vibrant Lodge Yellow */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    /* Slightly reduced shadow */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpElite 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards;
}

/* Feature Labels - Minimalist Editorial Style */
.hero-features-minimal {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2.8rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpElite 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s forwards;
}

.feature-item {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #ffffff;
    /* pure white features */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 1);
}

.feature-item .feature-icon,
.feature-item .material-symbols-outlined {
    font-size: 20px;
    display: inline-block;
    vertical-align: middle;
    color: #ff6000 !important;
    /* Vibrant Orange override */
    filter: drop-shadow(0 0 8px rgba(250, 128, 70, 0.6));
    -webkit-text-fill-color: #ff6000f0 !important;
    /* Overrides Aurora fill if inherited */
}

/* Lodge "Vibrant Outback" Signature CTA */
.btn-hero-premium {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.8rem;
    padding: 1.1rem 1.8rem;
    background: rgba(17, 17, 17, 0.25);
    /* Salmon Tinted Glass */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1.5px solid #FA8046;
    /* Signature Salmon Border */
    border-radius: 100px;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpElite 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s forwards;
    box-shadow: 0 0 20px rgba(250, 128, 70, 0.6);
    /* Signature Coral Glow */
}

.btn-hero-premium:hover {
    background: #fabb46;
    color: #000;
    border-color: #FA8046;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 40px rgba(250, 128, 70, 0.9);
    /* Stronger glow on hover */
}

.btn-hero-premium .material-symbols-outlined {
    font-size: 16px;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-hero-premium:hover .material-symbols-outlined {
    transform: translateX(8px);
    color: #000;
}

@keyframes fadeUpElite {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Hero Adjustments */
@media (max-width: 768px) {
    .hero-features-minimal {
        flex-direction: column;
        gap: 1.2rem;
        margin-top: 2rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-layout-wrapper {
        padding: 0 1.5rem;
    }
}


/* Old .hero-content removed/purposed for layout if needed, but we use .slide-content now */

.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: white;
    font-weight: 700;
}

.hero p {
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.10em;
    font-style: normal;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: white;
}

/* Refined Aurora Effect - Higher Contrast for perfect readability */
.aurora-text {
    background: linear-gradient(to right,
            #ffffff 10%,
            #ffe34b 30%,
            #ffffff 50%,
            #ff8d4b 70%,
            #ffffff 90%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
   /* -webkit-text-fill-color: transparent;
    color: transparent;*/
    animation: aurora-shift 6s linear infinite;
    /* Slightly faster for more life */
    /* Boosted shadow for readability on light areas */
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.8);
	margin-bottom: 2.5rem;
}

.feature-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.feature-icon {
    font-size: 15px;
    /* Gradient applied via shared rule above */
}

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    z-index: 100;
}

.dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    border: 1px solid white;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background-color: white;
}

/* Intro Section */
.intro {
    background-color: white;
    text-align: center;
    /* Reduced top padding as requested */
    padding-top: clamp(0rem, 3svh, 3rem);
    /* Reduced bottom spacing to match top tightness */
    padding-bottom: clamp(1.5rem, 3svh, 3rem);
    margin-bottom: clamp(1rem, 2svh, 2rem);
}

.intro-secondary {
    padding-top: 0;
    margin-top: -20px;
}

.intro-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.intro-icon {
    height: 12rem;
    width: auto;
    object-fit: contain;
    opacity: 1;
}

.intro h2 {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-dark);
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.intro-text {
    color: var(--color-text-body);
    max-width: 48rem;
    margin: 0 auto;
    font-size: 0.875rem;
    line-height: 1.8;
}

.intro-text+.intro-text {
    margin-top: 1rem;
}

.check-in-info {
    margin-bottom: 2rem;
    font-weight: 700;
    color: #cc4336;
    letter-spacing: 0.05em;
}

/* Welcome Section */
.welcome {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0;
    /* Reset global section padding to allow full-width layout */
    margin-bottom: clamp(2rem, 4svh, 6rem);
}

@media (min-width: 768px) {
    .welcome {
        grid-template-columns: 1fr 1fr;
    }
}

.welcome-image {
    position: relative;
    min-height: 400px;
}

.welcome-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-content {
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem;
}

.welcome-content h2 {
    margin-bottom: 2rem;
    line-height: 1.1;
    color: var(--color-text-dark);
}

.welcome-text {
    color: var(--color-text-body);
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 32rem;
}

.welcome-text p {
    margin-bottom: 1.5rem;
}

/* Grid Links Section */
.grid-links {
    display: grid;
    grid-template-columns: 1fr;
    /* Reset global spacing for full bleed/tight layout */
    padding: 0;
    margin: 0;
    margin-top: clamp(2rem, 4svh, 4rem);
}

@media (min-width: 768px) {
    .grid-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.grid-item:hover img {
    transform: scale(1.05);
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: white;
    transition: background-color 0.3s ease;
}

.grid-item:hover .grid-overlay {
    background-color: rgba(0, 0, 0, 0.5);
}

.grid-overlay h3 {
    margin-bottom: 0.25rem;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.grid-overlay .subtitle {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

/* Cabins Slider Section */
.cabins-slider-section {
    background-color: white;
    /* Fix "problematic" top/bottom gaps - Recalibrated */
    padding-block: clamp(2rem, 4svh, 4rem);
    margin-bottom: 0;
    /* Remove double-gap with next section */
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--color-text-dark);
}

.slider-controls {
    display: flex;
    gap: 0.5rem;
}

.slider-btn {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e5e5e5;
    transition: all 0.3s;
}

.slider-btn:hover {
    background-color: #f5f5f4;
}

.slider-btn.next {
    background: var(--color-text-dark);
    color: white;
}

.slider-btn.next:hover {
    background-color: var(--color-text-body);
}

.cabins-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .cabins-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 1rem;
        /* Space for scrollbar if visible */
        /* Hide scrollbar for cleaner look */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .cabins-grid::-webkit-scrollbar {
        display: none;
    }

    .cabin-card {
        min-width: 85vw;
        /* Show part of next card to encourage scroll */
        scroll-snap-align: center;
    }
}

@media (min-width: 768px) {
    .cabins-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.cabin-card {
    background: white;
    border: 1px solid #f5f5f5;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.cabin-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.cabin-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cabin-card:hover .cabin-image img {
    transform: scale(1.05);
}

.card-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.card-arrow {
    pointer-events: auto;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
}

.card-arrow:hover {
    color: white;
}

.cabin-details {
    padding: 2.5rem;
}

.cabin-details h3 {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cabin-subtitle {
    font-size: 0.6875rem;
    color: #a8a29e;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.cabin-desc {
    color: var(--color-text-body);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cabin-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: #78716c;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cabin-actions {
    display: flex;
    gap: 1rem;
}

.cabin-actions a {
    flex: 1 1 0px;
    width: 0;
    min-width: 0;
    text-align: center;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    white-space: normal;
    background-clip: padding-box;
}

/* Packages Section */
.packages-section {
    background-color: white;
    /* Reduced top padding override */
    padding-top: clamp(1rem, 2svh, 2rem);
}

.packages-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-text-dark);
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.package-item {
    position: relative;
    height: 550px;
    overflow: hidden;
    cursor: pointer;
}

.package-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.package-item:hover img {
    transform: scale(1.05);
}

.package-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}

.package-overlay .icon {
    font-size: 1.875rem;
    margin-bottom: 0.75rem;
}

.package-overlay h3 {
    margin-bottom: 1rem;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
}

.package-footer .price {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
}

/* Experience Banner */
.experience-banner {
    position: relative;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 60px;
    /* Explicit for section style */
}

.banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.banner-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
}

.banner-content h2 {
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 3rem;
}

/* Sustainability Section */
.sustainability-section {
    padding-block: var(--section-spacing);
    margin-bottom: var(--section-gap);
}

.sustainability-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    /* align-items: center; Removed to allow full height stretch */
}

@media (min-width: 768px) {
    .sustainability-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.sust-content {
    padding: 4rem 2rem;
    /* Restore spacing for the Heritage box with extra top/bottom room to fix border gap */
}

.sust-content h2 {
    color: var(--color-text-dark);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.sust-subtitle {
    font-size: 0.6875rem;
    color: #a8a29e;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    margin-bottom: 2rem;
}

.sust-text {
    color: var(--color-text-body);
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.sust-text p {
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--color-text-dark);
    font-weight: 600;
    border-bottom: 1px solid var(--color-brown);
}

.sust-buttons {
    display: flex;
    gap: 1rem;
}

.sust-image-wrapper {
    position: relative;
    height: 100%;
    /* Fill the grid area */
    min-height: 400px;
    /* Fallback */
    background: #f5f5f4;
}

.sust-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-caption {
    position: absolute;
    bottom: 2rem;
    right: -2rem;
    background: white;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-style: italic;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* News Section */
.news-section {
    background-color: var(--color-bg-stone);
    padding: var(--section-spacing) 1.5rem;
    /* Use variable vertical + standard horizontal container-like padding if needed, but container handles width. keeping consistent vertical. */
    margin-bottom: var(--section-gap);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.news-header h2 {
    color: var(--color-text-dark);
}

.news-nav {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid #d6d3d1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.news-nav:hover {
    background: white;
    border-color: var(--color-text-dark);
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.news-card {
    background: white;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-img {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-body {
    padding: 1.5rem;
}

.news-body h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-dark);
    line-height: 1.4;
}

.news-body p {
    font-size: 0.75rem;
    color: var(--color-text-body);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.read-more {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--color-brown);
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.read-more:hover {
    border-color: var(--color-brown);
}

.news-footer {
    display: flex;
    justify-content: center;
}

/* Stories Section */
.stories-section {
    /* Reduced top padding */
    padding-top: clamp(1.5rem, 3svh, 3rem);
    padding-bottom: var(--section-spacing);
    padding-inline: 3rem;
    margin-bottom: var(--section-gap);
    background-color: white;
    text-align: center;
}

.stories-section h2 {
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.stories-intro {
    color: var(--color-text-body);
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 4rem;
}

.stories-intro a {
    color: var(--color-brown);
    text-decoration: underline;
}

.stories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .stories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.testimonial-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 45, 18, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-bg-stone);
}

.testimonial-meta h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-text-dark);
    margin-bottom: 0.15rem;
}

.testimonial-meta span {
    font-size: 0.75rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.testimonial-rating {
    display: flex;
    gap: 2px;
}

.testimonial-rating span {
    font-size: 1rem;
    color: #FA8046;
    /* Gold Color */
}

.testimonial-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--color-text-body);
}

/* Newsletter Section */
.newsletter-section {
    position: relative;
    padding: 8rem 2rem;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.newsletter-content {
    position: relative;
    z-index: 10;
    background: white;
    padding: 4rem;
    max-width: 36rem;
    color: var(--color-text-dark);
    border-radius: 12px;
    overflow: hidden;
}

.newsletter-content h2 {
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: var(--color-text-body);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

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

.input-group {
    position: relative;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.input-group span {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #a8a29e;
}

.input-group input {
    width: 100%;
    padding: 1.25rem 1.5rem 1.25rem 3rem;
    border: none;
    outline: none;
    font-size: 0.875rem;
    color: var(--color-text-dark);
    background: transparent;
    position: relative;
    z-index: 10;
}

/* .newsletter-form button {
    /* Extending btn-primary styles explicitly or via class in HTML */
/* We will use the HTML class method, so removing conflicting overrides here if possible, 
       but for safety we keep basics or reset them to inherit if we add class 
} */

/* Button Roundness Utility */
.rounded-pill {
    border-radius: 9999px !important;
    margin-top: 20px;
}

/* Border Beam Effect */
.border-beam {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    z-index: 5;
    overflow: hidden;
}

.border-beam::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    /* Ensure coverage during rotation */
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    background: conic-gradient(from 0deg, transparent 0%, transparent 90%, var(--color-brown) 100%);
    animation: border-beam-spin 8s linear infinite;

    /* Create the border mask */
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px;
    /* Thickness of the beam */
}

@keyframes border-beam-spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Footer */
.footer {
    background-color: #0c0a09;
    color: white;
    padding: 4rem 2rem;
    margin-bottom: 0px;
    /* footer needs to be bottom */
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col.text-left {
    align-items: center;
    text-align: center;
}

.footer-col.text-center {
    align-items: center;
    text-align: center;
}

.footer-col.text-right {
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-col.text-left {
        align-items: flex-start;
        text-align: left;
    }

    .footer-col.text-right {
        align-items: flex-end;
        text-align: right;
    }
}

.footer-col .icon {
    font-size: 1.5rem;
    opacity: 0.3;
    margin-bottom: 0.75rem;
}

.footer-col p {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.8;
    line-height: 1.6;
    font-weight: 600;
}

.footer-logo {
    height: 5rem;
    margin-bottom: 0.75rem;
    filter: grayscale(1) brightness(200%);
}

.est {
    font-size: 0.5625rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    opacity: 0.4;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.footer-middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .footer-middle {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    opacity: 0.6;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-badges {
    display: flex;
    gap: 2rem;
    opacity: 0.4;
    filter: grayscale(1);
}

.footer-badges img {
    height: 2.5rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.social-links {
    display: flex;
    gap: 2rem;
    opacity: 0.4;
    filter: grayscale(1);
}

.social-links img {
    width: 2rem;
    height: 2rem;
    filter: invert(1);
}

.social-links img.tiktok-img {
    filter: none;
}

.social-links a:hover {
    opacity: 1;
}

.sister-property {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    opacity: 0.6;
}

.sister-property a {
    color: silver;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s, opacity 0.3s;
}

.sister-property a:hover {
    opacity: 1;
    color: #cc4336;
}

.sister-property img {
    height: 2.5rem;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.sister-property img.syncsolz-logo {
    height: 12rem;
    width: auto;
    filter: none;
    opacity: 1;
}

.sister-property img:hover {
    opacity: 1;
}

/* MANDATORY RESPONSIVE RULES */
@media (max-width: 1024px) {
    section {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    section {
        /* Removed horizontal padding to prevent double-spacing with container and allow full-width backgrounds */
        padding-left: 0;
        padding-right: 0;
    }

    .container {
        /* Standard 16px gutter for mobile content */
        padding-left: 16px;
        padding-right: 16px;
    }

    .grid,
    .row {
        display: flex;
        flex-direction: column;
    }

    /* --- STRICT COMPONENT OVERRIDES FOR MOBILE --- */

    /* Fix excessive spacing in News & Stories */
    .news-section,
    .stories-section {
        padding: 4rem 1rem;
    }

    /* Fix Newsletter large padding */
    .newsletter-section {
        padding: 4rem 1rem;
    }

    .newsletter-content {
        padding: 2rem 1.5rem;
        width: 100%;
    }

    /* Fix Welcome content padding eating up screen width */
    .welcome-content {
        padding: 2.5rem 1.5rem;
    }

    .welcome-text {
        font-size: 16px;
        /* Reset for readability */
        margin-bottom: 2rem;
    }

    /* Unlock fixed heights for Experience Banner */
    .experience-banner {
        height: auto;
        aspect-ratio: 4/5;
        /* Taller format for mobile */
        min-height: 400px;
    }

    .banner-content h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    /* Fix Package Item fixed height */
    .package-item {
        height: auto;
        aspect-ratio: 3/4;
        min-height: 400px;
    }

    .package-overlay {
        padding: 1.5rem;
    }

    /* Cabin Details padding adjustment */
    .cabin-details {
        padding: 1.5rem;
    }

    /* Footer adjustments */
    .footer {
        padding: 3rem 1rem;
    }

    .footer-top {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-middle {
        padding: 1.5rem 0;
        gap: 1rem;
    }

    .footer-nav {
        gap: 1rem;
    }

}

@media (max-width: 576px) {
    section {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .slide-content p:last-of-type {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
        padding: 0 0.5rem;
    }

    .feature-item {
        font-size: 0.85rem;
        justify-content: center;
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .feature-icon {
        font-size: 12px;
        /* Smaller for mobile */
    }
}

/* Ambient Glow Effect & Separation */
/* Ambient Glow Effect & Separation */
.ambient-glow {
    position: relative;
    z-index: 1;
    /* padding removed to fix overlap */

    /* Gradient Borders for Separation */
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(to right, transparent 0%, rgba(250, 128, 70, 0.4) 30%, rgba(250, 128, 70, 0.4) 70%, transparent 100%) 1;
}

.ambient-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    /* Slightly wider */
    height: 70%;
    /* Richer, multi-stop gradient for a more "attractive" look */
    background: radial-gradient(circle,
            rgba(250, 128, 70, 0.25) 0%,
            /* Bright Gold Center */
            rgba(204, 67, 54, 0.15) 40%,
            /* Earthy Red Mid */
            rgba(100, 100, 100, 0.05) 60%,
            /* Subtle neutral fade */
            transparent 80%);
    z-index: -1;
    filter: blur(40px);
    /* Slightly sharper blur to define shape better */
    pointer-events: none;
    border-radius: 50%;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;

    background: #cc4336;
    color: #ffffff;
    border: none;
    box-shadow: 0px 2px 5px rgba(34, 34, 34, 0.5);

    cursor: pointer;
    z-index: 999;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s ease, visibility 0.4s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: #FA8046;
    color: #ffffff;
    transform: translate(2px, 2px);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}

.back-to-top .material-symbols-outlined {
    font-size: 1.5rem;
    font-weight: 500;
}

/* Mobile Adjustments for Back to Top */
@media (max-width: 768px) {
    .back-to-top {
        bottom: calc(1.5rem + env(safe-area-inset-bottom));
        right: 1.5rem;
        width: 3rem;
        height: 3rem;
    }

    .back-to-top:active {
        transform: scale(0.95);
    }
}

/* Video Modal Styles */
.video-modal-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

.video-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal-overlay.active .video-modal-content {
    transform: scale(1);
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    outline: none;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #cc4336;
}

/* Watch Video Button */
.btn-watch-video {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-watch-video:hover {
    background: white;
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-watch-video .material-symbols-outlined {
    font-size: 1.5rem;
    color: #cc4336;
    /* Red play icon */
    transition: transform 0.3s ease;
}

.btn-watch-video:hover .material-symbols-outlined {
    transform: scale(1.1);
}

@media (min-width: 768px) {
    .close-modal {
        top: 10px;
        right: 15px;
        z-index: 10;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }
}

/* Hero Layout & Video Card */
.hero-layout-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    margin-top: 5rem;
    /* Clear initial header space */
    gap: 4rem;
}

.text-left-desktop {
    text-align: left;
    max-width: 50%;
    /* Override absolute centering */
    margin: 0;
    transform: none !important;
    /* Managed by flex */
    opacity: 1 !important;
    /* Managed by parent fade */
    animation: none;
    /* Reset parent animation to avoid conflict or re-apply carefully */
}

/* Align button/features left on desktop */
.text-left-desktop p:last-of-type {
    justify-content: flex-start;
    padding-left: 0;
}

/* Hero Layout & Video Card */
.hero-layout-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    margin-top: 0;
    gap: 0;
    /* No gap needed for overlap */
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
    justify-content: center;
    position: relative;
    /* Context for absolute text */
}

.text-left-desktop {
    position: absolute;
    top: auto;
    bottom: 5%;
    /* Puts text towards bottom */
    left: 50%;
    transform: translateX(-50%) !important;
    width: 100%;
    max-width: 800px;
    z-index: 50;
    /* On top of video */
    text-align: center;
    margin: 0;
    padding: 0 1rem;
    pointer-events: none;
    /* Let clicks pass through to video if needed, or remove if text has links */
}

.text-left-desktop * {
    pointer-events: auto;
    /* Re-enable clicks on content */
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    /* Legibility */
}

.hero-video-card {
    position: absolute;
    top: 60%;
    /* Move up as requested */
    left: 50%;
    transform: translate(-50%, -50%);
    /* Center it based on top/left */
    width: 480px;
    /* Increased size */
    aspect-ratio: 1;
    background: #000;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.932);
    border-radius: 50%;
    padding: 0;
    box-shadow: 0 0 60px rgba(255, 255, 255, 0);
    z-index: 10;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

/* Pulse Rings */
.pulse-ring {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    /* Match card */
    background: conic-gradient(from 0deg,
            rgba(250, 128, 70, 0.35),
            /* Ultra Light Gold */
            rgba(252, 165, 165, 0.35),
            /* Ultra Light Red */
            rgba(147, 197, 253, 0.35),
            /* Ultra Light Blue */
            rgba(250, 128, 70, 0.35)
            /* Ultra Light Gold */
        );
    z-index: -2;
    pointer-events: none;

    animation: pulse-wave 12s linear infinite;
    /* Slow and smooth */
}

/* Feature Items Horizontal Alignment */
/* Feature Items Horizontal Alignment */
.text-left-desktop p:last-child {
    display: flex;
    justify-content: center;
    gap: 1rem;
    /* Tighten gap */
    flex-wrap: wrap;
    margin-top: 1rem;
}

.feature-item {
    /*font-size: 0.85rem;
    Reduced font size (approx 1-2pts) */
    white-space: nowrap;
    /* Keep text together */
    display: flex;
    align-items: center;
    gap: 0.25rem;
}



.delay-1 {
    animation-delay: 0s;
}

.delay-2 {
    animation-delay: 3s;
}

.delay-3 {
    animation-delay: 6s;
}

.delay-4 {
    animation-delay: 9s;
}

@keyframes pulse-wave {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(6);
        /* Middle of screen extent */
        opacity: 0;
    }
}

/* Gradient Outer Glow (Static Base) */
.hero-video-card::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    /* Match + padding */
    background: linear-gradient(135deg, #FA8046 0%, #FCA5A5 50%, #93C5FD 100%);
    z-index: -1;
    filter: blur(8px);
    opacity: 0.8;
}

.hero-video-card:hover {
    transform: translate(-50%, -50%) translateY(-5px);
}

.hero-video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    /* Circular Video */
    display: block;
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.6);
    /* Pop-up white shadow */
    transform: translateZ(0);
    /* Force hardware accel for smooth render */
    z-index: 10;
    /* Ensure it sits on top effectively */
    margin: 0;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.hero-video-card video:hover {
    opacity: 1;
    /* Restore opacity on hover */
}

.video-title {
    position: absolute;
    top: -50px;
    width: 300px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-display);
    color: var(--color-primary);
    /* #cc4336 */
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

.video-tagline {
    position: absolute;
    bottom: -60px;
    width: 300px;
    font-size: 0.9rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1.4;
    color: var(--color-text-body);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

/* ========================================= */
/* === Home Page: Cabins Slider Section === */
/* ========================================= */

/* Cabins Slider Section */
.cabins-slider-section {
    background-color: white;
    /* Fix "problematic" top/bottom gaps - Recalibrated */
    padding-block: clamp(2rem, 4svh, 4rem);
    margin-bottom: 0;
    /* Remove double-gap with next section */
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--color-text-dark);
}

.slider-controls {
    display: flex;
    gap: 0.5rem;
}

.slider-btn {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0px solid #e5e5e5;
    transition: all 0.3s;
    border-radius: 50%;
    box-shadow: 0px 2px 4px rgba(34, 34, 34, 0.5);
}

.slider-btn:hover {
    background-color: #f5f5f4;
}

.slider-btn.next {
    background: #cc4336;
    color: white;
}

.slider-btn.next:hover {
    background-color: #FA8046;
}

.slider-btn.prev:hover {
    background-color: #FA8046;
    color: white;
}

/* Grid */
.home-cabins-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding-bottom: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.home-cabins-grid::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .home-cabin-card {
        min-width: calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
        scroll-snap-align: start;
    }
}

.home-cabin-card {
    background: white;
    border: 1px solid #f5f5f5;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.home-cabin-img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.home-cabin-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.home-cabin-card:hover .home-cabin-img img {
    transform: scale(1.05);
}

.home-cabin-img .card-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.home-cabin-img .card-arrow {
    pointer-events: auto;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
}

.home-cabin-img .card-arrow:hover {
    color: white;
}

.home-cabin-info {
    padding: 1.5rem;
}

.home-cabin-info h3 {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.home-cabin-subtitle {
    font-size: 0.6875rem;
    color: #a8a29e;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.home-cabin-desc {
    color: var(--color-text-body);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.home-cabin-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: var(--color-text-dark);
}

.home-cabin-features .feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.home-cabin-actions {
    display: flex;
    gap: 1rem;
}

.home-cabin-actions a {
    flex: 1 1 0px;
    width: 0;
    min-width: 0;
    text-align: center;
    white-space: normal;
}

.home-btn-details {
    background: transparent;
    color: var(--color-text-dark);
    border: 1px solid #e5e5e5;
}

.home-btn-details:hover {
    background: #FA8046;
    border-color: #FA8046;
    color: #ffffff;
}

/* Mobile: Horizontal Slider */
@media (max-width: 767px) {
    .home-cabin-card {
        min-width: 85vw;
        scroll-snap-align: center;
    }
}

/* ========================================= */
/* === Internal styles for Accommodation page === */
/* ========================================= */
.page-hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 90px;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Specific Wide Card Layout */
.product-cards-wide {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    margin: 0 auto;
}

.product-cards-wide__card {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
    width: 100%;
    min-height: 400px;
}

.product-cards-wide__card.reverse {
    flex-direction: row-reverse;
}

.product-cards-wide__card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.product-cards-wide__image {
    width: 45%;
    position: relative;
    margin: 0;
    overflow: hidden;
    display: flex;
}

.product-cards-wide__image-wrap {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.product-cards-wide__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-cards-wide__card:hover .product-cards-wide__image img {
    transform: scale(1.05);
}

.product-cards-wide__tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    z-index: 2;
}

.product-cards-wide__content {
    width: 55%;
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-cards-wide__category {
    color: var(--color-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.gallery-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-cards-wide__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-cards-wide__desc {
    color: var(--color-text-body);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-cards-wide__linked-list {
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: var(--color-text-body);
}

.product-cards-wide__linked-list strong {
    color: var(--color-text-dark);
    display: block;
    margin-bottom: 0.75rem;
}

.product-cards-wide__linked-list-items {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.product-cards-wide__linked-list-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--color-text-dark);
}

.product-cards-wide__linked-list-item span {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.product-cards-wide__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.product-cards-wide__actions {
    display: flex;
    gap: 1rem;
    flex: 1;
    min-width: 0;
    margin-top: auto;
    margin-right: 2rem;
}

/* Scoped fixes for Dine and Things To Do - Preventing overly wide solitary buttons */
.page-dine .product-cards-wide__actions,
.page-things-to-do .product-cards-wide__actions {
    flex: 0 1 auto !important;
}

.page-dine .product-cards-wide__actions .btn-primary,
.page-dine .product-cards-wide__actions .btn-secondary,
.page-things-to-do .product-cards-wide__actions .btn-primary,
.page-things-to-do .product-cards-wide__actions .btn-secondary {
    flex: 0 1 auto !important;
    width: fit-content !important;
    min-width: 0 !important;
    padding: 1rem 2.5rem !important;
}

/* Shared Structural Styles for Buttons in Wide Cards - Ensuring Equality while Inheriting Index Visuals */
.product-cards-wide__actions .btn-primary,
.product-cards-wide__actions .btn-secondary,
.product-cards-wide__actions .home-btn-check,
.product-cards-wide__actions .home-btn-details,
.product-cards-wide__actions .btn-details {
  flex: 0 1 auto !important;
  width: fit-content !important;
  min-width: 0 !important;
  padding: 1rem 2.5rem !important;
}

.product-cards-wide__actions .home-btn-check {
    /* Inherit btn-primary logic but scoped */
    background: var(--color-primary);
    /* #cc4336 */
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    box-shadow: 0px 2px 5px rgba(34, 34, 34, 0.5);
}

.product-cards-wide__actions .home-btn-details {
    /* Inherit btn-secondary logic but scoped */
    background: white;
    color: var(--color-text-dark);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    box-shadow: 0px 2px 5px rgba(34, 34, 34, 0.5);
}

.product-cards-wide__actions .btn-primary:hover,
.product-cards-wide__actions .home-btn-check:hover,
.product-cards-wide__actions .btn-secondary:hover,
.product-cards-wide__actions .home-btn-details:hover {
    background-color: var(--color-accent) !important;
    /* #FA8046 */
    color: #ffffff !important;
    transform: translate(2px, 2px);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}



/* Secondary Button (View Details) - Inherits Rainbow from styles.css but needs alignment */
.btn-details {
    color: var(--color-text-dark) !important;
}

.btn-details:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
    background-color: #FA8046 !important;
    color: #ffffff !important;
}

/* Mobile Optimization */
@media (max-width: 600px) {
    .product-cards-wide__actions {
        flex-direction: row;
        gap: 0.75rem;
        margin-right: 0;
        width: 100%;
    }

    .product-cards-wide__btn,
    .btn-details,
    .product-cards-wide__actions .btn-primary,
    .product-cards-wide__actions .btn-secondary {
        width: auto !important;
        flex: 1 1 0px !important;
        padding: 0.75rem 0.25rem !important;
        font-size: 0.75rem !important;
    }

    .product-cards-wide__footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .product-cards-wide__details {
        text-align: center;
        width: 100%;
    }

    .product-cards-wide__details-dates,
    .product-cards-wide__details span {
        display: inline-block;
        margin: 0 0.5rem;
    }
}

.product-cards-wide__details {
    text-align: right;
    font-size: 0.9rem;
    color: var(--color-text-body);
}

.product-cards-wide__details-dates {
    display: block;
    font-weight: 600;
    color: var(--color-text-dark);
}

.product-cards-wide__details span {
    display: block;
}

/* Responsive Breakpoint */
@media (max-width: 900px) {

    .product-cards-wide__card,
    .product-cards-wide__card.reverse {
        flex-direction: column;
    }

    .product-cards-wide__image {
        width: 100%;
        height: 250px;
    }

    .product-cards-wide__content {
        width: 100%;
        padding: 2rem;
    }

    .product-cards-wide__title {
        font-size: 1.75rem;
    }
}

/* Horizontal Card Design */
.cabins-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.cabin-card {
    display: flex;
    flex-direction: row;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 320px;
}

.cabin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(75, 35, 19, 0.15);
}

.cabin-image {
    width: 45%;
    position: relative;
    overflow: hidden;
}

.cabin-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cabin-card:hover .cabin-image img {
    transform: scale(1.05);
}

.cabin-details {
    width: 55%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cabin-subtitle {
    color: #FA8046;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.cabin-desc {
    margin-bottom: 1.5rem;
    color: var(--color-text-body);
    line-height: 1.6;
}

.amenity-list {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-dark);
    font-weight: 500;
}

.amenity-item span {
    color: #FA8046;
    font-size: 1.25rem;
}

/* Gallery Section Redesign */
.gallery-tabs-section {
    margin-top: 4rem;
    position: relative;
}

.gallery-display {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 2rem;
    background: #f0f0f0;
}

.gallery-display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease-in-out;
    display: block;
}

.gallery-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0;
}

.gallery-tab-btn {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-body);
    padding: 1rem 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 0;
    position: relative;
    border-bottom: 3px solid transparent;
}

.gallery-tab-btn:hover {
    color: #FA8046;
}

.gallery-tab-btn.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.gallery-content-display {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeIn 0.5s ease;
}

.gallery-content-display h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-family: var(--font-display);
}

.gallery-content-display p {
    color: var(--color-text-body);
    line-height: 1.6;
}

.gallery-section-wrapper {
    background: linear-gradient(135deg, var(--color-primary) 0%, #FCA5A5 50%, #93C5FD 100%);
    padding: 5rem 2rem;
    border-radius: 12px;
    margin-top: 5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    text-align: center;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    color: var(--color-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-arrow:hover {
    background: white;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.gallery-arrow-prev {
    left: 20px;
}

.gallery-arrow-next {
    right: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .cabin-card {
        flex-direction: column;
    }

    .cabin-image {
        width: 100%;
        height: 250px;
    }

    .cabin-details {
        width: 100%;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .gallery-tabs-nav {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .gallery-tab-btn {
        padding: 0.5rem 0.5rem;
        font-size: 0.75rem;
        flex: 1 1 auto;
        white-space: nowrap;
    }
}

/* Mobile Responsive Layout */
@media (max-width: 1024px) {
    .hero-layout-wrapper {
        margin-top: 0;
        padding-top: 0;
        gap: 0;
        padding-bottom: 0;
    }

    .hero-video-card {
        width: 300px;
    }

    .text-left-desktop {
        max-width: 90%;
    }

    .text-left-desktop p:last-of-type {
        justify-content: center;
    }

    .hero-video-card {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
        background: rgba(255, 255, 255, 0.85);
    }
}

/* ========================================= */
/* === King Deluxe Cabin Page Styles      === */
/* ========================================= */

/* Hero Section */
.cabin-hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.cabin-hero__slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.cabin-hero__track {
    display: flex;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.cabin-hero__slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.cabin-hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sunset-fix {
    object-position: center 80%;
}

.cabin-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.cabin-hero__content {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.cabin-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
}

.cabin-hero__subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Hero Slider Controls */
.cabin-hero__controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cabin-hero__arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cabin-hero__arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.cabin-hero__dots {
    display: flex;
    gap: 10px;
}

.cabin-hero__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cabin-hero__dot.active {
    background: white;
    transform: scale(1.2);
}

/* Main Content Section */
.cabin-main {
    padding: 0;
    background: #fff;
}

.cabin-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
}

/* Description Section */
.cabin-description {
    position: sticky;
    top: 120px;
}

.cabin-description__eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #cc4336;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-primary);
    /* #cc4336 */
}

.cabin-description__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.cabin-description__text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

.cabin-description__highlight {
    background: linear-gradient(135deg, #fffcfb 0%, #fff5f2 100%);
    padding: 2.5rem 2.5rem 2.5rem 3.5rem;
    border-radius: 24px;
    margin: 3.5rem 0;
    position: relative;
    box-shadow: 0 15px 35px rgba(255, 77, 77, 0.06);
    overflow: hidden;
    border: 1px solid rgba(255, 77, 77, 0.05);
}

.cabin-description__highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, #ff4d4d, #f97316);
}

.highlight-quote-icon {
    position: absolute;
    top: -10px;
    right: 15px;
    font-size: 5rem !important;
    color: rgba(255, 77, 77, 0.08);
    user-select: none;
    pointer-events: none;
    transform: rotate(10deg);
}

.cabin-description__highlight p {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 600;
    color: #2d2d2d;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Amenities Section */
.cabin-amenities {
    background: linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)),
        url('../../images/mungo-national-park-guided-tours-feature-1.jpg');
    background-size: cover;
    background-position: center;
    padding: 3.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.cabin-amenities__title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    letter-spacing: -0.01em;
}

.cabin-amenities__title span {
    background: linear-gradient(135deg, #ff4d4d 0%, #f97316 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.cabin-amenities__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.amenity-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(255, 252, 251, 0.95);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.amenity-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 20px 40px rgba(255, 77, 77, 0.15);
    border-color: rgba(255, 77, 77, 0.3);
    background: #fff;
}

.amenity-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ff4d4d 0%, #ff944d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 77, 77, 0.4);
    transition: all 0.4s ease;
    position: relative;
}

.amenity-card__icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff4d4d, #ff944d);
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.amenity-card:hover .amenity-card__icon {
    transform: rotate(12deg) scale(1.1);
}

.amenity-card:hover .amenity-card__icon::after {
    opacity: 0.6;
}

.amenity-card__icon span {
    color: white;
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.amenity-card__text {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

/* Booking CTA */
.btn-book-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    margin-top: 2rem;
    width: 100%;
    position: relative;
    background: transparent;
    color: var(--color-brown);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    isolation: isolate;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-book-now {
    /* Standardized to match btn-primary precisely */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #ffffff;
    background: var(--color-primary);
    /* #cc4336 */
    border: none;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 0px 2px 5px rgba(34, 34, 34, 0.5);
    transition: all 0.3s ease;
}

.btn-book-now:hover {
    background-color: var(--color-accent) !important;
    /* #FA8046 */
    color: #ffffff !important;
    transform: translate(2px, 2px);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}

/* Gallery Section */
.cabin-gallery {
    padding: 6rem 0;
    background: #f5f5f5;
}

.cabin-gallery__header {
    text-align: center;
    margin-bottom: 4rem;
}

.cabin-gallery__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.cabin-gallery__subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #666;
}

.cabin-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item__icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox__close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox__nav--prev {
    left: 30px;
}

.lightbox__nav--next {
    right: 30px;
}

.lightbox__counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

/* King Deluxe Cabin Page â€” Responsive */
@media (max-width: 1024px) {
    .cabin-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cabin-description {
        position: static;
    }

    .cabin-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .cabin-hero {
        height: 70vh;
        min-height: 500px;
    }

    .cabin-main {
        padding: 4rem 0;
    }

    .cabin-amenities {
        padding: 2rem;
    }

    .cabin-amenities__grid {
        grid-template-columns: 1fr;
    }

    .cabin-gallery__grid {
        grid-template-columns: 1fr;
    }

    .gallery-item:first-child {
        grid-column: span 1;
    }

    .lightbox__nav {
        width: 45px;
        height: 45px;
    }

    .lightbox__nav--prev {
        left: 15px;
    }

    .lightbox__nav--next {
        right: 15px;
    }
}

/* Micro-Subtle Zoom Effect for Cabin Pages */
@keyframes zoomMicro {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.01);
    }
}

/* High specificity to ensure override */
#heroSlider .cabin-hero__slide.active img {
    animation: zoomMicro 30s linear infinite alternate;
    will-change: transform;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   VIDEO GALLERY SECTION STYLES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.video-gallery-section {
    padding: 40px 0 80px 0;
    background-color: #f9f9f9;
}

.video-gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.video-gallery-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.video-gallery-header p {
    font-family: 'Source Sans 3', sans-serif;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.video-info p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.experience-gallery {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #FCA5A5 50%, #93C5FD 100%);
}

.section-title {
    margin-bottom: 50px;
    padding-top: 50px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.section-title p {
    font-family: 'Source Sans 3', sans-serif;
    color: #444;
    max-width: 600px;
    margin: 0 auto;
}

/* â”€â”€â”€ Swiper Gallery Styles â”€â”€â”€ */
.gallery-swiper-container {
    position: relative;
    padding: 0;
    max-width: 100%;
    overflow: visible;
}

.gallery-swiper {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 50px;
    overflow: visible !important;
}

.gallery-swiper .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 450px;
    height: 300px;
    border-radius: 20px;
}

.gallery-swiper .slide-inner {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.gallery-swiper .swiper-slide-active {
    z-index: 10;
}

.gallery-swiper .swiper-slide-active .slide-inner {
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 10px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-10px);
}

.gallery-swiper .swiper-slide-active::after {
    content: '';
    position: absolute;
    left: 5%;
    bottom: -25px;
    width: 90%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(8px);
    z-index: -1;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.gallery-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
    background-image: none !important;
    background: none !important;
}

.gallery-swiper .swiper-pagination {
    display: none;
}

.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    /* #cc4336 */
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.gallery-swiper .swiper-button-next:hover,
.gallery-swiper .swiper-button-prev:hover {
    background: var(--color-accent) !important;
    /* #FA8046 */
    transform: scale(1.1);
}

.gallery-swiper .swiper-button-next::after,
.gallery-swiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

/* Lightbox trigger overlay on hover */
.gallery-swiper .slide-inner {
    position: relative;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
}

.gallery-swiper .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.gallery-swiper .slide-inner:hover .slide-overlay {
    opacity: 1;
}

.gallery-swiper .slide-overlay span {
    color: #fff;
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LIGHTBOX STYLES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    animation: zoomIn 0.3s;
}

#lightbox-caption {
    margin: 15px auto;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.1rem;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PACKAGE SECTION STYLES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cabins-slider-section {
    background-color: #ffffff;
    padding-top: 10px;
    padding-bottom: 40px;
}

.product-cards-wide__card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-cards-wide__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE OVERRIDES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .video-gallery-header h2 {
        font-size: 2rem;
    }

    .gallery-slider-wrapper {
        padding: 0;
    }

    .slider-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-swiper .swiper-slide {
        width: 80vw;
        height: 250px;
    }
}


/* ==========================================================================
   MARQUEE GALLERY STYLES
   ========================================================================== */
.marquee-gallery {
    padding: clamp(3rem, 6vw, 6rem) 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #ffe34b 0%, #FCA5A5 50%, #93C5FD 100%);
}

.marquee-container {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 0;
}

.marquee-content {
    display: flex;
    width: max-content;
    gap: 1.5rem;
}

.marquee-track {
    display: flex;
    gap: 1.5rem;
    /* Animation removed; now handled by JS for swipe support */
}

.marquee-card {
    width: 480px;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    cursor: pointer;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.marquee-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 45%,
            rgba(255, 255, 255, 0.1) 48%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0.1) 52%,
            transparent 55%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
}

.marquee-card:hover {
    background: #fff;
    border-color: rgba(255, 255, 255, 1);
    transform: translateY(-12px) scale(1.03);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.08),
        inset 0 0 0 2px rgba(255, 255, 255, 0.8);
}

.marquee-card:hover::after {
    opacity: 1;
    top: -40%;
    left: -40%;
}

.marquee-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
}

.marquee-card .card-header {
    display: flex;
    flex-direction: column;
}

.marquee-card figcaption {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1a1a1a;
}

.marquee-card .username {
    font-size: 0.8125rem;
    color: rgba(204, 67, 54, 0.6);
    font-weight: 500;
}

.marquee-card blockquote {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #444;
    margin: 0;
    font-style: italic;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 0.75rem));
    }
}

@media (max-width: 768px) {
    .marquee-card {
        width: 340px;
    }

    .marquee-card img {
        height: 220px;
    }
}

/* ===== FAQ Component ===== */
.faq-section {
    background-color: #f7f6f2;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.faq-category-title {
    font-size: 1.5rem;
    font-family: var(--font-heading, "Playfair Display", serif);
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 0.5rem;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    /* Hide default triangle */
    background: #fff;
    color: var(--color-text-dark, #1a1a1a);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--color-primary);
}

.faq-item .accordion-icon {
    transition: transform 0.3s ease;
    color: var(--color-primary);
}

.faq-item[open] .accordion-icon {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 1.5rem 1.25rem;
    color: var(--color-text-light, #666);
    line-height: 1.6;
}

.faq-content p {
    margin-bottom: 1rem;
}

.faq-content p:last-child {
    margin-bottom: 0;
}

.faq-content auto {
    margin-bottom: 1rem;
}

.faq-content a {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 500;
}

.faq-content a:hover {
    color: var(--color-brown, #4B2313);
}

.faq-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-content li {
    margin-bottom: 0.5rem;
}

/* Detail Pages Enhancements Fixes */
.image-text-block {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .image-text-block {
        flex-direction: row;
        gap: 4rem;
    }

    .image-text-block>* {
        flex: 1;
    }
}

.image-text-block .image-content img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 500px;
}

.dining-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .dining-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dining-card {
    background: #fff;
    border: 1px solid #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.dining-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--color-text-dark);
}

.cabin-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 992px) {
    .cabin-grid {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    .cabin-description {
        flex: 1;
        padding-right: 4rem;
    }

    .cabin-grid>div:last-child {
        width: 100%;
        max-width: 450px;
    }
}

.cabin-amenities {
    background: #fafaf9;
    padding: 2.5rem;
    border-radius: 12px;
}

.cabin-amenities__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--color-text-dark);
}

.cabin-amenities__title .material-symbols-outlined {
    color: var(--color-primary);
}

.cabin-amenities__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.amenity-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.amenity-card__icon {
    width: 3rem;
    height: 3rem;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.amenity-card__icon .material-symbols-outlined {
    font-size: 1.25rem;
}

.amenity-card__text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

/* Things To Do Specific Padding Fixes */
.intro+.cabins-slider-section.accommodation-listing {
    padding-top: 0;
}

.cabins-slider-section.accommodation-listing .container {
    padding-top: 2rem;
}

/* Wildlife Gallery Cards */
.gallery-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #d5d5d5;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card.hover-effect:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    border-color: #FA8046;
}

/* Footer Links Row */
.footer-links-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem 0;
}

@media (min-width: 768px) {
    .footer-links-row {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

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

.footer-col-title {
    font-size: 0.6875rem;
    color: var(--color-primary);
    /* #cc4336 */
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.footer-nav-column a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: inherit;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.footer-nav-column a:hover {
    opacity: 1;
    color: #FA8046;
}

.footer-nav-column .material-symbols-outlined {
    font-size: 1rem;
    opacity: 0.8;
}

/* Footer Split Columns */
.footer-split-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .footer-split-columns {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.footer-sub-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

 .faq-item-form {
            margin-bottom: 2rem;
            padding: 2rem;
            background: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
        }

        .faq-item-form:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            border-color: #cc4336;
        }

        .faq-item-form h3 {
            color: #1a1a1a;
            margin-top: 0 !important;
        }

        .faq-item-form p:last-child {
            margin-bottom: 0;
        }

       .facility-item {
            margin-bottom: 2rem;
            padding: 2rem;
            background: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
        }

        .facility-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            border-color: #cc4336;
        }

        .facility-item h3 {
            color: #1a1a1a;
            margin-top: 0 !important;
        }

        .facility-item p:last-child {
            margin-bottom: 0;
        }

        /* Adjust for section backgrounds */
        section[style*="#f7ede2"] .faq-item-form {
            background: #ffffff;
        }

        section[style*="#ffffff"] .faq-item-form {
            background: #fcfcfc;
        }

       .text-content-form h2 {
            margin-bottom: 2.5rem;
        }