/* ============================================
   SANDINO HOSTEL BERLIN - CUSTOM STYLESHEET
   Inspired by the mural colors and Berlin backyard energy
   ============================================ */

/* CSS Variables - Mural-Inspired Color Palette */
:root {
    /* Primary Colors from Rooster Logo & Mural */
    --orange: #FF6501;
    --blue: #4A90E2;
    --green: #6CB664;
    --cream: #F5E6D3;
    --black: #1A1A1A;
    --white: #FFFFFF;

    /* Legacy Sandino */
    --sandino-orange:      #FF6501;
    --sandino-dark-brown:  #2B1308;
    --sandino-cream-text:  #EBE1C8;
    --sandino-button-orange: #FD9840;
    --sandino-peach:       #FFE7C9;


    --psy-orange:        #FF7A00;
    --psy-orange-deep:   #B34700;
    --psy-pink:          #FF5FA2;
    --psy-teal:          #37C5B7;
    --psy-yellow:        #FFD54F;
    --psy-cream:         #FFF6E7;
    --psy-poster-brown:  #2B1308;
    
    /* Flower Accent Colors */
    --pink: #E75480;
    --yellow: #FFD54F;
    --purple: #9B59B6;
    
    /* Neutral Tones */
    --gray-light: #F5F5F5;
    --gray-medium: #CCCCCC;
    --gray-dark: #666666;
    
    /* Shadows */
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 24px rgba(0, 0, 0, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Fonts */
h2, h3 {
    font-family: "cooper-black-std", serif;
    font-weight: 400;
    font-style: normal;
    color: var(--creams);
}

h1 {
    /* font-family: "balboa", sans-serif; */
    font-family: "balboa", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: var(--cream);
    font-size: 6rem;
    text-align: center;
}

h3 {
    font-family: "balboa", sans-serif;
    color: var(--cream);
    text-align: center;
    /* font-weight: 800; */
    font-size: 2rem; 
    max-width: 700px;
    margin: 0 auto;
}

.sandino-plaque-section h2 {
    font-family: "cooper-black-std", serif;
    font-weight: 600;
    font-size: 2rem;
    font-style: normal;
    color: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#plaque-container img {
    transition: transform 0.25s ease, filter 0.25s ease;
}

#plaque-container img:hover {
    transform: scale(1.05);
    filter: brightness(1.05);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}



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

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

ul {
    list-style: none;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.hero,
.hero-content,
.hero-media-container,
.hero-panorama-wrapper {
  z-index: 1; /* keep them below the top info bar */
}

/* ============================================
   NAVIGATION
   ============================================ */

   .navbar {
    background-color: rgba(255, 101, 1, 0.85);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-medium);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

/* Info Navbar Visible at all times in the Booking Page */
/* .info-page .navbar {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    position: sticky;
    top: 0;
    z-index: 1002;
} */
 
/* Secondary Navbar Visible at all times in the Booking Page */
.booking-page .navbar {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    position: sticky;
    top: 0;
    z-index: 1002;
}

/* Space Under Sirvoy */
.booking-page .booking-engine {
    position: relative;
    z-index: 5;
    max-width: 1100px;
    margin: 40px auto 0px;
    padding: 0 20px;
    transform: translateY(-60px);
}

.booking-page .footer {
    margin-top: 0 !important;
    padding-top: 580px !important;
    background-position: top center !important;
    overflow: visible !important;
}

/* Hide Booking Policies Section */
.booking-policies {
    display: none;
}

/* Secondary Navbar Visible at all times in the Guest Access Page */
.guest-page .navbar {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    position: sticky;
    top: 0;
    z-index: 1002;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 18px;
    color: var(--black);
}

.nav-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--black);
    transition: var(--transition-fast);
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--orange);
    transition: var(--transition-fast);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--orange);
}

.nav-book-btn {
    background-color: var(--orange);
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 6px;
    font-weight: 600;
}

.nav-book-btn::after {
    display: none;
}

.nav-book-btn:hover {
    background-color: #E55A2A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--black);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ============================================
   STICKY BOOK NOW BUTTON
   ============================================ */

.sticky-book-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--orange);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-heavy);
    z-index: 999;
    transition: var(--transition-medium);
}

.sticky-book-btn svg {
    width: 20px;
    height: 20px;
}

.sticky-book-btn:hover {
    background-color: #E55A2A;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 107, 53, 0.4);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ============================================
   FULL-HEIGHT HERO FOR HOME PAGE
   ============================================ */

   /* .hero-full {
    height: 100vh;
    max-height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
} */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
}

/* Dark overlay to dim bright background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);  /* semi-transparent black overlay */
    z-index: 1;
    pointer-events: none;
    display: none;
}



/* container around panorama/slideshow */
.hero-media-container {
    position: relative;
    max-width: 1100px;
    margin: 20px auto 0;
}

/* tabs outside the frame, center-bottom */
.hero-media-tabs {
    position: absolute;
    top: 570px !important;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;  /* increased from 5 to sit above frame (frame is z-index: 2) */
}

/* reuse your existing .media-tab styles, just small tweak */
.hero-media-tabs .media-tab {
    padding: 10px 26px;
}

/* Hide Slideshow by default */
#slideshowBlock {
    display: none;
}



/* Men´s Bathroom Frame for Panorama*/
.bathroom-frame {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(90vw, 1200px);
    pointer-events: none;
    z-index: 5;   /* make sure itâ€™s above iframe */
}

.bathroom-frame img {
    width: 100%;
    height: auto;
}

/* wrapper that holds the frame AND the panorama */
.hero-panorama-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

/* your bathroom frame image */
.panorama-frame {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    pointer-events: none;  /* allow clicks to pass through to iframe */
}

/* inner crop area where the panorama sits */
.hero-panorama-inner {
    position: absolute;
    top: 18%;               /* reduced from 21% to move panorama UP inside frame */
    left: 13.8%;            /* measured from frame analysis */
    width: 78.7%;           /* measured inner width */
    height: 69.2%;          /* measured inner height */
    overflow: hidden;
    z-index: 1;
}

/* make the iframe fill its container */
.hero-panorama-inner iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* frame around the media */
.media-content-wrapper {    
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    background-color: rgba(0, 0, 0, 0.4);
    /* padding: 6px; */
    padding-top: 210px;
}

/* panorama and slideshow containers */
.hero-panorama-frame {
    width: 100%;
    max-width: 950px;      /* match your frame PNG */
    aspect-ratio: 16 / 10; /* SAME as the original panorama */
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    margin: 0 auto;
}

.hero-panorama-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* keep it sensible on small screens */
@media (max-width: 768px) {
    .hero-full {
        min-height: 550px;
    }

   

    .hero-media-tabs {
        top: -32px;
    }
}

/* .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/IMG_0542.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
} */

/* Dark overlay is now enabled in hero section above */

.hero-content {
    position: relative;
    z-index: 3;  /* above the dark overlay (z-index: 1) */
    text-align: center;
    color: var(--white);
    padding: 40px 20px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 2;    
}


.hero-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: url('../images/bg-sun-glow.png') center/cover no-repeat;
    z-index: -1;
    opacity: 1;
    pointer-events: none;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 25px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--white);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }
    100% {
        top: 30px;
        opacity: 0;
    }
}


.currently-closed-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;   /* centers horizontally */
    margin-top: 40px;          /* space below the panorama */
}

.currently-closed-stamp {
    width: 260px;              /* adjust size as you want */
    max-width: 90%;
    transform: rotate(-5deg);  /* optional: stamp effect */
}


/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition-medium);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--orange);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #E55A2A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: var(--blue);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #3A7BC8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline {
    background-color: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
}

.btn-outline:hover {
    background-color: var(--orange);
    color: var(--white);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn svg {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 6px;
    vertical-align: middle;
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--black);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-bottom: 50px;
}

.section-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 30px;
}

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

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--orange) 0%, var(--blue) 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* ============================================
   INTRO SECTION
   ============================================ */

.intro-section {
    background-color: var(--white);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;

    color: var(--black);
}

.intro-text p {
    margin-bottom: 20px;
}

.intro-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--gray-light);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.feature-badge svg {
    width: 24px;
    height: 24px;
    color: var(--orange);
}

.feature-badge:hover {
    background-color: var(--cream);
    transform: translateY(-2px);
}

.intro-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.intro-text-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* ============================================
   HIGHLIGHTS SECTION
   ============================================ */

.highlights-section {
    background-color: var(--gray-light);
}

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

.highlight-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    text-align: center;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.highlight-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.highlight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--black);
}

.highlight-card p {
    color: var(--gray-dark);
    line-height: 1.7;
}

/* ============================================
   COURTYARD PREVIEW
   ============================================ */

.courtyard-preview {
    background-color: var(--white);
}

.courtyard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.courtyard-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    height: 300px;
}

.courtyard-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.courtyard-image:hover img {
    transform: scale(1.1);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Navigation Arrow */
.section-nav-arrow {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.section-nav-arrow:hover {
    transform: translateX(-50%) scale(1.1);
    background: rgba(255, 107, 53, 1);
}

.section-nav-arrow svg {
    width: 24px;
    height: 24px;
    color: white;
    transition: opacity 0.3s ease;
}

.section-nav-arrow .arrow-up {
    display: none;
    position: absolute;
}

.section-nav-arrow.show-up .arrow-down {
    display: none;
}

.section-nav-arrow.show-up .arrow-up {
    display: block;
}

/* ============================================
   FOOTER
   ============================================ */

/* .footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
} */

.footer {
    background-image: url("../images/footers/footer-fire-fgb.webp");    
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    margin-top: -380px!important;
    /* keeps footer tall enough to show the image */
    padding-top: 580px;
    padding-bottom:40px;

    color: white;
    position: relative;
}

.rooms-page footer {
    background-image: url("../images/footers/synthetic-yard.webp");
    background-color: transparent;
}

.contact-page footer {
    background-image: url("../images/footers/night-gate.webp");
    background-color: transparent;
}

.gallery-page footer {
    background-image: url("../images/footers/rooster-yard.webp");
    background-color: transparent;
}

.info-page footer {
    background-image: url("../images/footers/synth-ping-pong.webp");
    background-color: transparent;
}

.booking-page footer {
    background-image: url("../images/footers/night-gate1.webp");
    background-color: transparent;
}

.guest-page footer {
    background-image: url("../images/footers/night-gate3.webp");
    background-color: transparent;
}




.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--orange);
}

.footer-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: none; /* disable default transitions during drag */
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section a {
    color: var(--gray-medium);
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--orange);
    padding-left: 5px;
}

.footer-section p {
    color: var(--gray-medium);
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: var(--gray-medium);
}

/* ============================================
   ROOMS PAGE
   ============================================ */

.rooms-section {
    background-color: transparent;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.room-card {
    background-color: var(--white);
    border-radius: 10px;
    max-width: 500px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-medium);
    position: relative;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.room-card.featured {
    border: 3px solid var(--orange);
}

.room-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--orange);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

.room-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cream) 0%, var(--gray-light) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--gray-dark);
    padding: 0;
    margin: 0;
}s

.room-image-placeholder svg {
    width: 80px;
    height: 80px;
    opacity: 0.3;
}

/* .room-image-placeholder span {
    font-weight: 600;
} */

.room-image-placeholder span {
    font-weight: 600;
    display: block;
    width: 100%;
    height: 100%;
}

.room-content {
    padding: 30px;
}

.room-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--black);
}

.room-capacity {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-dark);
    margin-bottom: 16px;
}

.room-capacity svg {
    width: 20px;
    height: 20px;
}

.room-content p {
    color: var(--gray-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.room-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-dark);
}

.room-features svg {
    width: 18px;
    height: 18px;
    color: var(--green);
    flex-shrink: 0;
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
    padding: 16px;
    background-color: var(--gray-light);
    border-radius: 6px;
}

.price-label {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
}

.price-period {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.rooms-info {
    margin-top: 80px;
    text-align: center;
}

.rooms-info h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.included-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.included-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background-color: var(--gray-light);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.included-item:hover {
    background-color: var(--cream);
    transform: translateY(-4px);
}

.included-item svg {
    width: 36px;
    height: 36px;
    color: var(--orange);
}

.included-item span {
    font-weight: 600;
    color: var(--black);
}

.roomsSwiper {
    width: 100%;
    height: auto;    
}

/* Makes Room Cards Wider */
.roomsSwiper .swiper-slide {
    width: min(600px, 90vw) !important;    
}   



/* Rooms Swiper Pagination Display */
.roomsSwiper .swiper-button-prev,
.roomsSwiper .swiper-button-next,
.roomsSwiper > .swiper-pagination {
  display: none !important;
}

/* Prevent over-scrolling */
.roomsSwiper,
.roomsSwiper .swiper-wrapper,
.room-photos-swiper,
.room-photos-swiper .swiper-wrapper {
  overscroll-behavior-x: contain;
}

/* =========================================
   ROOMS SWIPER: full-bleed (edge-to-edge)
   ========================================= */

/* remove the container constraint ONLY for the rooms section */
.rooms-page .rooms-section > .container {
    max-width: 1400px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.rooms-page .roomsSwiper {
    width: 100%;
    overflow: visible;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);    
}

.roomsSwiper .swiper-slide {
    width: min(440px, 78vw);
}

.room-card {
    max-width: none;
}
  
/* IMPORTANT: if any parent is hiding overflow, it will still clip */
.rooms-page .rooms-section {
overflow: visible;
}

/* Adjust Scroll-Down Button Reach for Facilities  */
.facilities-slider-section,
.footer {
    scroll-margin-top: 155px;
}

/* Helps with Footer Page Down Target */
.footer-scroll-target {
    height: 1px;
    scroll-margin-top: 80px;
}

/* ============================================
   INFORMATION PAGE
   ============================================ */

.info-section {
    background-color: transparent;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 16rem;
    position: relative;
    z-index: 1!important;
}

.info-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.info-card.featured {
    border: 3px solid var(--orange);
}

body.info-page .info-icon {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px; /* Centers icon */    
}
body.info-page .info-icon img {
    width: 420px !important;
    height: 420px !important;
    object-fit: contain;
}

.info-page #videoBlock,
.info-page #chickenCamBlock {
    position: absolute;
    top: 19.5%;
    left: 13.8%;
    width: 72.4%;
    height: 62%;
    overflow: hidden;
    display: none;
    z-index: 5;
}

.info-page #youtubePlayer,
.info-page #youtubePlayer iframe,
.info-page #chickenCamPlayer,
.info-page #chickenCamPlayer iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--black);
}

.info-card p {
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.info-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    background-color: var(--gray-light);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-dark);
}

.amenities-section {
    margin-top: 80px;
    text-align: center;
}

.amenities-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background-color: var(--gray-light);
    border-radius: 8px;
    text-align: left;
}

.amenity-item svg {
    width: 24px;
    height: 24px;
    color: var(--green);
    flex-shrink: 0;
}

.amenity-item span {
    font-weight: 500;
    color: var(--black);
}

.courtyard-feature {
    margin-top: 80px;
    background-color: var(--cream);
    padding: 60px;
    border-radius: 10px;
}

.courtyard-feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.courtyard-feature-text h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.courtyard-feature-text p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.courtyard-feature-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.courtyard-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Flipbook preview slider (replaces courtyard grid) */
.flipbookPreviewSwiper {
    width: 100%;
    padding: 10px 0 40px; /* room for pagination */
  }
  
  .flipbookPreviewSwiper .swiper-slide {
    width: min(420px, 85vw); /* “cards” size */
  }
  
  .flipbookPreviewSwiper .courtyard-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
  }

  .flipbookPreviewSwiper {
    overscroll-behavior: contain;
  }

  .courtyard-image {
    position: relative;
  }
  
  /* Speed slider overlay */
  .flip-speed {
    position: absolute;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 18px;
    height: calc(100% - 20px);
    display: block;
    align-items: center;
    justify-content: center;
    touch-action: none; /* important for mobile dragging */
    user-select: none;
  }
  
  .flip-speed__track {
    position: absolute;
    left: 50%; 
    top: 0; 
    transform: translateX(-50%);
    width: 6px;
    height: 100%;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(4px);
  }
  
  .flip-speed__knob {
    position: absolute;
    left: 1px;
    top: 0; 
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    transform: translate(-50%, 0);
  }

  /* default hidden */
.flip-speed {
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
  }
  
  /* visible only when JS says so */
  .courtyard-image.flip-ui-visible .flip-speed {
    opacity: 1;
    pointer-events: auto;
  }
  
  /* cursor auto-hide while playing */
  .courtyard-image.flip-cursor-hidden {
    cursor: none;
  }

/* ============================================
   GALLERY PAGE
   ============================================ */

.gallery-section {
    background-color: transparent;
    position: relative;
    z-index: 5;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 0 auto; 
    /* margin-bottom: 50px; */
    flex-wrap: wrap;
}


.gallery-filter-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.gallery-filter {
    margin-bottom: 0;
}

.gallery-view-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


.view-btn {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    cursor: pointer;

    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;

    color: rgba(255,255,255,0.45);
}

.view-btn.active {
    color: white;
}

.view-btn:hover {
    color: rgba(255,255,255,0.8);
}

.view-separator {
    color: rgba(255,255,255,0.35);
    margin-left: 6px;
    margin-right: -14px
}

#timelineCarousel,
#flipbooksGrid,
#flipbooksCarousel {
    width: 100%;
}

.timelineSwiper {
    width: 100%;
    padding: 10px 0 40px;
}

.timelineSwiper .swiper-slide {
    height: auto;
}

.timelineSwiper .gallery-item {
    height: 300px;
}

.timelineSwiper .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flipbooks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.flipbooks-grid .courtyard-image {
    width: 100%;
}

@media (max-width: 768px) {
    .gallery-filter-bar {
        justify-content: center;
    }

    .gallery-view-toggle {
        width: 100%;
    }
}

.filter-btn,
.view-btn {
    background-color: rgba(255,255,255,0.75);
    color: var(--black);
    border: 2px solid transparent;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.view-btn:hover {
    background-color: rgba(255,255,255,0.95);
    transform: translateY(-1px);
}

.filter-btn.active,
.view-btn.active {
    background-color: var(--black);
    color: var(--cream);
    border-color: rgba(255,255,255,0.35);
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.35);
    cursor: default;
    transform: none;
}

.filter-btn.active:hover,
.view-btn.active:hover {
    background-color: var(--black);
    transform: none;
}

.view-btn {
    width: 56px;
    height: 56px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    display: block;
    max-width: none;
}



.view-btn:hover img {
    opacity: 0.8;
    transform: scale(1.05);
}

.view-btn.active img {
    opacity: 1;
}

.view-btn.active {
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    height: 300px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-heavy);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: var(--white);
    padding: 24px;
    transform: translateY(100%);
    transition: var(--transition-medium);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-placeholder {
    background: linear-gradient(135deg, var(--cream) 0%, var(--gray-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    text-align: center;
    color: var(--gray-dark);
    padding: 20px;
}

.placeholder-content svg {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
    opacity: 0.3;
}

.placeholder-content p {
    font-weight: 600;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.95);
    z-index: 9999;
    padding: 20px;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease;
}

#timelineCarousel {
    width: 100%;
}

.timelineSwiper {
    width: 100%;
    padding: 10px 0 40px;
}

.timelineSwiper .swiper-slide {
    height: auto;
}

.timelineSwiper .gallery-item {
    height: 300px;
}



@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    color: var(--white);
    padding: 40px 24px 24px;
    border-radius: 0 0 8px 8px;
}

.lightbox-caption h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.lightbox-caption p {
    opacity: 0.9;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background-color: rgba(255,255,255,0.2);
    border: none;
    color: var(--white);
    padding: 16px;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev svg,
.lightbox-next svg {
    width: 28px;
    height: 28px;
}

/* ============================================
   PANORAMA PAGE
   ============================================ */

.panorama-section {
    background-color: var(--white);
}

.panorama-container {
    margin-bottom: 60px;
}

.panorama-embed-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    min-height: 500px;
}

.panorama-placeholder {
    background: linear-gradient(135deg, var(--cream) 0%, var(--gray-light) 100%);
    padding: 80px 40px;
    text-align: center;
    color: var(--gray-dark);
}

.panorama-placeholder svg {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    opacity: 0.3;
}

.panorama-placeholder h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    color: var(--black);
}

.panorama-placeholder ol {
    text-align: left;
    max-width: 600px;
    margin: 24px auto;
    list-style: decimal;
    padding-left: 40px;
}

.panorama-placeholder li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.panorama-placeholder code {
    background-color: rgba(0,0,0,0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.panorama-placeholder .note {
    margin-top: 24px;
    font-style: italic;
    opacity: 0.8;
}

.panorama-info {
    background-color: var(--blue);
    color: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon {
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.panorama-info p {
    margin: 0;
    line-height: 1.6;
}

.tour-highlights {
    margin-top: 80px;
}

.tour-highlights h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

.highlights-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.highlight-small {
    background-color: var(--white);
    padding: 30px 24px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition-fast);
}

.highlight-small:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.highlight-icon-small {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.highlight-icon-small svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.highlight-small h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.highlight-small p {
    color: var(--gray-dark);
    font-size: 0.95rem;
}

.gallery-preview-section {
    background-color: var(--gray-light);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.preview-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    height: 250px;
}

.preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.preview-image:hover img {
    transform: scale(1.1);
}

/* ============================================
   LOCATION PAGE
   ============================================ */

.map-section {
    background-color: var(--white);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    position: relative;
}

.map-container iframe {
    width: 100%;
    display: block;
}

.map-note {
    background-color: var(--blue);
    color: var(--white);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.map-note svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.map-note p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.location-info-section {
    background-color: transparent;
}

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

.location-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.location-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.location-icon svg {
    width: 35px;
    height: 35px;
    color: var(--white);
}

.location-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.address-text {
    line-height: 1.8;
    margin-bottom: 24px;
}

.transport-list {
    text-align: left;
    margin-top: 20px;
}

.transport-list li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.directions-section {
    background-color: var(--white);
}

.directions-grid {
    display: grid;
    gap: 40px;
}

.direction-card {
    background-color: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    padding: 40px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    transition: var(--transition-fast);
}

.direction-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-medium);
}

.direction-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.direction-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.direction-content h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.direction-content h4 {
    font-size: 1.2rem;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--orange);
}

.direction-content p {
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 16px;
}

.attractions-list {
    list-style: none;
    margin-top: 16px;
}

.attractions-list li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.neighborhood-section {
    background-color: var(--cream);
}

.neighborhood-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.neighborhood-text {
    line-height: 1.8;
}

.neighborhood-text ul {
    list-style: disc;
    padding-left: 24px;
    margin: 16px 0;
}

.neighborhood-text li {
    margin-bottom: 8px;
}

.neighborhood-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-box {
    background-color: var(--white);
    padding: 24px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.highlight-box svg {
    width: 40px;
    height: 40px;
    color: var(--orange);
    margin-bottom: 12px;
}

.highlight-box h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.highlight-box p {
    color: var(--gray-dark);
    font-size: 0.9rem;
}

/* Baroque Dividers */
.baroque-divider {
    width: 100%;
    height: 100px; /* adjust to taste */
    background-image: url("../images/baroque-dividers/bd1.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: 40px 0; /* space above and below */
    /* opacity: 0.85; */
    filter: drop-shadow(0 6px 18px rgba(0,0,0,0.35));
    margin-top: -50px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section {
    background-color: transparent;
    padding-top: 10px;
    position: relative; 
    z-index: 50;
}


.contact-grid {
    grid-template-columns: 1fr;
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto 140px;
}

.contact-info-container {
    display: none;
}

.contact-form-container h2,
.contact-info-container h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-form-container h3 {    
    margin-top: 0px;
}

#contactScrollTarget {
    display: block;
    height: 1px;
}

.form-intro {
    color: var(--gray-dark);
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--gray-light);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    padding: 16px;
    border-radius: 6px;
    display: none;
    margin-top: 16px;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background-color: var(--cream);
    padding: 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    margin-top: 16px;
}

.form-note svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background-color: var(--white);
    border: 2px solid var(--gray-light);
    padding: 24px;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.info-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-light);
}

.info-icon {
    width: auto;
    height: auto;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: none !important;
}

.info-icon img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    display: block;
}

.info-icon svg {
    width: 110px;
    height: 110px;
    color: inherit;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.info-card p {
    color: var(--gray-dark);
    line-height: 1.6;
}

.info-card a {
    color: var(--orange);
    font-weight: 600;
}

.info-card a:hover {
    text-decoration: underline;
}

.info-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--orange);
    font-weight: 600;
}

.info-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 8px;
}

/* Make Both Opening Times  and Bedrooms Icons Larger */
/* .info-card.opening-times .info-icon img,
.info-card.opening-times .info-icon svg,
.info-card.bedrooms .info-icon img,
.info-card.bedrooms .info-icon svg {
    width: 230px;
    height: 230px;    
} */

.social-media {
    background-color: var(--gray-light);
    padding: 24px;
    border-radius: 8px;
}

.social-media h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.social-link:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.faq-section {
    background-color: transparent;
}

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

.faq-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--orange);
}

.faq-item p {
    color: var(--gray-dark);
    line-height: 1.7;
}

/* ============================================
   BOOKING PAGE
   ============================================ */

.booking-widget-section {
    background-color: var(--orange);
}

.booking-intro {
    text-align: center;
    margin-bottom: 50px;
}

.booking-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.booking-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.booking-widget-container {
    margin-bottom: 60px;
}

.booking-placeholder {
    background: linear-gradient(135deg, var(--cream) 0%, var(--gray-light) 100%);
    padding: 80px 40px;
    text-align: center;
    color: var(--gray-dark);
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
}

.booking-placeholder svg {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    opacity: 0.3;
}

.booking-placeholder h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    color: var(--black);
}

.booking-placeholder ol {
    text-align: left;
    max-width: 700px;
    margin: 24px auto;
    list-style: decimal;
    padding-left: 40px;
}

.booking-placeholder li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.booking-placeholder code {
    background-color: rgba(0,0,0,0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.booking-placeholder .note {
    margin-top: 24px;
    font-style: italic;
    opacity: 0.8;
}

.booking-info-section {
    margin-bottom: 80px;
}

.booking-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.booking-info-card {
    background-color: var(--gray-light);
    padding: 30px 24px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-fast);
}

.booking-info-card:hover {
    transform: translateY(-4px);
    background-color: var(--cream);
}

.info-icon-small {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.info-icon-small svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.booking-info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.booking-info-card p {
    color: var(--gray-dark);
    font-size: 0.95rem;
}

.why-book-direct {
    background-color: var(--gray-light);
}

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

.benefit-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.benefit-item p {
    color: var(--gray-dark);
    line-height: 1.6;
}

.booking-policies {
    background-color: transparent;
}

.booking-policies .container {
    margin-bottom: 20rem;
}


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

.policy-card {
    background-color: var(--white);
    border: 2px solid var(--gray-light);
    padding: 30px;
    border-radius: 8px;
}

.policy-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--orange);
}

.policy-card h3 svg {
    width: 24px;
    height: 24px;
}

.policy-card ul {
    list-style: disc;
    padding-left: 20px;
}

.policy-card li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: var(--gray-dark);
}

.alternative-booking {
    background-color: var(--gray-light);
}

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

.alternative-option {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.alternative-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.alternative-icon svg {
    width: 35px;
    height: 35px;
    color: var(--white);
}

.alternative-option h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.alternative-option p {
    color: var(--gray-dark);
    line-height: 1.6;
}

.alternative-option a {
    color: var(--orange);
    font-weight: 600;
}

.alternative-option a:hover {
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 40px 20px;
        transition: var(--transition-medium);
        box-shadow: var(--shadow-medium);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 16px 20px;
        font-size: 1.1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(10px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-10px);
    }

    .intro-content,
    .courtyard-feature-content,
    .contact-grid,
    .neighborhood-content {
        grid-template-columns: 1fr;
    }

    .direction-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .direction-icon {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .page-header h1 {
        font-size: 2.2rem;
    }

    .sticky-book-btn {
        bottom: 20px;
        right: 20px;
        padding: 14px 20px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .highlights-grid,
    .info-grid,
    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .courtyard-grid,
    .preview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    section {
        padding: 60px 0;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-logo {
        width: 80px;
        height: 80px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 10px 20px;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .footer {
        margin-top: -160px;     /* less overlap */
        padding-top: 320px;     /* shorter canvas */
        padding-bottom: 40px;
        background-size: contain;  
        background-position: bottom center;
    }
}

@media (max-width: 768px) {
    .baroque-divider {
        height: 80px;
        margin: 50px 0;
    }
}

/* ============================================
   STRUCTURAL MODIFICATIONS - ENHANCED STYLES
   ============================================ */

/* Hero Reduced Height */
.hero.hero-reduced {
    height: 70vh;
    min-height: 500px;
}

/* Hero Media Container (Toggle for Panorama/Slideshow) */
.hero-media-container {
    width: 100%;
    max-width: 900px;
    margin: 40px auto 20px;
}

.media-toggle-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.media-tab {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-medium);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    /* one line limit */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

}


.media-tab:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.media-tab.active {
    background-color: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.media-content-wrapper {
    position: relative;
    min-height: 350px;
}

.media-content {
    display: none;
    width: 100%;
    animation: fadeIn 0.4s ease;
}

.media-content.active {
    display: block;
}

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

/* Lower Hero Media Frame for Mobile */
@media (max-width: 768px) {
    .hero-panorama-first .hero-media-container {
      transform: translateY(120px) !important;
      margin-top: 0 !important;
    }
  }
  
  @media (max-width: 600px) {
    .hero-panorama-first .hero-media-container {
      transform: translateY(-100px) !important;
    }
}


/* Main Navigation Menu Below Hero */
.main-nav-menu {
    background: linear-gradient(to bottom, var(--cream) 0%, rgba(245, 230, 211, 0.8) 100%);
    padding: 24px 0;
    border-bottom: 3px solid var(--orange);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.main-nav-links {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.main-nav-links li {
    list-style: none;
}

.main-nav-links a {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--black);
    transition: all var(--transition-fast);
    padding: 10px 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--orange), var(--pink));
    transition: var(--transition-fast);
}

.main-nav-links a:hover::after {
    width: 100%;
}

.main-nav-links a:hover {
    color: var(--orange);
    transform: translateY(-2px);
}



/* Home Page Sections */
.welcome-text-section {
    background: linear-gradient(to bottom, var(--orange) 0%, var(--gray-light) 100%);
    padding: 80px 0;
}

/* Community Text */

.community-heart-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -50px; 
}

.community-heart-text {
    max-width: 900px;
    margin: -200px auto;
    text-align: center;
    transform: none;
}

.survival-guide-section {
    background-color: var(--orange);
    /* padding: 80px 0; */
    padding-top: 111px;
}

.survival-guide-slider-wrapper {
    max-width: 800px;
    margin: 40px auto;
}

.survivalGuideSwiper .swiper-slide {
    width: 300px;
    height: auto; /* Changed from 400px */
    min-height: 450px; /* Add minimum to ensure spacing */
}

/* Force hide overlay on non-active slides */
/* .survivalGuideSwiper .swiper-slide:not(.swiper-slide-active) .pdf-card::before {
    opacity: 0 !important;
    display: none;
  } */
  
  /* Ensure pdf-card contains everything */
  .survivalGuideSwiper .pdf-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    display: block;
  }

.pdf-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.pdf-preview:hover {
    /* transform: scale(1.05); */
    transform: none;
}

.pdf-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
}

.pdf-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pdf-modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.pdf-modal-close:hover {
    color: #ccc;
}

/* INVERTED LANGUAGE BADGE EFFECT - Replace lines 2861-2935 */

/* Language Badge System */
.pdf-card {
    position: relative;
    overflow: hidden;
  }
  

/* Side slides (NOT active) - Show dark overlay + big centered text */
.survivalGuideSwiper .swiper-slide:not(.swiper-slide-active) .lang-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  padding: 0;
  z-index: 10;
  transition: all 0.3s ease;
  pointer-events: none;
}

.survivalGuideSwiper .swiper-slide:not(.swiper-slide-active) .lang-text {
  font-family: 'balboa', sans-serif;
  font-size: 56px;
  font-weight: bold;
  color: var(--cream);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.survivalGuideSwiper .swiper-slide:not(.swiper-slide-active) .pdf-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 1 !important;
  z-index: 5;
  border-radius: 8px;
  display: block !important;
}

/* Delete lines 2903-2935 and replace with: */

/* Center slide (active) - Clean image with small top label */
.survivalGuideSwiper .swiper-slide-active .lang-badge {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 4px 12px;
    border-radius: 4px;
    z-index: 10;
  }

.survivalGuideSwiper .swiper-slide-active .lang-text {
  font-family: 'balboa', sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #1a1a1a;
}

.survivalGuideSwiper .swiper-slide-active .pdf-card::before {
  opacity: 0;
  display: none;
}
  
  
  /* Mobile expanded state */
  .survivalGuideSwiper .swiper-slide-active .pdf-card.expanded .lang-badge {
    top: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    padding: 0;
  }
  
  .survivalGuideSwiper .swiper-slide-active .pdf-card.expanded .lang-text {
    font-size: 56px;
    color: var(--cream);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  }
  
  .survivalGuideSwiper .swiper-slide-active .pdf-card.expanded::before {
    opacity: 1;
  }
  
/* Survival Guide Swiper - Remove navigation */
.survivalGuideSwiper .swiper-button-prev,
.survivalGuideSwiper .swiper-button-next,
.survivalGuideSwiper .swiper-pagination {
  display: none;
}

/* Show full card height */
.survival-guide-slider-wrapper {
    padding-bottom: 60px;
    overflow: visible;
  }
  
  .survivalGuideSwiper {
    overflow: visible;
    padding-bottom: 40px;
  }
  
  .swiper-slide {
    height: auto;
  }
  
  .pdf-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px; /* Add this to contain the overlay */
  }
  
  .pdf-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  

/* Side slides (NOT active) - Show dark overlay + big centered text */
.survivalGuideSwiper .swiper-slide:not(.swiper-slide-active) .lang-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    padding: 0;
    z-index: 10;
    transition: all 0.3s ease;
    pointer-events: none;
}
  
.survivalGuideSwiper .swiper-slide:not(.swiper-slide-active) .lang-text {
font-family: 'balboa', sans-serif;
font-size: 56px;
font-weight: bold;
color: var(--cream);
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.survivalGuideSwiper .swiper-slide:not(.swiper-slide-active) .pdf-card::before {
content: '';
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.6);
opacity: 1 !important;
z-index: 5;
border-radius: 8px;
display: block !important;
}

/* Center slide (active) - Clean image with small top label */
.survivalGuideSwiper .swiper-slide-active .lang-badge {
position: absolute;
top: 10%;
left: 50%;
transform: translateX(-50%);
background: rgba(255, 255, 255, 0.95);
padding: 6px 16px;
border-radius: 4px;
z-index: 10;
pointer-events: none;
}

.survivalGuideSwiper .swiper-slide-active .lang-text {
font-family: 'balboa', sans-serif;
font-size: 20px;
font-weight: bold;
color: #1a1a1a;
}

.survivalGuideSwiper .swiper-slide-active .pdf-card::before {
opacity: 0 !important;
display: none !important;
}

.chicken-cam-section {
    background: linear-gradient(to bottom, var(--cream) 0%, var(--orange) 100%);
    padding: 80px 0;
}

.videos-section {
    background-color: var(--gray-light);
    padding: 80px 0;
}

.welcome-text-section h2,
.survival-guide-section h2,
.chicken-cam-section h2,
.videos-section h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: center;
    color: var(--cream);
    position: relative;
    display: inline-block;
    width: 100%;
}

.welcome-text-section h2::after,
.survival-guide-section h2::after,
.chicken-cam-section h2::after,
.videos-section h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--orange), var(--pink));
    border-radius: 2px;
}

h2.no-after::after {
    content: none;
    display: none;     
  }
  
h2.no-after {
    margin-bottom: 5px; 
}

.sandino-plaque-section {
    margin-bottom: 100px;
}

#plaque-container {
    max-width: 350px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

#plaque-container img {
    max-width: 100%;
    height: auto;
    margin-top: 30px;
}

.welcome-text-section p {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.9;
    color: var(--gray-dark);
    font-size: 1.1rem;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    box-shadow: var(--shadow-light);
}

.welcome-text-section {
    padding-top: 100px;
}

/* Embed Container */
.embed-container {
    max-width: 950px;
    margin: 0 auto;
}

.embed-placeholder {
    background: linear-gradient(135deg, var(--cream) 0%, rgba(245, 230, 211, 0.5) 50%, var(--gray-light) 100%);
    padding: 80px 50px;
    border-radius: 15px;
    text-align: center;
    color: var(--gray-dark);
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    border: 3px dashed var(--gray-medium);
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition-medium);
}

.embed-placeholder:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--orange);
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 800px; /* Match panorama frame width */
    margin: 0 auto;
}

.video-placeholder {
    /* background: linear-gradient(135deg, var(--cream) 0%, rgba(245, 230, 211, 0.5) 50%, var(--white) 100%); */
    background: black;
    padding: 70px 45px;
    border-radius: 12px;
    text-align: center;
    color: var(--gray-dark);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--gray-light);
    font-size: 1.05rem;
    font-weight: 600;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    /* content: 'â–¶'; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: var(--orange);
    opacity: 0.15;
}

.video-placeholder:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--orange);
}

#videoBlock {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

#youtubePlayer,
#youtubePlayer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

#youtubePlayer .ytp-title,
#youtubePlayer .ytp-chrome-top {
    display: none !important;
}

/* #videoBlock {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
} */

/* #videoBlock iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
} */

/* Room Media Toggle */
.room-media-toggle-container {
    position: relative;
    background-color: var(--gray-light);
}



/* Cut Extra Spaces on Mobile */

/* Rooms Page */
@media (max-width: 1024px) and (orientation: portrait) {
    .rooms-page .hero.hero-panorama-first {
      height: auto !important;
      min-height: 0 !important;
      /* Rooms Slider Closer To Hero Media */
      margin-top: 40px !important;
      padding-top: 0 !important;
      padding-bottom: 0 !important;
    }
  
    .rooms-page .hero-panorama-first .hero-content {
      padding: 0 !important;
    }
  
    .rooms-page .hero-panorama-first .hero-media-container {
      width: 94% !important;
      margin: 0 auto !important;
      /* Bring Media Frame Down */
      transform: translateY(-40px) !important;
    }
  
    .rooms-page .rooms-section {
      padding-top: 0 !important;
      margin-top: -30px !important;
    }
  }
    /* Smaller Phones */
  @media (max-width: 768px) and (orientation: portrait) {
    .rooms-page .hero.hero-panorama-first {
      margin-top: 20px !important;
    }
  
    .rooms-page .hero-panorama-first .hero-media-container {
      width: 96% !important;
    /* Bring Media Frame Down */
      transform: translateY(-40px) !important;
    }
  
    .rooms-page .hero-media-tabs {
      top: 10% !important;
    }
  
    .rooms-page .hero-bottom-nav {
      bottom: 5% !important;
    }
  
    .rooms-page .rooms-section {
      padding-top: 0 !important;
      margin-top: -40px !important;
    }
  }

  @media (max-width: 768px) and (orientation: portrait) {
    .rooms-page .facilities-slider-section {
      padding-top: 0 !important;
      margin-top: -100px !important;
      padding-bottom: 0 !important;
    }
  
    .rooms-page .footer {
      margin-top: -280px !important;
      padding-top: 180px !important;
    }
  
    .rooms-page .footer-section {
      margin-top: 30px !important;
    }
  }

/* Information Pace Extra Space Reduction */
@media (max-width: 768px) and (orientation: portrait) {
    .info-page .hero.hero-panorama-first {
      height: auto !important;
      min-height: 0 !important;
      margin-top: 20px !important;
      padding-top: 0 !important;
      padding-bottom: 0 !important;
    }
  
    .info-page .hero-panorama-first .hero-content {
      padding: 0 !important;
    }
  
    .info-page .hero-panorama-first .hero-media-container {
      width: 96% !important;
      margin: 0 auto !important;
      transform: translateY(-40px) !important;
    }
  
    .info-page .facilities-section,
    .info-page .info-section {
      padding-top: 0 !important;
      margin-top: -20px !important;
    }
  }

  /* Cut Extra Spaces on Mobile - Contact Page */
  @media (max-width: 1024px) and (orientation: portrait) {
    .contact-page .hero.hero-panorama-first {
      height: auto !important;
      min-height: 0 !important;
      margin-top: 40px !important;
      padding-top: 0 !important;
      padding-bottom: 0 !important;
    }
  
    .contact-page .hero-panorama-first .hero-content {
      padding: 0 !important;
      margin: 0 !important;
    }
  
    .contact-page .hero-panorama-first .hero-media-container {
      width: 94% !important;
      margin: 0 auto !important;
      transform: translateY(-40px) !important;
    }
  
    .contact-page .currently-closed-wrapper {
      position: relative !important;
      bottom: auto !important;
      margin-top: -30px !important;
    }
  
    .contact-page .contact-section {
      padding-top: 0 !important;
      margin-top: -40px !important;
    }
  }



.room-toggle-tabs {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 6px;
    border-radius: 30px;
    box-shadow: var(--shadow-medium);
}

.room-tab {
    background-color: transparent;
    color: var(--black);
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.room-tab:hover {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--orange);
}

.room-tab.active {
    background-color: var(--orange);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.room-media-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.room-media-content.active {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

/* Make room media fill the card width */
.room-media-toggle-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.room-toggle-tabs-external {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.room-media-content {
    width: 100%;
    height: 100%;
}

.room-image-placeholder,
.room-photos-swiper {
    width: 100%;
    height: 100%;
}

.room-image-placeholder iframe {
    width: 100% !important;
    height: 100% !important;
}

.room-photos-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero.hero-reduced {
        height: 60vh;
        min-height: 450px;
    }
    
    .hero-media-container {
        max-width: 100%;
        margin: 30px auto 15px;
    }
    
    .media-toggle-tabs {
        flex-direction: row;
        gap: 8px;
    }
    
    .media-tab {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .panorama-placeholder,
    .slideshow-placeholder {
        padding: 60px 30px;
        min-height: 280px;
        font-size: 1rem;
    }
    
    .room-toggle-tabs {
        flex-direction: row;
        gap: 6px;
        padding: 4px;
    }
    
    .room-tab {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .main-nav-links {
        gap: 25px;
    }
    
    .main-nav-links a {
        font-size: 1rem;
    }
    
    .welcome-text-section h2,
    .survival-guide-section h2,
    .chicken-cam-section h2,
    .videos-section h2 {
        font-size: 2rem;        
    }
    
    .embed-placeholder {
        padding: 60px 30px;
        min-height: 350px;
        font-size: 1rem;
    }
    
    .video-placeholder {
        padding: 50px 30px;
        min-height: 220px;
        font-size: 1rem;
    }
    
    .video-placeholder::before {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .media-tab {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .main-nav-links {
        gap: 15px;
    }
    
    .main-nav-links a {
        font-size: 0.95rem;
        letter-spacing: 0.3px;
    }
}


/* ============================================
   STRUCTURAL MODIFICATIONS - APPENDED STYLES
   ============================================ */

/* TOP INFO BAR */
.top-info-bar {
    background-color: var(--black);
    border-bottom: 1px solid var(--gray-medium);
    padding: 10px 0;
    font-size: 14px;
}

.info-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cream);
}

.info-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.info-item a {
    color: var(--cream);
    transition: color var(--transition-fast);
}

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

.guest-access-link {
    background-color: var(--orange);
    color: var(--white) !important;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    transition: background-color var(--transition-fast);
}

.guest-access-link:hover {
    background-color: #E55A2A;
}

.guest-access-link.active {
    background-color: var(--blue);
}

/* Mobile responsive info bar */
@media (max-width: 768px) {
    .info-bar-content {
        justify-content: center;
        text-align: center;
    }
    
    .info-item {
        font-size: 12px;
    }
    
    .info-item:nth-child(3) {
        display: none; /* Hide address on mobile */
    }
}

/* HERO SLIDER */
.hero-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: var(--gray-light);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color var(--transition-fast);
}

.slider-nav:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.dot.active,
.dot:hover {
    background-color: var(--white);
}

/* Mobile responsive slider */
@media (max-width: 768px) {
    .hero-slider {
        height: 250px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
}

/* EXTERNAL TOGGLE BUTTONS FOR ROOMS */
.room-toggle-tabs-external {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 20px;
    background-color: var(--white);
    border-radius: 25px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.room-toggle-tabs-external .room-tab {
    flex: 1;
    padding: 10px 24px;
    background-color: transparent;
    border: none;
    color: var(--gray-dark);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border-radius: 20px;
}

.room-toggle-tabs-external .room-tab.active {
    background-color: var(--orange);
    color: var(--white);
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.3);
}

.room-toggle-tabs-external .room-tab:hover:not(.active) {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--orange);
}

.room-photos-swiper {
    width: 100%;
    /* match your iframe height for consistency */
    /* height: 200px; */
    height: 100%;
    border-radius: 12px; /* optional */
    overflow: hidden;
    padding: 0;
    margin: 0;
  }
  
  .room-photos-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

/* Mobile responsive external toggles */
@media (max-width: 768px) {
    .room-toggle-tabs-external {
        max-width: 250px;
    }
    
    .room-toggle-tabs-external .room-tab {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* GUEST ACCESS PAGE STYLES */
.guest-access-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.guest-access-content {
    max-width: 800px;
    margin: 0 auto;
}

.guest-access-card {
    background-color: var(--white);
    margin-top: -50px;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
    text-align: center;
}

.guest-access-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.guest-access-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
}

.guest-access-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--black);
}

.guest-access-card p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-dark);
}

/* Mobile responsive guest access */
@media (max-width: 768px) {
    .guest-access-section {
        padding: 60px 0;
    }
    
    .guest-access-card {
        padding: 40px 25px;
    }
    
    .guest-access-icon {
        width: 60px;
        height: 60px;
    }
    
    .guest-access-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .guest-access-card h2 {
        font-size: 24px;
    }
    
    .guest-access-card p {
        font-size: 16px;
    }
}

/* ADJUSTMENTS FOR NAVBAR TO WORK WITH TOP INFO BAR */
.navbar {
    top: 0;
}

/* END OF STRUCTURAL MODIFICATIONS */

/* === GLOBAL PSYCHEDELIC BACKGROUND === */
/* body {
    margin: 0;
    background: #FF6501 url("../images/background-frame-bg.webp") no-repeat right;
    /* the key to keeping the image sharp */
    /* background-size: auto; */
    body{
        margin: 0;
        font-family: "Futura PT", sans-serif;
        background-color: #FF6501;
        background-image: none;        
      }
      
      /* Parallax background layer */
      body{
        margin: 0;
        font-family: "Futura PT", sans-serif;
        background-color: #FF6501;
        background-image: none;
      }
      
      body{
        margin: 0;
        font-family: "Futura PT", sans-serif;
        background-color: #FF6501;
        background-image: none;
      }
      
      .bg-parallax{
        position: fixed;
        inset: 0;
        z-index: -10;
        pointer-events: none;
        overflow: hidden;                 /* important */
      }
      
      /* the image lives on a composited layer */
      .bg-parallax::before{
        content: "";
        position: absolute;
        left: 0;
        top: 0;
      
        width: 100%;
        height: var(--bgRenderedH, 3000px);  /* set by JS */
      
        background: url('../images/backgrounds/background-frame-bgb.webp') no-repeat top center;
        background-size: 100% auto;
      
        /* drift + (optional) mouse parallax */
        transform: translate3d(var(--px,0px), 0, 0);
        will-change: transform;
      
        /* Homepage Moving Background Speed */
        /* animation: bgDrift var(--bgDur, 1800s) linear infinite; */
        animation: bgDrift 200s linear infinite;
      }
      
      /* drift from top to “bottom end” */
      @keyframes bgDrift{
        from { transform: translate3d(var(--px,0px), 0px, 0); }
        to   { transform: translate3d(var(--px,0px), calc(-1 * var(--bgTravel, 0px)), 0); }
      }
      
      /* Safari + Firefox: kill mouse parallax (keeps it sharp + stable) */
      html.is-safari .bg-parallax::before,
      html.is-firefox .bg-parallax::before{
        --px: 0px;
        will-change: auto;
      }


      
/* Rooms page background */
.rooms-page {
    background: url('../images/backgrounds/trippy-bg2.webp');
    background-repeat: no-repeat;
    background-position: center -10px;
    background-size: 100% auto;       
    background-color: var(--orange); 
}

/* Information page background */
.info-page {
    background: url('../images/backgrounds/trippy-bg2.webp') no-repeat center 0px;;
    background-size: 100% auto;    
    background-color: var(--orange);
}

/* Contact page background */
.contact-page {
    background: url('../images/backgrounds/trippy-bg2.webp');
    background-repeat: no-repeat;
    background-position: center -10px;
    background-size: 100% auto;       
    background-color: var(--orange); 
}

/* Contact page background */
.gallery-page {
    background: url('../images/backgrounds/trippy-bg2.webp');
    background-repeat: no-repeat;
    background-position: center -10px;
    background-size: 100% auto;       
    background-color: var(--orange); 
}
/* Book page background */
.booking-page {
    background: url('../images/backgrounds/trippy-bg2.webp');
    background-repeat: no-repeat;
    background-position: center -10px;
    background-size: 100% auto;       
    background-color: var(--orange); 
}
/* Guest-Access page background */
.guest-page {
    background: url('../images/backgrounds/trippy-bg2.webp');
    background-repeat: no-repeat;
    background-position: center -10px;
    background-size: 100% auto;       
    background-color: var(--orange); 
}





/* keep the hero transparent so the frame shows through */
.hero {
    background: transparent;
}
/* Dark overlay enabled - see hero section above */

/* optional: let sections be transparent so orange + frame stay visible */
.welcome-text-section,
.survival-guide-section,
.chicken-cam-section,
.videos-section,
.intro-section,
.highlights-section,
.courtyard-preview,
.cta-section {
    /* background: rgba(0,0,0,0.25); */
    background: transparent; /* still visually black, but restores depth */
}

/* Update CSS for chickenCamBlock */
#chickenCamBlock {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 2; /* Add z-index to ensure it's on top */
}

#chickenCamPlayer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#chickenCamPlayer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Add CSS for chickenCamPlayer */
#chickenCamPlayer,
#chickenCamPlayer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* FRAME + PANORAMA WRAPPER */
.hero-panorama-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

/* The frame PNG */
.panorama-frame {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    pointer-events: none;  /* allow clicks to pass through to iframe */
}

/* Inside area where the panorama is visible */
.hero-panorama-inner {
    position: absolute;
    top: 18%;               /* reduced from 21% to move panorama UP inside frame */
    left: 13.8%;            /* measured from frame analysis */
    width: 78.7%;           /* measured inner width */
    height: 69.2%;          /* measured inner height */
    overflow: hidden;
    z-index: 1;
}

.hero-panorama-inner iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* Black bar always visible */
.top-info-bar {
    position: relative;              /* or fixed — see note below */
    opacity: 1 !important;
    transform: translateY(0) !important;
    z-index: 9999 !important;        /* raise above hero stuff */
    background: var(--black) !important;
    pointer-events: auto;
  }

/* Navbar hidden, appears on scroll */
.navbar {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.navbar.scrolled {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.navbar.scrolled {
    background: rgba(255, 101, 1, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.navbar.scrolled .nav-menu a,
.navbar.scrolled .nav-logo,
.navbar.scrolled .nav-book-btn {
    color: var(--cream);
    text-shadow: 0 1px 4px rgba(0,0,0,0.45);
}


/* Hero section */
.hero-panorama-first {
    height: calc(100vh - 40px) !important;  /* Subtract top-info-bar height */
    min-height: calc(100vh - 40px) !important;
    margin-top: 40px !important;  /* Add space for top-info-bar */    
    padding-top: 0 !important;
    position: relative;
    z-index: 1;
    overflow: visible !important;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}


/* Dark overlay */
.hero-panorama-first::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.35) 52px,
        rgba(0, 0, 0, 0.35) 100%
    ) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

/* Hero content */
.hero-panorama-first .hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    /* To bring baroque frame with media up or down */
    /* padding: 20px 20px 0 !important; */    
}

/* Hide logo */
.hero-panorama-first .hero-logo {
    display: none !important;
}

/* Media container */
.hero-panorama-first .hero-media-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto !important;
    /* Moves the fucking frame up or down */
    /* transform: translateY(-190px)!important; */
}

/* Panorama wrapper */
.hero-panorama-first .hero-panorama-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

/* Panorama inner - MUST be absolute */
.hero-panorama-first .hero-panorama-inner {
    position: absolute !important;
    top: 19.5%;
    left: 13.8%;
    width: 72.4%;
    height: 62%;
    overflow: hidden;
    z-index: 1;
    pointer-events: auto !important;
}

.hero-panorama-first .hero-panorama-inner iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: auto !important;
}

/* Frame image - position MUST be relative, not absolute */
.hero-panorama-first .panorama-frame {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 10 !important;  /* Frame on top */
}

.hero-panorama-first .hero-panorama-inner {
    position: absolute !important;
    top: 19.5%;
    left: 13.8%;
    width: 72.4%;
    height: 62%;
    z-index: 5 !important;  /* Panorama behind frame */
}

/* Toggle buttons */
.hero-panorama-first .hero-media-tabs {
    display: flex !important;
    position: absolute;
    top: 8% !important;
    left: 50%;
    transform: translateX(-50%);
    z-index: 13;
    gap: 8px;
    pointer-events: auto;
}

.hero-panorama-first .hero-chickencam-inner {
    position: absolute !important;
    top: -1%;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: auto !important;
    background: black;
}

.hero-panorama-first .hero-chickencam-inner iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.hero-media-tabs .media-tab {
    background: rgba(255, 101, 1, 0.9);
    color: white;
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-media-tabs .media-tab:hover {
    background: rgba(255, 101, 1, 1);
    transform: translateY(-2px);
}

.hero-media-tabs .media-tab.active {
    background: var(--orange);
    border-color: white;
}

/* Nav chips */
.hero-bottom-nav {
    position: absolute;
    bottom: 1.5%;
    left: 13.8%;
    width: 72.4%;
    z-index: 14;
    display: flex;
    justify-content: center;
    gap: 8px;
    background: transparent !important;
    padding: 12px 16px;
    pointer-events: auto;
}

.hero-bottom-nav a {
    background: rgba(237, 203, 5, 0.95) !important;
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
}

.hero-bottom-nav a:hover {
    background: rgba(255, 101, 1, 0.95) !important;
    color: white;
}

/* Closed stamp */
.hero-panorama-first .currently-closed-wrapper {
    position: absolute !important;
    /* bottom: -20% !important; */
    bottom: -135px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 100 !important;
    pointer-events: none !important;
}

.hero-panorama-first .currently-closed-stamp {
    width: 550px !important;
    max-width: 85vw !important;
    transform: rotate(-8deg) !important;
    filter: drop-shadow(0 12px 28px rgba(0,0,0,0.9)) !important;
}

/* Hide text */
.hero-panorama-first h1,
.hero-panorama-first .hero-subtitle,
.hero-panorama-first .hero-buttons {
    display: none !important;
}

/* Frame corners */
.frame-corners {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 15;
}

.frame-hotspot {
    position: absolute;
    cursor: pointer;
    pointer-events: auto !important;
    background: rgba(255, 255, 255, 0);
    border-radius: 50%;
}

.frame-hotspot:hover {
    background: rgba(255, 101, 1, 0.15);
}

.corner-top-left { top: 0; left: 0; width: 140px; height: 140px; }
.corner-top-right { top: 0; right: 0; width: 140px; height: 140px; }
.side-left { top: 50%; left: 5%; transform: translateY(-50%); width: 100px; height: 140px; }
.side-right { top: 50%; right: 5%; transform: translateY(-50%); width: 100px; height: 140px; }
.corner-bottom-left { bottom: 0; left: 0; width: 140px; height: 140px; }
.corner-bottom-right { bottom: 0; right: 0; width: 140px; height: 140px; }

.frame-hotspot.side-left:hover,
.frame-hotspot.side-right:hover {
    opacity: 0;
    pointer-events: none;
}

#panoramaFrame {
    transition: opacity 0.3s ease;
}

#panoramaFrame.changing {
    opacity: 0.7;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-panorama-first .hero-content {
        padding: 40px 20px 0 !important;
    }
    .currently-closed-wrapper {
        bottom: -80px!important;
    }
}

/* LIFT THE PANORAMA + FRAME UP */
.hero-media-container {
    margin-top: 0 !important;
    padding-top: 0 !important;
    transform: translateY(-220px);     
}
/* Toggle buttons - bring them DOWN closer to panorama */
.hero-panorama-first .hero-media-tabs {
    display: flex !important;
    position: absolute;
    top: 13% !important;  /* Changed from 8% to 15% - moves them down */
    left: 50%;
    transform: translateX(-50%);
    z-index: 13;
    gap: 8px;
    pointer-events: auto;
}

/* Nav chips - bring them UP closer to panorama */
.hero-bottom-nav {
    position: absolute;
    bottom: 11% !important;  /* Changed from 1.5% to 8% - moves them up */
    left: 13.8%;
    width: 72.4%;
    z-index: 14;
    display: flex;
    justify-content: center;
    gap: 8px;
    background: transparent !important;
    padding: 12px 16px;
    pointer-events: auto;
}

/* Place Swiper inside the same window as the panorama */
#slideshowBlock {
    position: absolute;
    top: 19.5%;          /* same as .hero-panorama-inner */
    left: 13.8%;
    width: 72.4%;
    height: 62%;
    overflow: hidden;
    z-index: 1;          /* BELOW the frame, ABOVE the background */
}

/* Make Swiper slides scale correctly inside the window */
#slideshowBlock .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* important */
}

/* ============================================
   FOOTER LOGO ANIMATION
   ============================================ */

   .footer-logo-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto 16px;
}

/* Background layer (mandala-06-bg and mandala-07-bg) */
.footer-logo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    z-index: 10;
}

.footer-logo-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    animation: rotateCounterClockwise 20s linear infinite;
}

.footer-logo-bg img.active {
    opacity: 1;
}

/* Sun states (middle layer) */
.footer-logo-state {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 20;
}

.footer-logo-state.active {
    opacity: 1;
}


.footer-logo-state img {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    object-fit: cover;
}

/* Rotate ALL state images (including rooster-logo for consistency) */
.footer-logo-state[data-state="normal"] img {
    animation: none; /* No rotation for normal state */
}

.footer-logo-state[data-state]:not([data-state="normal"]) img {
    animation: rotateSun 20s linear infinite;
}

.footer-logo-silhouette {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    opacity: 1;
    z-index: 30;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.footer-logo-silhouette img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    transform-origin: bottom center;
    animation: breathe 7s ease-in-out infinite;
}

/* Hide silhouette during complex cycle */
.footer-logo-container.complex-cycle .footer-logo-silhouette {
    opacity: 0;
}


/* Foreground landscape layer */
.footer-logo-fg-landscape {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    z-index: 25;
}

.footer-logo-fg-landscape img {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.footer-logo-fg-landscape img.active {
    opacity: 1;
}

/* Foreground flowers layer */
.footer-logo-fg-flowers {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    z-index: 27;
}

.footer-logo-fg-flowers img {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.footer-logo-fg-flowers img.active {
    opacity: 1;
}

/* Foreground single layer (mandala 03-05) */
.footer-logo-fg-single {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    z-index: 25;
}

.footer-logo-fg-single img {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    animation: driftSlow 8s ease-in-out infinite;
}

.footer-logo-fg-single img.active {
    opacity: 1;
}

/* Rotation animations */
@keyframes rotateSun {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateCounterClockwise {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

/* Add breathing animation to rooster silhouette */
.footer-logo-silhouette img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    transform-origin: bottom center;
    animation: breathe 7s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.015); }
}

/* Add subtle pulse to sun/mandala states */
.footer-logo-state img {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    object-fit: cover;
    animation: breatheEnvironment 9s ease-in-out infinite;
}

@keyframes breatheEnvironment {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.008); }
}

    /* Drift animations (NO rotation, only translate) */
    /* 
    @keyframes driftSlow {
        0%, 100% { transform: translate(0, 0); }
        25% { transform: translate(2px, -1px); }
        50% { transform: translate(-1px, 2px); }
        75% { transform: translate(1px, 1px); }
    }

    @keyframes driftGentle {
        0%, 100% { transform: translate(0, 0); }
        33% { transform: translate(-1px, 1px); }
        66% { transform: translate(1px, -1px); }
    } */

    /* Animated state background */
    #footer-logo-container.animated {
        background: url('images/trippybackground-a.webp') center/cover;
        animation: none; /* we'll rotate via transform */
    }

    /* Normal state background */
    #footer-logo-container.normal {
        background-color: #FF6B35;
        border-radius: 50%;
    }

   
  /* Ensure pdf-card contains everything */
  .survivalGuideSwiper .pdf-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    display: block;
  }

 /* Panorama Slideshow Arrows */
.myPanoramaSwiper .swiper-button-next,
.myPanoramaSwiper .swiper-button-prev {
    background-image: none !important;
    width: 100px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
    top: 45%; 
    display: none;
}

.myPanoramaSwiper .swiper-button-prev {
    left: 12%;
    transform: translateX(-50%);
}

.myPanoramaSwiper:hover .swiper-button-next,
.myPanoramaSwiper:hover .swiper-button-prev {
    opacity: 0;
    pointer-events: none;
}

.myPanoramaSwiper .swiper-button-next {
    background-image: url('../images/baroque-dividers/right-slider-arrow.png') !important;
}

.myPanoramaSwiper .swiper-button-prev {
    background-image: url('../images/baroque-dividers/left-slider-arrow.png') !important;
}

.myPanoramaSwiper .swiper-button-next::after,
.myPanoramaSwiper .swiper-button-prev::after {
    content: '' !important;
}

/* Hide arrows on mobile */
@media (max-width: 768px) {
    .myPanoramaSwiper .swiper-button-next,
    .myPanoramaSwiper .swiper-button-prev {
        display: none;
    }
}

/* Keep BOTH button rows inside the frame on one line */
.hero-panorama-first .hero-media-tabs,
.hero-panorama-first .hero-bottom-nav {
  flex-wrap: nowrap !important;
  white-space: nowrap;
  overflow: hidden;            /* prevents spilling outside the frame */
  gap: clamp(4px, 1.2vw, 8px) !important;
}

/* Constrain top tabs to the SAME inner-window width as bottom nav */
.hero-panorama-first .hero-media-tabs {
  left: 13.8% !important;
  width: 72.4% !important;
  transform: none !important;
  justify-content: space-between;
}

/* Make each button/link shrink to fit */
.hero-media-tabs .media-tab,
.hero-bottom-nav a {
  flex: 1 1 0;                 /* each item shares the available width */
  min-width: 0;                /* required for ellipsis to work */
  padding: clamp(6px, 1.2vw, 10px) clamp(8px, 1.8vw, 16px) !important;
  font-size: clamp(10px, 1.6vw, 14px) !important;

  overflow: hidden;
  text-overflow: ellipsis;
}

/* Bottom nav: spread items across the window */
.hero-bottom-nav {
  justify-content: space-between !important;
}

/* Mobile: keep one line, but allow horizontal scroll instead of ellipsis */
@media (max-width: 480px) {
    .hero-bottom-nav {
      overflow-x: auto !important;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;       /* Firefox */
    }
    .hero-bottom-nav::-webkit-scrollbar {
      display: none;               /* Chrome/Safari */
    }
  
    /* turn OFF the ellipsis so full words show */
    .hero-bottom-nav a {
      flex: 0 0 auto !important;   /* don't force equal widths */
      overflow: visible !important;
      text-overflow: clip !important;
      min-width: max-content;      /* keep each label intact */
      font-size: 13px !important;
      padding: 8px 12px !important;
    }
  }

  /* MOBILE TOP INFO BAR: icons only + Guest Access, single line */
@media (max-width: 600px) {

    /* one-line bar */
    .top-info-bar .info-bar-content {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: nowrap;
    }
  
    /* hide the address item (3rd item in your HTML) */
    .top-info-bar .info-bar-content .info-item:nth-child(3) {
      display: none;
    }
  
    /* make each info item compact */
    .top-info-bar .info-item {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 0;
    }
  
    /* keep icons visible */
    .top-info-bar .info-item svg {
      width: 20px;
      height: 20px;
      pointer-events: none; /* clicks go to the overlay link */
    }
  
    /* EMAIL + PHONE: turn the text link into an invisible tappable icon button */
    .top-info-bar .info-bar-content .info-item:nth-child(1) a,
    .top-info-bar .info-bar-content .info-item:nth-child(2) a {
      position: absolute;
      inset: -8px;              /* expands tap area around icon */
      text-indent: -9999px;     /* hide text */
      overflow: hidden;
      white-space: nowrap;
    }
  
    /* Guest Access stays visible but smaller */
    .top-info-bar .guest-access-link {
      padding: 6px 10px !important;
      font-size: 12px !important;
      border-radius: 10px !important;
      white-space: nowrap;
    }
  }

  @media (max-width: 600px) {
    .hero-panorama-first .hero-media-tabs {
      top: 70px !important;
    }
  }

  /* Hide Hero Media Frame Nav for Small Phones */
@media (max-width: 576px) {
.hero-bottom-nav {
    display: none !important;
}
}

/* Permanent Hamburger Menu */
@media (max-width: 768px) {
    .navbar {
      opacity: 1 !important;
      transform: translateY(0) !important;
      pointer-events: auto !important;
    }
  }

  /* ============================================
   GALLERY VIEW TOGGLE (CAROUSEL | GRID)
   clean minimal override
   ============================================ */

.gallery-view-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* remove all button styling */
.view-btn {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    outline: none !important;

    font: inherit;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: rgba(255,255,255,0.45);
    cursor: pointer;
}

/* active state */
.view-btn.active {
    color: #ffffff;
}

/* hover */
.view-btn:hover {
    color: rgba(255,255,255,0.8);
}

/* separator */
.view-separator {
    color: #ffffff;
    opacity: 0.5;
    font-size: 0.75rem;
    font-weight: 700;
}

.gallery-filter-bar {
    position: relative;
    display: flex;
    justify-content: center;
}

.gallery-view-toggle {
    position: absolute;
    right: 0;
}

.facilities-slider-section {
    position: relative;
    z-index: 5;
    padding-top: 20px;
    padding-bottom: 80px;
}

.facilitiesSwiper {
    width: 100%;
    overflow: visible;
}

.facilitiesSwiper .swiper-slide {
    width: min(320px, 72vw);
}

.facility-slide-card {
    background: rgba(255,255,255,0.92);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.facility-slide-card img {
    width: 100%;
    height: 220px!important;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.facility-slide-card h3 {
    color: var(--black);
    font-size: 1.2rem;
    padding: 16px 18px 18px;
    margin: 0;
    text-align: center;
}

.facility-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

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

.facility-lightbox img {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 10px;
}

.facility-lightbox-close {
    position: absolute;
    top: 18px;
    right: 24px;
    background: none;
    border: none;
    color: white;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
}

.facilityLightboxSwiper {
    width: 90vw;
    height: 90vh;
  }
  
  .facilityLightboxSwiper .swiper-wrapper {
    align-items: center;
  }
  
  .facilityLightboxSwiper .swiper-slide {
    width: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .facilityLightboxSwiper .swiper-slide img {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    margin: 0 auto;
  }

/* Room card slideshow dots */
.room-photos-pagination {
    display: block !important;
    bottom: 10px !important;
  }
  
  .room-photos-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.65);
    opacity: 1;
  }
  
  .room-photos-swiper .swiper-pagination-bullet-active {
    background: #ffffff;
  }

  .footer-logo-container {
    position: relative;
}

.footer-logo-silhouette {
    position: absolute;
    inset: 0;
    z-index: 999;
    opacity: 1 !important;
    display: block !important;
    pointer-events: none;
}

.footer-logo-silhouette img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1 !important;
    display: block !important;
}

.footer-logo-container * {
    visibility: visible;
}

.welcome-text-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bring Footer Up in Contact Page for Mobile */
@media (max-width: 768px) and (orientation: portrait) {
    .contact-page .contact-section {
      padding-top: 0 !important;
      padding-bottom: 0 !important;
      margin-bottom: -280px !important;
    }
  
    .contact-page .footer {
      margin-top: -220px !important;
      padding-top: 220px !important;
    }
  }

  @media (max-width: 768px) and (orientation: portrait) {
    .booking-page section:last-of-type {
      padding-bottom: 0 !important;
      margin-bottom: -100px !important;
    }
  
    .booking-page .footer {
      margin-top: -220px !important;
      padding-top: 220px !important;
    }
  }

  /* Bring Footer Up in the Booking Page */

  @media (max-width: 768px) and (orientation: portrait) {
    .booking-page .footer {
      margin-top: 0px !important;
      padding-top: 0px !important;
    }
  
    .booking-page .footer-section {
      margin-top: 40px !important;
    }
  }
/* Gallery Page Space Reduction */
@media (max-width: 768px) and (orientation: portrait) {
    .gallery-page .hero.hero-panorama-first {
      height: auto !important;
      min-height: 0 !important;
      margin-top: 20px !important;
      padding-top: 0 !important;
      padding-bottom: 0 !important;
    }
  
    .gallery-page .hero-panorama-first .hero-content {
      padding: 0 !important;
    }
  
    .gallery-page .hero-panorama-first .hero-media-container {
      width: 96% !important;
      margin: 0 auto !important;
      transform: translateY(-40px) !important;
    }
  
    .gallery-page .gallery-section {
      padding-top: 0 !important;
      margin-top: -40px !important;
    }
  }

  /* Move Grid/Carousel Selector */
  @media (max-width: 768px) and (orientation: portrait) {
    .gallery-page .gallery-filter-bar {
      position: relative !important;
      padding-bottom: 50px !important;
    }
  
    .gallery-page .gallery-view-toggle {
      position: absolute !important;
      right: 0 !important;
      top: 55px !important;
      margin: 0 !important;
      width: fit-content;
    }
  }
/* Display Timeline-Gallery Titles by Default */
  .gallery-overlay {
    transform: translateY(0);
  }
    /* Home Page Spacing for Mobile */
  @media (max-width: 768px) and (orientation: portrait) {
    .hero.hero-panorama-first {
      height: auto !important;
      min-height: 0 !important;
      padding-bottom: 0 !important;
    }
  
    /* Brings Currently Closed Sign Down for Mobile */
    .hero-panorama-first .currently-closed-wrapper {
      bottom: -120px !important;
    }
    /* Brings Welcome-Text Down for Mobile */
    .welcome-text-section {
      margin-top: 50px !important;
      padding-top: 0 !important;
    }
  }

  /* Hide Page-Down Buttons for Mobile */
  /* body:not(.home-page) .section-nav-arrow {
    display: none !important;
  } */

  /* Rooms Slider Buttons for Mobile */
  @media (max-width: 768px) {
    .roomsSwiper .swiper-button-prev,
    .roomsSwiper .swiper-button-next {
      display: flex !important;
      align-items: center;
      justify-content: center;
      width: 46px;
      height: 46px;
      top: 32%;
      transform: translateY(-50%);
      background: var(--orange);
      border-radius: 50%;
      z-index: 20;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }
  
    .roomsSwiper .swiper-button-prev {
      left: 10px;
    }
  
    .roomsSwiper .swiper-button-next {
      right: 10px;
    }
  
    .roomsSwiper .swiper-button-prev::after,
    .roomsSwiper .swiper-button-next::after {
      font-size: 18px;
      font-weight: 900;
      color: var(--white);
    }
  
    .roomsSwiper .swiper-button-prev:hover,
    .roomsSwiper .swiper-button-next:hover {
      transform: translateY(-50%) scale(1.05);
    }
  }

 /* ============================================
   ROOMS: DISABLE SLIDER ON PORTRAIT
   Stack cards vertically, native scroll only
   ============================================ */
@media (orientation: portrait) {

    .rooms-page .rooms-section {
      overflow: hidden !important;
    }
  
    .rooms-page .roomsSwiper {
      overflow: hidden !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
      width: 100% !important;
    }
  
    .rooms-page .roomsSwiper > .swiper-wrapper {
      display: flex !important;
      flex-direction: column !important;
      transform: none !important;
      width: 100% !important;
      gap: 30px;
    }
  
    .rooms-page .roomsSwiper > .swiper-wrapper > .swiper-slide {
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 !important;
    }
  
    .rooms-page .roomsSwiper .swiper-button-prev,
    .rooms-page .roomsSwiper .swiper-button-next {
      display: none !important;
    }
  
    /* Hide outer room carousel pagination, show inner photo dots */
    .rooms-page .roomsSwiper > .swiper-pagination {
      display: none !important;
    }
  
    .rooms-page .room-photos-pagination {
      display: block !important;
    }
  
    .rooms-page .room-photos-swiper .swiper-pagination-bullet {
      display: inline-block !important;
    }
  }

  /* Rooms Slider Pagination Bullets Styling */
  .room-photos-swiper .swiper-pagination-bullet {
    background: var(--orange);
    opacity: 0.45;
  }
  
  .room-photos-swiper .swiper-pagination-bullet-active {
    background: var(--orange);
    opacity: 1;
  }
 
  /* Facilities Slider Pagination Bullets Styling */
  .facility-photos-swiper .swiper-pagination-bullet {
    background: var(--orange);
    opacity: 0.45;
  }
  
  .facility-photos-swiper .swiper-pagination-bullet-active {
    background: var(--orange);
    opacity: 1;
  }

  /* Lower Media Tabs in Baroque Frame for Mobile */
  @media (max-width: 768px) and (orientation: portrait) {
    .hero-panorama-first .hero-media-tabs {
      top: 8% !important;
    }
  }

  /* Disable Top Frame-Design Changing Hotspots that Block Media Tabs and Panorama Function */
  @media (max-width: 768px) and (orientation: portrait) {
    .corner-top-left,
    .corner-top-right {
      pointer-events: none !important;
    }
  }

  /* Link Home Panorama Externally for Mobile */
  .mobile-panorama-link {
    display: none;
  }
  
  @media (max-width: 768px) {
    .mobile-panorama-link {
      display: block;
      position: absolute;
      inset: 0;
      z-index: 20;
      background: transparent;
    }
  }

  /* Rooms Disclaimer */
.rooms-disclaimer-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  background: rgba(17, 10, 6, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.rooms-disclaimer-overlay.is-hidden {
  display: none;
}

.rooms-disclaimer-modal {
  position: relative;
  width: min(760px, 100%);
  margin: 20px auto;
  padding: 34px 30px 28px;
  border-radius: 22px;
  background: rgba(255, 101, 1, 0.92);
  border: 2px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  color: var(--white);
  overflow-y: auto;
  max-height: calc(100vh - 40px);
}

.rooms-disclaimer-modal h2 {
  margin: 0 0 18px;
  text-align: center;
  font-family: "balboa", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 2.4rem;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}

.rooms-disclaimer-modal p {
  margin: 0 0 16px;
  font-family: "balboa", sans-serif;
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--white);
  text-align: center;
}

.rooms-disclaimer-modal a {
  color: var(--white);
  text-decoration: underline;
}

.rooms-disclaimer-modal a:hover {
  opacity: 0.85;
}

.rooms-disclaimer-close {
  position: absolute;
  top: 10px;
  right: 16px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.rooms-disclaimer-close:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .rooms-disclaimer-overlay {
    padding: 130px 12px 12px;
  }

  .rooms-disclaimer-modal {
    width: 100%;
    margin: 12px auto;
    padding: 24px 16px 20px;
    border-radius: 18px;
    max-height: calc(100dvh - 24px);
  }

  .rooms-disclaimer-modal h2 {
    font-size: 1.7rem;
    line-height: 1.05;
  }

  .rooms-disclaimer-modal p {
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .rooms-disclaimer-close {
    top: 8px;
    right: 12px;
    font-size: 1.9rem;
  }
}

/* Make Space Bewteen Room Cards and Facilities Slider */
@media (max-width: 768px) {
    .roomsSwiper,
    .rooms-grid {
      margin-bottom: 70px;
    }
  }

 /* Hide Scroll-Down Nav-Bar for Mobie */ 
 @media (max-width: 768px) {
    #navbar {
      opacity: 1 !important;
      transform: translateY(0) !important;
      pointer-events: auto !important;
      display: block !important;
    }
  
    #navbar.scrolled {
      opacity: 1 !important;
      transform: translateY(0) !important;
      pointer-events: auto !important;
    }
  }

  @media (max-width: 768px) {
    #navbar {
      opacity: 1 !important;
      transform: translateY(0) !important;
      pointer-events: auto !important;
    }
  
    #navbar.scrolled {
      opacity: 1 !important;
      transform: translateY(0) !important;
      pointer-events: auto !important;
    }
  }

  /* Additional Navbar Styling */
  @media (max-width: 768px) {
    /* Mobile navbar background and text */
    #navbar,
    #navbar.scrolled {
      background: rgba(255, 101, 1, 0.8) !important;
      box-shadow: none !important;
    }
  
    /* Hamburger lines */
    #navbar .nav-toggle span {
      background-color: #000 !important;
      box-shadow: none !important;
    }
  
    /* Menu links */
    #navbar .nav-menu a {
      color: #000 !important;
      text-shadow: none !important;
    }
  
    /* Current page highlight */
    #navbar .nav-menu a.active {
      color: var(--orange) !important;
      font-weight: 700 !important;
    }
  
    #navbar .nav-menu a.active::after {
      width: 100% !important;
      background-color: var(--orange) !important;
    }
  }

  @media (max-width: 768px) {
    #navbar .nav-menu a.active,
    #navbar .nav-menu li.active > a {
      color: #000 !important;
      background: rgba(255, 101, 1, 0.25) !important;
      border-radius: 8px;
      font-weight: 700 !important;
      text-shadow: none !important;
    }
  
    #navbar .nav-menu a.active::after,
    #navbar .nav-menu li.active > a::after {
      display: none !important;
    }
  }