/* Tipografías base
- Títulos y navegación: DentonVariable
- Textos secundarios: Montserrat (100-400)
- Cuerpo del texto: Montserrat 400
- Botones: Montserrat 400/500
*/

@font-face {
    font-family: 'DentonVariable';
    src: url('../assets/fonts/DentonVariableTest-VF.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Transiciones suaves al hacer scroll */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Transiciones suaves para elementos que aparecen desde diferentes direcciones */
.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    height: 100%;
    margin: 0;
    padding: 0;
    /* Variable CSS para altura real del viewport en móvil */
    --vh: 1vh;
    --full-vh: calc(var(--vh, 1vh) * 100);
    /* Prevenir pull-to-refresh en iOS/Safari/Google App */
    overscroll-behavior: none;
    overscroll-behavior-y: none;
    overscroll-behavior-x: none;
    overflow: hidden;
    position: fixed;
    width: 100%;
    touch-action: none;
    -webkit-overflow-scrolling: auto;
}

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

body {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    /* line-height: 1.8; */
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    /* Prevenir pull-to-refresh en iOS/Safari/Google App */
    overscroll-behavior: none;
    overscroll-behavior-y: none;
    overscroll-behavior-x: none;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    touch-action: none;
    -webkit-overflow-scrolling: auto;
}

/* Fullpage Scroll - Controlado 100% por JavaScript */
body.fullpage-scroll {
    overflow: hidden; /* Prevenir scroll nativo */
    height: 100vh;
    height: var(--full-vh, 100vh);
    /* Prevenir pull-to-refresh en iOS/Safari/Google App */
    overscroll-behavior: none;
    overscroll-behavior-y: none;
    overscroll-behavior-x: none;
    -webkit-overflow-scrolling: auto; /* Desactivar momentum scroll en iOS */
    touch-action: none; /* Bloquear gestos táctiles nativos */
    -webkit-touch-callout: none; /* Prevenir callout en WebViews */
    -webkit-user-select: none; /* Prevenir selección en WebViews */
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
}

body.fullpage-scroll main {
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
    /* Prevenir pull-to-refresh en iOS/Safari */
    overscroll-behavior: none;
    overscroll-behavior-y: none;
    touch-action: none; /* Bloquear gestos táctiles nativos */
    position: relative;
    width: 100%;
}

/* Page Loader - Spinner minimalista de lujo */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s ease-out;
    visibility: visible;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    position: relative;
    width: 80px;
    height: 80px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-top-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: spin 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: 0s;
    border-top-color: rgba(255, 255, 255, 0.95);
    border-width: 1.5px;
}

.spinner-ring:nth-child(2) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    animation-delay: -0.3s;
    border-top-color: rgba(255, 255, 255, 0.65);
    animation-duration: 1.2s;
    border-width: 1.5px;
}

.spinner-ring:nth-child(3) {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    animation-delay: -0.6s;
    border-top-color: rgba(255, 255, 255, 0.45);
    animation-duration: 1s;
    border-width: 1.5px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

a {
    color: #fff;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Header */
header {
    position: fixed;
    top: 20px; /* Bajamos el header ligeramente */
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    z-index: 1000;
    background: transparent; /* Eliminamos el fondo gradiente */
}

.header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.header-logo .logo-img {
    width: 180px;
    height: auto;
}

.header-book a {
    font-family: 'Libre Baskerville', serif;
    font-size: 16px;
    letter-spacing: 0.5px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.header-book a:hover {
    text-decoration: underline;
}

/* Hamburger menu */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 3px; /* Líneas muy pegadas */
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    width: 35px; /* Un poco más ancho */
    height: 1px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Side Panel */
.side-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 35%;
    height: 100vh;
    height: var(--full-vh, 100vh);
    background-color: rgba(0, 0, 0, 0.7); /* Fondo negro transparente */
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 80px; /* Más espacio desde la izquierda */
    padding-top: 120px; /* Espacio desde arriba para comenzar después del hamburger */
}

.side-panel.active {
    transform: translateX(0);
}

.side-panel .close-side-panel {
    position: absolute;
    top: 45px; /* Ajustado para alinear con el logo/header */
    right: 80px; /* Alineado a la derecha */
    background: transparent;
    border: none;
    color: #fff;
    font-size: 50px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.side-panel .close-side-panel:hover {
    opacity: 0.7;
}

.side-panel .close-side-panel span {
    display: block;
    transform: translateY(-3px); /* Ajuste fino para centrar visualmente el X */
}

@media (max-width: 768px) {
    .side-panel .close-side-panel {
        right: 30px;
        top: 35px;
        font-size: 45px;
    }
}

.side-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-nav ul li {
    margin: 0; /* Sin margen para control preciso del espaciado */
    padding: 0;
}

.side-nav ul li:not(:first-child) {
    margin-top: 25px; /* Espacio vertical reducido entre opciones */
}

.side-nav ul li a {
    font-family: 'Libre Baskerville', serif;
    font-size: 18px; /* Tamaño reducido para que quepan todas las opciones */
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    display: inline-block;
    padding-bottom: 5px;
    font-weight: 400;
}

.side-nav ul li a:hover,
.side-nav ul li a.active {
    border-bottom: 2px solid #fff;
}

/* Language Selector */
.language-selector {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-selector .lang-option {
    font-family: 'Libre Baskerville', serif;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 400;
    opacity: 0.6;
}

.language-selector .lang-option:hover {
    opacity: 1;
}

.language-selector .lang-option.active {
    color: #fff;
    opacity: 1;
    font-weight: 400;
}

.language-selector .lang-separator {
    font-family: 'Libre Baskerville', serif;
    font-size: 18px;
    color: #fff;
    opacity: 0.6;
}

/* Mobile Responsiveness for Header and Side Panel */
@media (max-width: 768px) {
    header {
        padding: 20px;
        top: 10px; /* Bajamos el header ligeramente en móvil */
        background: transparent !important; /* Asegurar que no tenga fondo en móvil */
    }

    .header-logo .logo-img {
        width: 80px;
    }

    .header-book a {
        font-size: 13px;
    }

    .side-panel {
        width: 100%;
        padding-left: 30px;
        padding-top: 100px;
    }

    .side-nav ul li:not(:first-child) {
        margin-top: 18px;
    }

    .side-nav ul li a {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .language-selector {
        margin-top: 30px;
    }

    .language-selector .lang-option,
    .language-selector .lang-separator {
        font-size: 14px;
        letter-spacing: 1px;
    }
}


/* Sections */
section {
    height: 100vh;
    height: var(--full-vh, 100vh); /* Usar variable CSS para altura real del viewport */
    width: 100vw;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden; /* Hide horizontal overflow for slider */
    flex-shrink: 0; /* Asegurar que las secciones no se compriman */
    min-height: var(--full-vh, 100vh); /* Asegurar altura mínima */
}

/* ============================================
   HERO VIDEO CONTAINER - Video fijo de fondo
   ============================================ */
.hero-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: var(--full-vh, 100vh);
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

/* Video de fondo en la sección hero */
.hero-background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
}

/* Backdrop base (HERO1) - transparencia ~70% */
.hero-backdrop-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
    opacity: 1;
    transition: opacity 0.6s ease-in-out;
}


#hero {
    position: relative;
    overflow: hidden;
    height: 100vh;
    height: var(--full-vh, 100vh);
    width: 100vw;
    padding: 0;
    margin: 0;
    z-index: 1;
    background: transparent;
}

/* ============================================
   HERO SCREEN - Pantalla única del HERO
   ============================================ */
.hero-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    z-index: 2;
}

.hero-screen.active {
    opacity: 1;
    visibility: visible;
}

/* HERO Screen 1 */
.hero-screen-1 {
    z-index: 3;
}

/* ============================================
   HERO LOGOS SECTION - Nueva sección separada
   ============================================ */
#hero-logos {
    background-image: url('../assets/images/theessence.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 100px;
}

#hero-logos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.5) 25%,
        rgba(0, 0, 0, 0.25) 50%,
        rgba(0, 0, 0, 0.15) 75%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 1;
}

.hero-logos-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    /* Anular el transform de fade-in-on-scroll para evitar movimiento durante transición */
    transform: none !important;
}

.hero-logos-content.visible {
    opacity: 1;
    visibility: visible;
    transform: none !important;
}

.proudly-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 12px;
    font-weight: 100;
    color: #fff;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
    text-transform: none;
}

.hero-logos-img {
    max-width: 800px;
    width: 90%;
    height: auto;
    opacity: 0.95;
}

#hero-logos .scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

#hero-logos .scroll-down:hover {
    opacity: 1;
}

#hero-logos .scroll-down img {
    width: 30px;
    height: auto;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive styles para hero-logos section */
@media (max-width: 768px) {
    #hero-logos {
        padding-bottom: 80px;
    }

    .hero-logos-content {
        padding: 0 20px;
    }

    .proudly-text {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-logos-img {
        max-width: 100%;
        width: 95%;
    }

    #hero-logos .scroll-down {
        bottom: 20px;
    }

    #hero-logos .scroll-down img {
        width: 25px;
    }
}

#suites {
    padding: 0; /* Remove padding to allow full-width slider */
    align-items: initial; /* Override default alignment */
    justify-content: flex-start; /* Align slider to the left */
    background: #000; /* Fondo negro por defecto */
}

#the-alexander-experience {
    padding: 0; /* Remove padding to allow full-width slider */
    align-items: initial; /* Override default alignment */
    justify-content: flex-start; /* Align slider to the left */
    background: #000; /* Fondo negro por defecto */
}

#spaces {
    padding: 0; /* Remove padding to allow full-width slider */
    align-items: initial; /* Override default alignment */
    justify-content: flex-start; /* Align slider to the left */
    background: #000; /* Fondo negro por defecto */
}

#art-and-architecture {
    padding: 0; /* Remove padding to allow full-width slider */
    align-items: initial; /* Override default alignment */
    justify-content: flex-start; /* Align slider to the left */
    background: #000; /* Fondo negro por defecto */
}

#the-gallery {
    background-color: #000;
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 0 80px 0;
    overflow-x: hidden;
    height: 100vh;
    height: var(--full-vh, 100vh);
    align-items: flex-start;
    overflow-y: hidden;
    /* Gallery carousel sizing (3 visibles: 1 central + 2 laterales) */
    --gallery-slide-w: 280px;
    --gallery-active-w: 450px;
    --gallery-gap: 30px;
    --gallery-viewport-w: calc(var(--gallery-active-w) + (2 * var(--gallery-slide-w)) + (2 * var(--gallery-gap)));
}

/* Suites Slider */
.suites-slider-container {
    display: flex;
    width: 500%; /* 100% per slide (5 slides) */
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0; /* Prevent the container from shrinking inside its flex parent */
    touch-action: pan-y pinch-zoom; /* Permitir scroll vertical y zoom, controlar el horizontal con JS */
}

/* Suites Slider - 6 slides */
#suites .suites-slider-container {
    width: 600%; /* 100% per slide (6 slides) */
}

/* The Alexander Experience Slider - 5 slides */
#the-alexander-experience .suites-slider-container {
    width: 500%; /* 100% per slide (5 slides) */
}

/* Spaces Slider - 5 slides */
#spaces .suites-slider-container {
    width: 500%; /* 100% per slide (5 slides) */
}

/* Art and Architecture Slider - 4 slides */
#art-and-architecture .suites-slider-container {
    width: 400%; /* 100% per slide (4 slides) */
}

.suite-slide {
    flex: 0 0 20%; /* Each slide takes up 20% of the container's width (5 slides) */
    height: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
}

/* Suites slides - 6 slides */
#suites .suite-slide {
    flex: 0 0 16.666%; /* Each slide takes up 16.666% of the container's width (6 slides) */
}

/* The Alexander Experience slides - 5 slides */
#the-alexander-experience .suite-slide {
    flex: 0 0 20%; /* Each slide takes up 20% of the container's width (5 slides) */
}

/* Spaces slides - 5 slides */
#spaces .suite-slide {
    flex: 0 0 20%; /* Each slide takes up 20% of the container's width (5 slides) */
}

/* Art and Architecture slides - 4 slides */
#art-and-architecture .suite-slide {
    flex: 0 0 25%; /* Each slide takes up 25% of the container's width (4 slides) */
}

/* Slide 1: Imagen de fondo con texto centrado */
.slide-full-bg {
    background-image: url('../assets/images/optimized2/oursuites_desktop.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    justify-content: center;
    align-items: center;
}

/* The Alexander Experience - Primer slide con imagen de fondo */
#the-alexander-experience .slide-full-bg {
    background-image: url('../assets/images/optimized2/the_alexander_exp_new_desktop.webp');
}

/* Bajar el texto del primer slide de todas las secciones en desktop - Posición vertical unificada */
#the-alexander-experience .slide-full-bg:first-child .centered-content,
#suites .slide-full-bg:first-child .centered-content,
#spaces .slide-full-bg:first-child .centered-content,
#art-and-architecture .slide-full-bg:first-child .centered-content {
    margin-top: 15%;
}

/* The Alexander Experience - Slides con contenido a la izquierda */
#the-alexander-experience .slide-left-content {
    justify-content: flex-start;
    align-items: flex-start; /* Alineado arriba en lugar de centrado verticalmente */
    padding-left: 50px;
    padding-top: 150px; /* Espacio desde arriba */
}

/* Location & Exclusivity - Imagen de fondo */
#the-alexander-experience .slide-location-exclusivity {
    background-image: url('../assets/images/locationexclusivity.webp');
}

/* Personal Journey Curation - Imagen de fondo */
#the-alexander-experience .slide-personal-journey {
    background-image: url('../assets/images/personaljourney.webp');
}

/* Immersive Experiences - Imagen de fondo */
#the-alexander-experience .slide-immersive-experiences {
    background-image: url('../assets/images/inmersiveexperience.webp');
}

/* Aesthetic Mastery - Imagen de fondo */
#the-alexander-experience .slide-aesthetic-mastery {
    background-image: url('../assets/images/aestheticmastery.webp');
}

/* Spaces - Slides con contenido a la izquierda (posición diferente) */
#spaces .slide-left-content-behind {
    justify-content: flex-start;
    align-items: flex-start; /* Alineado arriba en lugar de centrado verticalmente */
    padding-left: 80px; /* Más padding que the-alexander-experience para cambiar posición */
    padding-top: 150px; /* Espacio desde arriba */
}

/* Position the button in Spaces slides */
#spaces .suite-slide > .btn {
    position: absolute;
    left: 80px;
    bottom: 80px;
    z-index: 10;
    font-size: 12px;
    padding: 10px 15px;
    background: transparent;
}

#spaces .suite-slide > .btn:hover {
    background-color: #fff;
    color: #000;
}

/* Spaces - Primer slide con imagen de fondo */
#spaces .slide-spaces {
    background-image: url('../assets/images/optimized/behindthealexander_desktop.webp');
}

/* The Gym - Imagen de fondo */
#spaces .slide-the-gym {
    background-image: url('../assets/images/optimized2/the_gym_desktop.webp');
    background-position: top;
}

/* The Spa - Imagen de fondo */
#spaces .slide-the-spa {
    background-image: url('../assets/images/optimized2/the_spa_desktop.webp');
}

/* Garden Terrace - Imagen de fondo */
#spaces .slide-garden-terrace {
    background-image: url('../assets/images/optimized2/the_garden_terrace_desktop.webp');
}

/* The Salon - Imagen de fondo */
#spaces .slide-the-salon {
    background-image: url('../assets/images/optimized2/the-salon_desktop.webp');
}

/* Art and Architecture - Primer slide con imagen de fondo */
#art-and-architecture .slide-art-and-architecture {
    background-image: url('../assets/images/optimized2/art_and_architecture_desktop.webp');
}

/* Architectural Vision - Imagen de fondo */
#art-and-architecture .slide-architectural-vision {
    background-image: url('../assets/images/optimized2/architectural_vision_new_desktop.webp');
    background-position: top;
}

/* A Statement in Design - Imagen de fondo */
#art-and-architecture .slide-statement-in-design {
    background-image: url('../assets/images/architectural_vision.webp');
}

/* The Art Collection - Imagen de fondo */
#art-and-architecture .slide-art-collection {
    background-image: url('../assets/images/the_art_collection.webp');
}

/* Art and Architecture - Slides con contenido a la izquierda (posición diferente) */
#art-and-architecture .slide-left-content-behind {
    justify-content: flex-start;
    align-items: flex-start; /* Alineado arriba en lugar de centrado verticalmente */
    padding-left: 80px; /* Más padding que the-alexander-experience para cambiar posición */
    padding-top: 150px; /* Espacio desde arriba */
}

/* Mostrar solo versión desktop por defecto para Architectural Vision */
.architectural-vision-description-mobile {
    display: none;
}

.architectural-vision-description-desktop {
    display: block;
}

/* Mostrar solo versión desktop por defecto para Statement in Design */
.statement-in-design-description-mobile {
    display: none;
}

.statement-in-design-description-desktop {
    display: block;
}

/* Mostrar solo versión desktop por defecto para Art Collection */
.art-collection-description-mobile {
    display: none;
}

.art-collection-description-desktop {
    display: block;
}

.title-slide-the-alexander-experience {
    margin-bottom: 30px;
}

/* Backdrop desactivado para slides de the-alexander-experience */
/* .slide-full-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
} */

.centered-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 50px;
}

.centered-content h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 64px;
    font-weight: 400;
    /* margin-bottom: 30px; */
    text-transform: uppercase;
    letter-spacing: 4px;
}

.centered-content p {
    font-family: 'Libre Baskerville', serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

/* Mostrar solo versión desktop por defecto */
.essence-description-mobile {
    display: none;
}

.essence-description-desktop {
    display: block;
}

/* Left Content Styles */
.left-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 600px;
    padding: 0;
}

.left-content h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.left-content .description {
    font-family: 'Libre Baskerville', serif;
    font-size: 16px;
    font-weight: 400;
    /* line-height: 1.8; */
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* Left Content Styles for Behind the Alexander - posición diferente */
.left-content-behind {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 600px;
    padding: 0;
}

.left-content-behind h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.left-content-behind .description {
    font-family: 'Libre Baskerville', serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* Mostrar solo versión desktop por defecto para The Gym */
.the-gym-description-mobile {
    display: none;
}

.the-gym-description-desktop {
    display: block;
}

/* Mostrar solo versión desktop por defecto para The Spa */
.the-spa-description-mobile {
    display: none;
}

.the-spa-description-desktop {
    display: block;
}

/* Mostrar solo versión desktop por defecto para Garden Terrace */
.garden-terrace-description-mobile {
    display: none;
}

.garden-terrace-description-desktop {
    display: block;
}

/* Mostrar solo versión desktop por defecto para The Salon */
.the-salon-description-mobile {
    display: none;
}

.the-salon-description-desktop {
    display: block;
}

/* Slides 2-4: Layout dividido */
.slide-split {
    display: flex;
    flex-direction: row;
}

.split-left {
    flex: 0 0 40%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.split-right {
    flex: 0 0 60%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.split-right .mobile-img {
    display: none;
}

.suite-text-content {
    max-width: 500px;
    width: 100%;
}

.suite-text-content h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 56px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.suite-text-content h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 60px;
    text-transform: capitalize;
}

.suite-text-content .subtitle {
    font-family: 'Libre Baskerville', serif;
    font-size: 18px;
    font-weight: 100;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.suite-text-content .description {
    font-family: 'Libre Baskerville', serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.suite-text-content .btn {
    display: inline-block;
    border: 1px solid #fff;
    padding: 10px 10px;
    font-family: 'Libre Baskerville', serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: transparent;
    color: #fff;
    border-radius: 999px;
}

.suite-text-content .btn:hover {
    background-color: #fff;
    color: #000;
}

/* Experience List Styles */
.experience-list {
    list-style: none;
    margin-bottom: 40px;
    padding: 0;
}

.experience-list li {
    font-family: 'Libre Baskerville', serif;
    font-size: 16px;
    font-weight: 400;
    /* line-height: 2; */
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

/* Hero Content */
.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-head-image {
    width: 110px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 18px;
}

.circular-logo-placeholder {
    width: 150px;
    height: 150px;
    border: 1px solid #fff;
    border-radius: 50%;
    margin: 0 auto 30px;
    /* User will add the logo image here as a background or img tag */
}

.hero-content h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding-bottom: 20px;
    text-align: center;
}

.hero-content p {
    font-family: 'Libre Baskerville', serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.5;
    text-align: center;
}

/* Mostrar solo versión desktop por defecto */
.hero-description-mobile {
    display: none;
}

.hero-description-desktop {
    display: block;
}

.btn {
    display: inline-block;
    border: 1px solid #fff;
    padding: 10px 10px;
    font-family: 'Libre Baskerville', serif;
    font-size: 18px;
    font-weight: 400;
    /* letter-spacing: 2px; */
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 999px;
}

#hero .btn {
    position: absolute;
    left: 50px;
    bottom: 30px;
    z-index: 2;
    border-radius: 999px; /* Pill-shaped button */
    padding: 10px 15px;
    font-size: 12px;
    font-family: 'Libre Baskerville', serif; /* Serif font like la imagen */
    background: transparent; /* Transparent background */
}

#hero .btn:hover {
    background-color: #fff !important; /* White background on hover */
    color: #000 !important; /* Black text on hover */
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

/* Scroll down dentro de hero-screens */
.hero-screen .scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-down img {
    width: 15px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.scroll-down:hover {
    transform: translateX(-50%) translateY(5px);
}

.scroll-down:hover img {
    transform: scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}


/* Suites Content */
.suites-content {
    max-width: 600px;
}

.suites-content h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 23.5px;
    font-weight: 700;
    letter-spacing: 0.1px;
    /* margin-bottom: 20px; */
    text-transform: uppercase;
}

.suites-content p {
    font-family: 'Libre Baskerville', serif;
    font-size: 16px;
    font-weight: 400;
}

/* Horizontal Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1001;
}

.dots-container {
    display: flex;
    align-items: center;
}

.slider-dots span {
    width: 8px;
    height: 8px;
    margin: 0 5px;
    border-radius: 50%;
    border: 1px solid #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots span.active {
    background-color: #fff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

/* Estilos para las flechas del slider */
.slider-arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.2s ease;
    color: #888;
}

.slider-arrow:hover {
    opacity: 1;
    transform: scale(1.1);
}

.slider-arrow:active {
    transform: scale(0.95);
}

.slider-arrow svg {
    width: 18px;
    height: 18px;
}

/* Flecha izquierda - gris por defecto */
.slider-arrow-left {
    color: #888;
}

.slider-arrow-left.active {
    color: #fff;
}

/* Flecha derecha - blanca por defecto */
.slider-arrow-right {
    color: #fff;
}

.slider-arrow-right.disabled {
    color: #888;
    cursor: not-allowed;
    opacity: 0.5;
}

.slider-arrow-left.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}


/* Caviar Bar Section */
/* Caviar carousel sizing (3 visibles: 1 central + 2 laterales) */
#caviar-bar {
    --caviar-slide-w: 280px;
    --caviar-active-w: 450px;
    --caviar-gap: 30px;
    --caviar-viewport-w: calc(var(--caviar-active-w) + (2 * var(--caviar-slide-w)) + (2 * var(--caviar-gap)));
}

.caviar-bar-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
    flex: 1;
    justify-content: flex-start;
    gap: 0;
    overflow: visible;
    max-height: none;
}

#caviar-bar .section-title {
    margin-bottom: 10px;
}

.section-title {
    margin-bottom: 40px;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
    width: 100%;
    flex-shrink: 0;
}

.logo-placeholder-small {
    width: 60px;
    height: 60px;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-bottom: 20px;
    background-color: transparent;
}

.caviar-logo-img {
    width: 40px;
    height: auto;
    /* margin-bottom: 20px; */
    display: block;
}

.section-title h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

.caviar-carousel {
    position: relative;
    width: 100%;
    max-width: var(--caviar-viewport-w);
    margin: 0 auto;
    margin-bottom: 0;
    overflow: hidden;
    background-color: transparent;
    padding: 0;
    max-height: none;
    display: flex;
    align-items: stretch;
    flex: 1;
    min-height: 400px;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: stretch;
    height: 100%;
    width: max-content;
    overflow: visible;
    will-change: transform;
}

#caviar-bar {
    background-color: #000;
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 0 40px 0;
    overflow-x: hidden;
    height: 100vh;
    height: var(--full-vh, 100vh);
    align-items: center;
    overflow-y: visible;
}

.carousel-slide {
    flex: 0 0 var(--caviar-slide-w);
    padding: 0;
    margin-right: var(--caviar-gap);
    box-sizing: border-box;
    transform: scale(0.65);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.3;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.carousel-slide.active {
    flex: 0 0 var(--caviar-active-w);
    transform: scale(1);
    opacity: 1;
    z-index: 10;
}

/* Gallery carousel slides - usar variables de gallery */
#the-gallery .carousel-slide {
    flex: 0 0 var(--gallery-slide-w);
    margin-right: var(--gallery-gap);
}

#the-gallery .carousel-slide.active {
    flex: 0 0 var(--gallery-active-w);
}

/* Los slides inmediatamente al lado del activo deben tener un poco más de opacidad que el resto */
.carousel-slide.active + .carousel-slide,
.carousel-slide:has(+ .carousel-slide.active) {
    opacity: 0.7;
    transform: scale(0.65);
}

.carousel-slide img {
    width: 100%;
    height: calc(100vh - 380px);
    max-height: 480px;
    border-radius: 50px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.carousel-slide.active img {
    border-radius: 30px;
}

/* Posicionamiento específico para cada imagen del carrusel Caviar Bar */
/* Slide 1: Negroni Sbagliato */
.carousel-slide:nth-child(1) img {
    object-position: center bottom;
}

/* Slide 2: Martini */
.carousel-slide:nth-child(2) img {
    object-position: center center;
}

/* Slide 3: Burrata */
.carousel-slide:nth-child(3) img {
    object-position: center 40%;
}

/* Slide 4: Salmon */
.carousel-slide:nth-child(4) img {
    object-position: center 80%;
}

/* Slide 5: Chef Anna Sophia */
.carousel-slide:nth-child(5) img {
    object-position: center 70%; /* Ajustado a top para enfocar el rostro */
}

#caviar-bar .caviar-btn {
    position: absolute;
    left: 50px;
    bottom: 30px;
    margin: 0;
    z-index: 10;
    border-radius: 999px; /* Pill-shaped button */
    padding: 10px 10px; /* Minimal vertical padding */
    font-family: 'Libre Baskerville', serif; /* Serif font similar a la imagen */
    background: transparent; /* Transparent background */
    border: 1px solid #fff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing:0.1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

#caviar-bar .caviar-btn:hover {
    background-color: #fff !important; /* White background on hover */
    color: #000 !important; /* Black text on hover */
}

#caviar-bar .caviar-bar-content {
    align-items: center;
}

/* Descripción fija del Caviar Bar */
.caviar-bar-description {
    text-align: center;
    max-width: 900px;
    margin: 15px auto 0 auto;
    padding: 0 40px;
    flex-shrink: 0;
}

.caviar-bar-description p {
    font-family: 'Libre Baskerville', serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    color: #b8b8b8;
    letter-spacing: 0.5px;
    margin: 0;
}

.caviar-bar-description p br {
    display: none;
}

/* Forzar altura de imágenes del Caviar Bar con límite máximo */
#caviar-bar .carousel-slide img {
    height: 100% !important;
    max-height: 420px !important;
    min-height: 0;
    object-fit: cover;
}

/* Ocultar las flechas antiguas del centro */
#caviar-bar .slider-arrows {
    display: none;
}

/* Navegación del carrusel (flechas y puntos) debajo del carrusel */
.carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 20px;
    z-index: 1001;
    width: 100%;
    flex-shrink: 0;
}

.carousel-arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.2s ease;
    color: #888;
}

.carousel-arrow:hover {
    opacity: 1;
    transform: scale(1.1);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

.carousel-arrow svg {
    width: 18px;
    height: 18px;
}

/* Flecha izquierda - gris por defecto */
.carousel-arrow-left {
    color: #888;
}

.carousel-arrow-left.active {
    color: #fff;
}

/* Flecha derecha - blanca por defecto */
.carousel-arrow-right {
    color: #fff;
}

.carousel-arrow-right.disabled {
    color: #888;
    cursor: not-allowed;
    opacity: 0.5;
}

.carousel-arrow-left.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

/* Contenedor de puntos del carrusel */
.carousel-dots-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}

.carousel-dot.active {
    background-color: #fff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

/* Gallery Section */
.gallery-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
    flex: 1;
    justify-content: flex-start;
    gap: 0;
    overflow: hidden;
    max-height: calc(100vh - 180px);
}

.gallery-logo-img {
    width: 40px;
    height: auto;
    display: block;
}

.gallery-carousel {
    position: relative;
    width: 100%;
    max-width: var(--gallery-viewport-w);
    margin: 0 auto;
    margin-bottom: 0;
    overflow: hidden;
    background-color: transparent;
    flex-shrink: 1;
    padding: 20px 0;
    max-height: calc(100vh - 250px);
    display: flex;
    align-items: center;
    flex: 1;
}

#the-gallery {
    background-color: #000;
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 0 60px 0;
    overflow-x: hidden;
    height: 100vh;
    height: var(--full-vh, 100vh);
    align-items: flex-start;
    overflow-y: hidden;
}

/* Ocultar las flechas antiguas del centro */
#the-gallery .slider-arrows {
    display: none;
}

/* Press & Media Section */
#press-and-media {
    background-color: #000;
    flex-direction: column;
    justify-content: flex-start;
    padding: 60px 0 20px 0;
    overflow-x: hidden;
    min-height: 100vh;
    min-height: var(--full-vh, 100vh);
    height: 100vh;
    height: var(--full-vh, 100vh);
    align-items: center;
    overflow-y: hidden;
    display: flex;
    position: relative;
}

.press-media-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 30px 20px 30px;
    justify-content: flex-start;
    gap: 15px;
    box-sizing: border-box;
    height: calc(100vh - 80px);
}

.press-media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    height: calc(100vh - 160px);
}

.press-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #000;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background-color: #fff;
    overflow: hidden;
    height: 100%;
    border-radius: 8px;
}

.press-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.press-card-image {
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
    background-color: #1a1a1a;
    position: relative;
    border-radius: 8px 8px 0 0;
}

.press-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.press-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 0 0 120px;
    min-height: 120px;
    padding: 12px 15px;
    background-color: #fff;
    border-radius: 0 0 8px 8px;
    box-sizing: border-box;
    overflow: hidden;
}

.press-card-logo {
    width: 100%;
    height: 35px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.press-card-logo img {
    max-width: 130px;
    max-height: 32px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.press-card:hover .press-card-logo img {
    opacity: 0.8;
}

.press-card-description {
    font-family: 'Libre Baskerville', serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
    color: #000;
    margin: 0;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.press-card:hover .press-card-description {
    color: #333;
}

/* Tablet Responsiveness for Press & Media */
@media (max-width: 1024px) and (min-width: 769px) {
    #press-and-media {
        padding: 70px 0 30px 0;
        min-height: 100vh;
        min-height: var(--full-vh, 100vh);
        height: 100vh;
        height: var(--full-vh, 100vh);
        overflow-y: hidden;
    }

    .press-media-content {
        padding: 0 30px 20px 30px;
        gap: 20px;
        box-sizing: border-box;
        height: calc(var(--full-vh, 100vh) - 100px);
    }

    .press-media-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 15px;
        align-items: stretch;
        max-height: calc(var(--full-vh, 100vh) - 170px);
    }

    .press-card-image {
        aspect-ratio: 16 / 9;
    }

    .press-card-content {
        padding: 12px 14px;
    }

    .press-card-logo {
        height: 25px;
    }

    .press-card-logo img {
        max-height: 24px;
        max-width: 90px;
    }

    .press-card-description {
        font-size: 11px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
}

/* Mobile Responsiveness for Press & Media */
@media (max-width: 768px) {
    #press-and-media {
        padding: 80px 0 40px 0;
        height: auto;
        min-height: 100vh;
        min-height: var(--full-vh, 100vh);
        overflow-y: auto;
    }

    .press-media-content {
        padding: 0 15px 40px 15px;
        gap: 20px;
        box-sizing: border-box;
        height: auto;
    }

    .press-media-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 12px;
        max-width: 100%;
        align-items: stretch;
        max-height: none;
    }

    .press-card {
        height: auto;
    }

    .press-card-image {
        aspect-ratio: 16 / 10;
    }

    .press-card-content {
        padding: 10px 12px;
    }

    .press-card-logo {
        height: 22px;
    }

    .press-card-logo img {
        max-height: 20px;
        max-width: 80px;
    }

    .press-card-description {
        font-size: 10px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
}

/* Press Fill Form Section */
#press-fill-form {
    background-color: #000;
    padding: 80px 0;
    height: 100vh;
    height: var(--full-vh, 100vh);
    display: flex;
    align-items: center;
    justify-content: center;
}

.press-fill-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    box-sizing: border-box;
}

.press-fill-form-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.press-fill-form-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.press-fill-form-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 1.6;
    margin: 0;
}

.press-fill-form-link {
    font-family: 'Libre Baskerville', serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin-top: auto;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.press-fill-form-link:hover {
    opacity: 0.7;
}

/* Tablet Responsiveness for Press Fill Form */
@media (max-width: 1024px) and (min-width: 769px) {
    #press-fill-form {
        padding: 60px 0;
    }

    .press-fill-form-content {
        gap: 60px;
        padding: 0 40px;
    }

    .press-fill-form-title {
        font-size: 28px;
    }

    .press-fill-form-text {
        font-size: 15px;
    }

    .press-fill-form-link {
        font-size: 17px;
    }
}

/* Mobile Responsiveness for Press Fill Form */
@media (max-width: 768px) {
    #press-fill-form {
        padding: 60px 0;
        height: auto;
        min-height: 100vh;
        min-height: var(--full-vh, 100vh);
    }

    .press-fill-form-content {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 30px;
    }

    .press-fill-form-column {
        gap: 25px;
    }

    .press-fill-form-title {
        font-size: 24px;
    }

    .press-fill-form-text {
        font-size: 14px;
    }

    .press-fill-form-link {
        font-size: 16px;
    }
}

/* Contact Section */
#contact {
    background-color: #000;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    padding: 50px;
    font-family: 'Libre Baskerville', serif;
    font-size: 12px;
    font-weight: 400;
}

.contact-left, .contact-right {
    width: 25%;
}

.contact-center {
    width: 40%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-left {
    text-align: left;
}

.contact-left p, .contact-right p {
    /* margin-bottom: 20px; */
    /* line-height: 1.8; */
}

.contact-address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    /* gap: 6px; */
    margin: 0 0 20px 0;
}

.contact-address .address-line {
    display: block;
}

.contact-left h4 {
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.contact-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-right .social-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-right .social-icons a {
    color: #fff;
    font-size: 18px;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.contact-right .social-icons a svg {
    width: 18px;
    height: 18px;
    display: block;
}

.contact-right .social-icons a:hover {
    opacity: 0.7;
}

.contact-right p {
    margin-bottom: 15px;
    text-align: right;
}

.contact-right .privacy-link {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    transition: opacity 0.3s ease;
}

.contact-right .privacy-link:hover {
    opacity: 0.7;
}

.logo-placeholder-large {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.footer-logo-img {
    width: 200px;
    height: auto;
    max-width: 100%;
}

/* Partner Logos Carousel */
.partner-logos {
    width: 100%;
    margin-top: 30px;
    overflow: hidden; /* Ensure container hides overflow */
}

.partner-carousel {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    /* Mask edges for smooth fade effect */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partner-track {
    display: flex;
    width: max-content; /* Allow track to be as wide as needed */
    gap: 40px; /* Increased gap for better spacing */
    animation: scroll 60s linear infinite; /* Continuous scroll animation - Slower speed */
}

.partner-track:hover {
    animation-play-state: paused; /* Pause on hover for better UX */
}

.partner-slide {
    flex: 0 0 auto; /* Don't shrink or grow */
    width: 120px; /* Fixed width for consistent spacing */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.partner-slide img {
    width: 100%;
    height: auto;
    max-height: 60px; /* Slightly smaller max-height for better proportion */
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-slide img:hover {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Move by half the width (since we duplicated the items) */
        transform: translateX(-50%);
    }
}

/* Partner Dots Navigation - Removed */

.contact-center h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 3px;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

/* Contact Info Groups - Left Column */
.contact-info-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-info-group:last-child {
    margin-bottom: 0;
}

.contact-label {
    font-family: 'Libre Baskerville', serif;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.contact-left a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    line-height: 1.6;
    transition: opacity 0.3s ease;
    display: block;
    opacity: 0.7;
}

.contact-left a:hover {
    opacity: 0.7;
}

/* Footer Carousel - Partner Logos */
.footer-carousel-wrapper {
    width: 300px; /* Exact width for 3 images only */
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 15px;
    position: relative;
}

.footer-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.footer-carousel-track img {
    flex: 0 0 80px;
    width: 80px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-carousel-track img:hover {
    opacity: 1;
}

/* Footer Navigation Dots */
.footer-nav-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 15px 0 25px 0;
}

.footer-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-dot:hover {
    border-color: rgba(255, 255, 255, 0.8);
}

.footer-dot.active {
    background-color: #fff;
    border-color: #fff;
}

/* Namron Logo Link */
.namron-logo-link {
    display: inline-block;
    margin-top: 10px;
    transition: opacity 0.3s ease;
}

.namron-logo-link:hover {
    opacity: 0.7;
}

.namron-logo-link img {
    height: 68px;
    width: auto;
    object-fit: contain;
}

/* Vertical Dots Navigation */
.vertical-nav {
    position: fixed;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: opacity 0.3s ease-in-out;
}

.vertical-nav a {
    display: block;
    width: 12px;
    height: 12px;
    margin: 8px 0;
    background-color: rgba(255, 255, 255, 0.5); /* Inactive dot */
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.vertical-nav a.active {
    background-color: transparent;
    border: 1px solid #fff; /* Outer circle for active dot */
    width: 14px; /* Slightly larger */
    height: 14px;
    margin: 7px 0; /* Adjust margin to keep spacing consistent */
}

.vertical-nav a.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background-color: #fff; /* Inner circle for active dot */
    border-radius: 50%;
}


/* Chat Icon */
.chat-icon {
    position: fixed;
    bottom: 30px;
    right: 50px;
    z-index: 1000;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out;
}

.chat-icon:hover {
    opacity: 0.7;
}

.chat-icon img {
    width: 60%;
    transition: opacity 0.3s ease-in-out;
}

/* Large Desktop Responsiveness */
@media (min-width: 1400px) {
    #caviar-bar {
        --caviar-slide-w: 320px;
        --caviar-active-w: 480px;
        --caviar-gap: 30px;
    }

    .caviar-bar-content {
        max-width: 100%;
    }

    .caviar-carousel {
        max-width: var(--caviar-viewport-w);
    }

    .carousel-slide {
        flex: 0 0 var(--caviar-slide-w);
    }

    .carousel-slide.active {
        flex: 0 0 var(--caviar-active-w);
    }

    .carousel-slide img {
        max-height: 75vh;
        height: calc(100vh - 220px);
        border-radius: 50px;
    }
    
    /* Ensure Caviar Bar images fill the flex container */
    #caviar-bar .carousel-slide img {
        height: 100% !important;
        max-height: 420px !important;
    }
    
    .carousel-slide.active img {
        border-radius: 30px;
    }

    #the-gallery {
        --gallery-slide-w: 320px;
        --gallery-active-w: 480px;
        --gallery-gap: 30px;
    }

    .gallery-content {
        max-width: 100%;
    }

    .gallery-carousel {
        max-width: var(--gallery-viewport-w);
    }

    #the-gallery .carousel-slide {
        flex: 0 0 var(--gallery-slide-w);
    }

    #the-gallery .carousel-slide.active {
        flex: 0 0 var(--gallery-active-w);
    }

    #the-gallery .carousel-slide img {
        max-height: 600px;
        height: calc(100vh - 300px);
    }
}

@media (min-width: 1920px) {
    #caviar-bar {
        --caviar-slide-w: 350px;
        --caviar-active-w: 520px;
        --caviar-gap: 30px;
    }

    .caviar-bar-content {
        max-width: 100%;
    }

    .caviar-carousel {
        max-width: var(--caviar-viewport-w);
    }

    .carousel-slide {
        flex: 0 0 var(--caviar-slide-w);
    }

    .carousel-slide.active {
        flex: 0 0 var(--caviar-active-w);
    }

    .carousel-slide img {
        max-height: 80vh;
        height: calc(100vh - 220px);
        border-radius: 50px;
    }
    
    /* Ensure Caviar Bar images fill the flex container */
    #caviar-bar .carousel-slide img {
        height: 100% !important;
        max-height: 420px !important;
    }
    
    .carousel-slide.active img {
        border-radius: 30px;
    }

    #the-gallery {
        --gallery-slide-w: 350px;
        --gallery-active-w: 520px;
        --gallery-gap: 30px;
    }

    .gallery-content {
        max-width: 100%;
    }

    .gallery-carousel {
        max-width: var(--gallery-viewport-w);
    }

    #the-gallery .carousel-slide {
        flex: 0 0 var(--gallery-slide-w);
    }

    #the-gallery .carousel-slide.active {
        flex: 0 0 var(--gallery-active-w);
    }

    #the-gallery .carousel-slide img {
        max-height: 700px;
        height: calc(100vh - 280px);
    }
}

/* Medium Desktop Responsiveness - Between tablet and large desktop */
@media (min-width: 1025px) and (max-width: 1399px) {
    #caviar-bar {
        --caviar-slide-w: 260px;
        --caviar-active-w: 380px;
        --caviar-gap: 30px;
    }

    /* Medium Desktop Responsiveness */
    .caviar-bar-content {
        padding: 0 40px;
        max-height: none; /* Removed constraints */
        max-width: 100%;
    }

    .caviar-carousel {
        max-width: var(--caviar-viewport-w);
        max-height: none; /* Removed constraints */
    }

    .carousel-slide {
        flex: 0 0 var(--caviar-slide-w);
    }

    .carousel-slide.active {
        flex: 0 0 var(--caviar-active-w);
    }

    .carousel-slide img {
        max-height: calc(100vh - 320px);
        height: calc(100vh - 320px);
        width: 100%;
        border-radius: 50px;
    }

    /* Imágenes del Caviar Bar llenan el espacio flexible */
    #caviar-bar .carousel-slide img {
        height: 100% !important;
        max-height: 420px !important;
    }
    
    .carousel-slide.active img {
        border-radius: 30px;
    }

    #the-gallery {
        --gallery-slide-w: 260px;
        --gallery-active-w: 380px;
        --gallery-gap: 30px;
    }

    .gallery-content {
        padding: 0 40px;
        max-height: calc(100vh - 180px);
        max-width: 100%;
    }

    .gallery-carousel {
        max-width: var(--gallery-viewport-w);
        max-height: calc(100vh - 280px);
    }

    #the-gallery .carousel-slide {
        flex: 0 0 var(--gallery-slide-w);
    }

    #the-gallery .carousel-slide.active {
        flex: 0 0 var(--gallery-active-w);
    }

    #the-gallery .carousel-slide img {
        max-height: calc(100vh - 320px);
        height: calc(100vh - 320px);
        width: 100%;
    }
}

/* Tablet Responsiveness */
@media (max-width: 1024px) and (min-width: 769px) {
    #caviar-bar {
        --caviar-slide-w: 220px;
        --caviar-active-w: 340px;
        --caviar-gap: 30px;
    }

    header {
        padding: 25px 40px;
    }
    
    header nav ul {
        gap: 30px;
    }
    
    header nav ul li a {
        font-size: 11px;
    }

    /* Contact Section Tablet */
    .contact-content {
        padding: 40px;
    }

    .contact-left, .contact-right {
        width: 30%;
    }

    .contact-center {
        width: 40%;
    }

    /* Caviar Bar Section Tablet */
    .caviar-bar-content {
        padding: 0 30px;
        max-height: none; /* Removed constraints */
    }

    .caviar-carousel {
        max-width: var(--caviar-viewport-w);
        max-height: none; /* Removed constraints */
    }

    .carousel-slide {
        flex: 0 0 var(--caviar-slide-w);
    }

    .carousel-slide.active {
        flex: 0 0 var(--caviar-active-w);
    }

    .carousel-slide img {
        max-height: 70vh;
        height: calc(100vh - 250px);
        border-radius: 50px;
    }
    
    #caviar-bar .carousel-slide img {
        height: 100% !important;
        max-height: 380px !important;
    }
    
    .carousel-slide.active img {
        border-radius: 30px;
    }
    
    #caviar-bar {
        padding: 80px 0 60px 0;
    }

    /* Descripción del Caviar Bar Tablet */
    .caviar-bar-description {
        margin: 25px auto 10px auto;
        padding: 0 30px;
        max-width: 700px;
    }

    .caviar-bar-description p {
        font-size: 13px;
    }

    .caviar-bar-description p br {
        display: none;
    }

    /* Gallery Section Tablet */
    #the-gallery {
        --gallery-slide-w: 220px;
        --gallery-active-w: 340px;
        --gallery-gap: 30px;
    }

    .gallery-content {
        padding: 0 30px;
        max-height: calc(100vh - 160px);
    }

    .gallery-carousel {
        max-width: var(--gallery-viewport-w);
        max-height: calc(100vh - 280px);
    }

    #the-gallery .carousel-slide {
        flex: 0 0 var(--gallery-slide-w);
    }

    #the-gallery .carousel-slide.active {
        flex: 0 0 var(--gallery-active-w);
    }

    #the-gallery .carousel-slide img {
        max-height: calc(100vh - 320px);
        height: calc(100vh - 320px);
    }
    
    #the-gallery {
        padding: 80px 0 60px 0;
    }
}

/* Ocultar botones móviles y chat como se solicitó */
.mobile-book-btn,
.chat-icon {
    display: none !important;
}

/* Ocultar botón book-experience-btn-mobile por defecto (solo visible en móvil) */
.book-experience-btn-mobile {
    display: none !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    header {
        padding: 20px;
    }

    .header-logo .logo-img {
        width: 120px;
    }

    .header-book a {
        font-size: 14px;
    }

    .side-panel {
        width: 100%;
        padding-left: 30px;
        padding-top: 100px;
    }

    .side-nav ul li:not(:first-child) {
        margin-top: 18px;
    }

    .side-nav ul li a {
        font-size: 14px;
        letter-spacing: 1px;
    }

    /* Asegurar que #hero ocupe toda la pantalla en móvil */
    #hero {
        height: 100vh !important;
        height: var(--full-vh, 100vh) !important;
        width: 100vw !important;
        position: relative !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Video container en móvil */
    .hero-video-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: var(--full-vh, 100vh);
        min-height: 100vh;
        min-height: var(--full-vh, 100vh);
        overflow: hidden;
        margin: 0;
        padding: 0;
    }

    /* Video de fondo en móvil - asegurar cobertura completa */
    .hero-background-video {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        min-width: 100% !important;
        min-height: 100% !important;
        width: auto !important;
        height: auto !important;
        transform: translate(-50%, -50%) scale(1.2) !important;
        object-fit: cover !important;
        object-position: center !important;
        z-index: 0 !important;
    }

    /* HERO2 Logos en móvil */
    .hero-logos-wrapper {
        padding: 0 20px;
        padding-bottom: 80px;
    }

    .proudly-text {
        font-size: 12px;
        letter-spacing: 0.3px;
        margin-bottom: 30px;
    }

    .hero-logos-img {
        max-width: 100%;
        width: 95%;
    }

    .hero-content {
        padding: 0 60px;
    }

    #hero .hero-content h1 {
        font-size: 16px;
    }

    #hero .hero-content p {
        font-size: 12px;
    }
    
    /* Mostrar solo versión mobile en móvil */
    .hero-description-desktop {
        display: none;
    }
    
    .hero-description-mobile {
        display: block;
    }
    
    .suites-content h2 {
        font-size: 32px;
    }
    
    .suites-content p {
        font-size: 14px;
    }

    /* Suites Section Mobile */
    .centered-content {
        padding: 0 30px;
        max-width: 100%;
        width: 100%;
        text-align: center;
    }
    
    .centered-content h2 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .centered-content p {
        font-size: 12px;
    }
    
    /* Mostrar solo versión mobile en móvil */
    .essence-description-desktop {
        display: none;
    }
    
    .essence-description-mobile {
        display: block;
    }
    
    /* Ajustar posición vertical del contenido en slides full-bg */
    .slide-full-bg {
        justify-content: flex-start;
        align-items: center;
        padding-top: 50vh;
    }

    /* Layout dividido en móvil: cambiar a vertical */
    .slide-split {
        flex-direction: column;
    }

    .split-left {
        flex: 0 0 50%;
        padding: 30px 20px;
        justify-content: flex-start;
        align-items: flex-start;
    }

    /* Espaciado superior para evitar superposición con header en slides de suites */
    #suites .split-left {
        padding-top: 100px;
    }

    .split-right {
        flex: 0 0 50%;
    }

    .suite-text-content {
        text-align: left;
        width: 100%;
    }

    .suite-text-content h2 {
        font-size: 32px;
        text-align: left;
    }

    .suite-text-content h3 {
        font-size: 18px;
        text-align: left;
        margin-bottom: 40px;
    }

    .suite-text-content .subtitle {
        font-size: 16px;
        text-align: left;
    }

    .suite-text-content .description {
        font-size: 10px;
        margin-bottom: 30px;
        text-align: left;
    }

    /* Ocultar botón BOOK NOW en la sección de suites en móvil */
    #suites .suite-text-content .btn {
        display: none;
    }
    
    /* Ocultar botones BOOK NOW desktop en slides 2, 3 y 4 de the-alexander-experience en móvil */
    #the-alexander-experience .left-content .btn {
        display: none;
    }

    .slide-full-bg {
        background-image: url('../assets/images/optimized2/oursuites_desktop.webp');
    }

    #the-alexander-experience .slide-full-bg {
        background-image: url('../assets/images/optimized2/the_alexander_exp_new_desktop.webp');
        background-size: auto;
        background-position: 70%;
    }

    /* Resetear margin-top en móvil para el primer slide */
    #the-alexander-experience .slide-full-bg:first-child .centered-content {
        margin-top: 0;
    }

    #the-alexander-experience .slide-left-content {
        padding-left: 20px;
    }

    /* Location & Exclusivity - Imagen de fondo móvil */
    #the-alexander-experience .slide-location-exclusivity {
        background-image: url('../assets/images/optimized2/locationexclusivity_desktop.webp');
        background-size: auto;
        background-position: center;
    }

    /* Personal Journey Curation - Imagen de fondo móvil */
    #the-alexander-experience .slide-personal-journey {
        background-image: url('../assets/images/optimized2/personaljourney_desktop.webp');
        background-size: auto;
        background-position: center;
    }

    /* Immersive Experiences - Imagen de fondo móvil */
    #the-alexander-experience .slide-immersive-experiences {
        background-image: url('../assets/images/optimized2/inmersiveexperience_desktop.webp');
        background-size: auto;
        background-position: center;
    }

    /* Aesthetic Mastery - Imagen de fondo móvil */
    #the-alexander-experience .slide-aesthetic-mastery {
        background-image: url('../assets/images/optimized2/aestheticmastery_desktop.webp');
    }

    /* Estilos móviles para el primer slide de The Alexander Experience */
    #the-alexander-experience .slide-full-bg:first-child .centered-content h2 {
        font-size: 16px;
        letter-spacing: 2px;
        line-height: 1.3;
        margin-bottom: 1px;
    }

    #the-alexander-experience .slide-full-bg:first-child .centered-content p {
        font-size: 12px;
        line-height: 1.6;
        font-weight: 400;
    }

    /* Estilos móviles para los slides con contenido a la izquierda (Tailored Attention, Spa, Gym) */
    #the-alexander-experience .slide-left-content .left-content h3 {
        font-size: 14px;
        letter-spacing: 1.5px;
        line-height: 1.4;
        margin-bottom: 10px;
        font-weight: 400;
    }

    #the-alexander-experience .slide-left-content .left-content .description {
        font-size: 10px;
        line-height: 1.3;
        /* margin-bottom: 25px; */
        font-weight: 400;
    }

    /* Estilos móviles para las listas de experiencia */
    #the-alexander-experience .slide-left-content .experience-list {
        margin-bottom: 30px;
    }

    #the-alexander-experience .slide-left-content .experience-list li {
        font-size: 10px;
        line-height: 1.3;
        /* margin-bottom: 8px; */
        font-weight: 400;
    }

    /* Ocultar botón del header cuando esté en the-alexander-experience */
    body.in-the-alexander-experience .header-book {
        display: none !important;
    }

    /* Mostrar botón BOOK YOUR EXPERIENCE solo en móvil dentro de the-alexander-experience */
    #the-alexander-experience .book-experience-btn-mobile {
        display: inline-block !important;
        /* border: 1px solid #fff; */
        /* padding: 10px 20px; */
        font-family: 'Libre Baskerville', serif;
        font-size: 10px;
        font-weight: 400;
        letter-spacing: 2px;
        text-transform: uppercase;
        transition: all 0.3s ease;
        background: transparent;
        color: #fff;
        border-radius: 999px;
        text-decoration: none;
        margin-top: 20px;
    }

    #the-alexander-experience .book-experience-btn-mobile:hover {
        background-color: #fff;
        color: #000;
    }

    /* Ajustar espaciado del botón en el slide centrado */
    #the-alexander-experience .centered-content .book-experience-btn-mobile {
        margin-top: 25px;
    }

    /* Ajustar espaciado del botón en los slides con contenido a la izquierda */
    #the-alexander-experience .left-content .book-experience-btn-mobile {
        margin-top: 20px;
    }

    /* Spaces - Slides con contenido a la izquierda móvil */
    #spaces .slide-left-content-behind {
        padding-left: 20px;
        padding-top: 0;
        align-items: center;
        justify-content: flex-start;
    }
    
    /* Spaces - Posicionar contenido ligeramente debajo del centro en móvil */
    #spaces .slide-left-content-behind .left-content-behind {
        transform: translateY(20vh); /* Desplazar ligeramente hacia abajo desde el centro */
    }
    
    /* Ocultar botón BOOK NOW en spaces en móvil */
    #spaces .suite-slide > .btn {
        display: none;
    }
    
    /* Mostrar solo versión mobile en móvil para The Gym */
    .the-gym-description-desktop {
        display: none;
    }
    
    .the-gym-description-mobile {
        display: block;
    }
    
    /* Mostrar solo versión mobile en móvil para The Spa */
    .the-spa-description-desktop {
        display: none;
    }
    
    .the-spa-description-mobile {
        display: block;
    }
    
    /* Mostrar solo versión mobile en móvil para Garden Terrace */
    .garden-terrace-description-desktop {
        display: none;
    }
    
    .garden-terrace-description-mobile {
        display: block;
    }
    
    /* Mostrar solo versión mobile en móvil para The Salon */
    .the-salon-description-desktop {
        display: none;
    }
    
    .the-salon-description-mobile {
        display: block;
    }

    /* Spaces - Primer slide móvil */
    #spaces .slide-spaces {
        background-image: url('../assets/images/optimized/behind_alexander_mobile_optimized.webp');
    }

    /* The Gym - Imagen de fondo móvil */
    #spaces .slide-the-gym {
        background-image: url('../assets/images/optimized2/the_gym_desktop.webp');
    }

    /* The Spa - Imagen de fondo móvil */
    #spaces .slide-the-spa {
        background-image: url('../assets/images/optimized2/the_spa_desktop.webp');
    }

    /* Garden Terrace - Imagen de fondo móvil */
    #spaces .slide-garden-terrace {
        background-image: url('../assets/images/optimized2/the_garden_terrace_desktop.webp');
    }

    /* Estilos móviles para el primer slide de Spaces */
    #spaces .slide-full-bg:first-child .centered-content h2 {
        font-size: 16px;
        letter-spacing: 2px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    /* Estilos móviles para los slides con contenido a la izquierda (The Gym, The Spa, Garden Terrace, The Salon) */
    #spaces .slide-left-content-behind .left-content-behind h3 {
        font-size: 14px;
        letter-spacing: 1.5px;
        line-height: 1.4;
        margin-bottom: 10px;
        font-weight: 400;
    }

    #spaces .slide-left-content-behind .left-content-behind .description {
        font-size: 10px;
        line-height: 1.3;
        margin-bottom: 15px;
        font-weight: 400;
        max-width: 100%;
    }

    /* Art and Architecture - Slides con contenido a la izquierda móvil */
    #art-and-architecture .slide-left-content-behind {
        padding-left: 20px;
        padding-top: 0;
        align-items: center;
        justify-content: flex-start;
    }
    
    /* Art and Architecture - Posicionar contenido ligeramente debajo del centro en móvil */
    #art-and-architecture .slide-left-content-behind .left-content-behind {
        transform: translateY(20vh); /* Desplazar ligeramente hacia abajo desde el centro */
    }
    
    /* Mostrar solo versión mobile en móvil para Architectural Vision */
    .architectural-vision-description-desktop {
        display: none;
    }
    
    .architectural-vision-description-mobile {
        display: block;
    }
    
    /* Mostrar solo versión mobile en móvil para Statement in Design */
    .statement-in-design-description-desktop {
        display: none;
    }
    
    .statement-in-design-description-mobile {
        display: block;
    }
    
    /* Mostrar solo versión mobile en móvil para Art Collection */
    .art-collection-description-desktop {
        display: none;
    }
    
    .art-collection-description-mobile {
        display: block;
    }

    /* Art and Architecture - Primer slide móvil */
    #art-and-architecture .slide-art-and-architecture {
        background-image: url('../assets/images/optimized2/art_and_architecture_desktop.webp');
    }

    /* Architectural Vision - Imagen de fondo móvil */
    #art-and-architecture .slide-architectural-vision {
        background-image: url('../assets/images/optimized2/architectural_vision_new_desktop.webp');
        background-position: 10% top;
    }

    /* A Statement in Design - Imagen de fondo móvil */
    #art-and-architecture .slide-statement-in-design {
        background-image: url('../assets/images/optimized2/architectural_vision_desktop.webp');
    }

    /* The Art Collection - Imagen de fondo móvil */
    #art-and-architecture .slide-art-collection {
        background-image: url('../assets/images/optimized2/the_art_collection_desktop.webp');
    }

    /* Estilos móviles para el primer slide de Art and Architecture */
    #art-and-architecture .slide-full-bg:first-child .centered-content h2 {
        font-size: 16px;
        letter-spacing: 2px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    /* Estilos móviles para los slides con contenido a la izquierda (Architectural Vision, Statement in Design, Art Collection) */
    #art-and-architecture .slide-left-content-behind .left-content-behind h3 {
        font-size: 14px;
        letter-spacing: 1.5px;
        line-height: 1.4;
        margin-bottom: 10px;
        font-weight: 400;
    }

    #art-and-architecture .slide-left-content-behind .left-content-behind .description {
        font-size: 10px;
        line-height: 1.3;
        margin-bottom: 15px;
        font-weight: 400;
        max-width: 100%;
    }

    .left-content h2 {
        font-size: 32px;
    }

    .left-content .description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .left-content-behind h2 {
        font-size: 24px;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .left-content-behind .description {
        font-size: 12px;
        margin-bottom: 15px;
        line-height: 1.6;
        max-width: 70%;
    }

    .split-right .desktop-img {
        display: none;
    }

    .split-right .mobile-img {
        display: block;
    }

    /* Ocultar botón flotante original de #hero en móvil */
    #hero .btn {
        display: none;
    }
    
    /* Ocultar botones móviles cuando el menú está activo */
    body.menu-open .mobile-book-btn,
    body.menu-open #caviar-bar .caviar-btn {
        opacity: 0;
        visibility: hidden;
    }
    
    /* Ocultar otros elementos cuando el menú móvil está activo */
    body.menu-open .vertical-nav,
    body.menu-open .chat-icon {
        opacity: 0 !important;
        visibility: hidden;
        pointer-events: none;
    }

    .scroll-down {
        bottom: 20px;
    }

    .scroll-down img {
        width: 14px;
    }

    .vertical-nav {
        right: 20px;
    }

    .vertical-nav a {
        width: 6px;
        height: 6px;
        margin: 5px 0;
    }

    .vertical-nav a.active {
        width: 8px;
        height: 8px;
        margin: 4px 0;
    }

    .vertical-nav a.active::after {
        width: 4px;
        height: 4px;
    }

    .chat-icon {
        right: 20px;
        bottom: 10px;
    }

    /* Contact Section Mobile */
    #contact {
        /* Usar min-height en lugar de height fija para evitar cortes */
        height: auto;
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height - funciona en navegadores incrustados */
        min-height: var(--full-vh, 100vh); /* Fallback con variable JS */
        padding: 80px 0 40px 0;
        padding-bottom: max(40px, env(safe-area-inset-bottom)); /* Safe area para notch/home indicator */
        overflow-y: visible;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contact-content {
        flex-direction: column;
        align-items: center;
        padding: 15px 20px;
        text-align: center;
        height: auto;
        min-height: auto;
        gap: 5px;
    }

    .contact-left,
    .contact-center,
    .contact-right {
        width: 100%;
        max-width: 350px; /* Limit width for better readability on mobile */
        margin-bottom: 15px; /* Reducido para que quepa todo */
    }

    .contact-left {
        text-align: center;
        order: 2; /* Después del logo */
    }

    .contact-right {
        text-align: center;
        align-items: center;
        order: 3; /* Al final */
        margin-bottom: 0; /* Sin margen en el último */
    }

    .contact-right .social-icons {
        justify-content: center;
    }

    .contact-right p {
        text-align: center;
    }

    .contact-center {
        order: 1; /* Logo primero en móvil */
        margin-bottom: 10px;
    }

    .footer-logo-img {
        width: 100px; /* Ligeramente más pequeño */
    }

    /* Partner Logos Carousel Mobile */
    .partner-logos {
        margin-top: 15px;
    }

    .partner-track {
        gap: 15px; /* Reducido */
        animation: scroll 40s linear infinite;
    }

    .partner-slide {
        flex: 0 0 auto;
        width: 80px; /* Más pequeño */
        padding: 0;
    }

    .partner-slide img {
        max-height: 35px;
    }

    /* Footer Carousel Mobile */
    .footer-carousel-wrapper {
        max-width: 260px;
        margin-top: 10px;
        margin-bottom: 8px;
    }

    .footer-carousel-track {
        gap: 15px;
    }

    .footer-carousel-track img {
        height: 20px;
        min-width: 50px;
        max-width: 80px;
    }

    /* Footer Nav Dots Mobile */
    .footer-nav-dots {
        margin: 8px 0 15px 0;
    }

    .footer-dot {
        width: 5px;
        height: 5px;
    }

    /* Namron Logo Mobile */
    .namron-logo-link img {
        height: 52px;
    }

    /* Contact Info Group Mobile - compactar */
    .contact-info-group {
        margin-bottom: 10px;
    }

    .contact-info-group:last-child {
        margin-bottom: 0;
    }

    .contact-label {
        font-size: 11px;
        margin-bottom: 2px;
    }

    .contact-left a {
        font-size: 11px;
        line-height: 1.4;
    }

    .contact-left h2 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    /* Contact address mobile */
    .contact-address {
        margin: 0 0 10px 0;
        font-size: 11px;
    }

    .contact-right .privacy-link {
        font-size: 11px;
    }

    /* Social icons mobile - más compactos */
    .contact-right .social-icons {
        gap: 15px;
        margin-bottom: 12px;
    }

    .contact-right .social-icons a {
        font-size: 16px;
    }

    .contact-right .social-icons a svg {
        width: 16px;
        height: 16px;
    }

    /* Caviar Bar Section Mobile */
    #caviar-bar {
        padding: 80px 0 60px 0;
        --caviar-slide-w: 180px;
        --caviar-active-w: 260px;
        --caviar-gap: 10px;
    }

    .caviar-bar-content {
        padding: 0 15px;
        gap: 30px;
        max-height: none;
        position: relative;
    }

    .section-title {
        margin-bottom: 20px;
    }

    .caviar-logo-img {
        width: 40px;
        margin-bottom: 10px;
    }

    .section-title h3 {
        font-size: 12px;
    }

    .caviar-carousel {
        margin-bottom: 0;
        margin-top: 0;
        max-height: none;
        padding: 10px 0;
    }

    .carousel-slide {
        flex: 0 0 var(--caviar-slide-w);
        transform: scale(0.9);
        margin-right: var(--caviar-gap);
    }

    .carousel-slide.active {
        flex: 0 0 var(--caviar-active-w);
        transform: scale(1);
    }

    .carousel-slide img {
        max-height: 70vh;
        height: calc(100vh - 240px);
        width: 100%;
        object-fit: cover;
        border-radius: 50px;
    }
    
    #caviar-bar .carousel-slide img {
        height: 100% !important;
        max-height: 320px !important;
    }
    
    .carousel-slide.active img {
        border-radius: 30px;
    }

    #caviar-bar .caviar-btn {
        left: 20px;
        bottom: 20px;
        padding: 6px 20px;
        font-size: 11px;
    }

    /* Descripción del Caviar Bar Mobile */
    .caviar-bar-description {
        margin: 20px auto 10px auto;
        padding: 0 20px;
        max-width: 100%;
    }

    .caviar-bar-description p {
        font-size: 12px;
        line-height: 1.7;
    }

    .caviar-bar-description p br {
        display: none;
    }

    #caviar-bar .carousel-navigation {
        position: absolute;
        top: 55%; /* Centrado verticalmente respecto al carrusel */
        left: 50%;
        transform: translateX(-50%);
        width: calc(var(--caviar-active-w) + 80px); /* Ajustado para estar más cerca de la imagen central */
        display: flex;
        justify-content: space-between;
        padding: 0;
        pointer-events: none; /* Dejar pasar clicks al carrusel */
        z-index: 100;
        margin-top: 0;
    }

    #caviar-bar .carousel-arrow {
        pointer-events: auto; /* Habilitar clicks en las flechas */
        background: rgba(0, 0, 0, 0.4);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
    }

    #caviar-bar .carousel-dots-container {
        display: none; /* Ocultar puntos en mobile si usamos flechas laterales */
    }

    /* Gallery Section Mobile */
    #the-gallery {
        padding: 80px 0 60px 0;
        --gallery-slide-w: 180px;
        --gallery-active-w: 260px;
        --gallery-gap: 10px;
    }

    .gallery-content {
        padding: 0 15px;
        gap: 30px;
        max-height: none;
        position: relative;
    }

    .gallery-logo-img {
        width: 40px;
        margin-bottom: 10px;
    }

    .gallery-carousel {
        margin-bottom: 0;
        margin-top: 0;
        max-height: none;
        padding: 10px 0;
    }

    #the-gallery .carousel-slide {
        flex: 0 0 var(--gallery-slide-w);
        transform: scale(0.9);
        margin-right: var(--gallery-gap);
    }

    #the-gallery .carousel-slide.active {
        flex: 0 0 var(--gallery-active-w);
        transform: scale(1);
    }

    #the-gallery .carousel-slide img {
        max-height: calc(100vh - 280px);
        height: calc(100vh - 280px);
        width: 100%;
        object-fit: cover;
    }

    #the-gallery .carousel-navigation {
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translateX(-50%);
        width: calc(var(--gallery-active-w) + 80px);
        display: flex;
        justify-content: space-between;
        padding: 0;
        pointer-events: none;
        z-index: 100;
        margin-top: 0;
    }

    #the-gallery .carousel-arrow {
        pointer-events: auto;
        background: rgba(0, 0, 0, 0.4);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
    }

    #the-gallery .carousel-dots-container {
        display: none;
    }
}

/* Very Small Mobile Devices (iPhone SE, etc.) */
@media (max-width: 380px) {
    /* Contact Section - Extra compact */
    #contact {
        padding: 70px 0 30px 0;
    }

    .contact-content {
        padding: 10px 15px;
        gap: 3px;
    }

    .contact-left,
    .contact-center,
    .contact-right {
        margin-bottom: 10px;
    }

    .footer-logo-img {
        width: 80px;
    }

    .footer-carousel-wrapper {
        max-width: 220px;
    }

    .footer-carousel-track img {
        height: 18px;
        min-width: 45px;
        max-width: 70px;
    }

    .footer-nav-dots {
        margin: 5px 0 10px 0;
    }

    .namron-logo-link img {
        height: 18px;
    }

    .contact-info-group {
        margin-bottom: 8px;
    }

    .contact-label,
    .contact-left a,
    .contact-address,
    .contact-right .privacy-link {
        font-size: 10px;
    }

    .contact-left h2 {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .contact-right .social-icons {
        gap: 12px;
        margin-bottom: 8px;
    }

    .contact-right .social-icons a {
        font-size: 14px;
    }

    .contact-right .social-icons a svg {
        width: 14px;
        height: 14px;
    }
}

/* Landscape orientation on mobile - even more compact */
@media (max-height: 500px) and (max-width: 900px) {
    #contact {
        padding: 60px 0 20px 0;
        height: auto;
        min-height: auto;
    }

    .contact-content {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        padding: 10px 20px;
        gap: 10px;
    }

    .contact-left,
    .contact-center,
    .contact-right {
        width: auto;
        max-width: none;
        margin-bottom: 0;
        flex: 1 1 30%;
        min-width: 200px;
    }

    .contact-center {
        order: 0;
        flex: 1 1 100%;
        margin-bottom: 10px;
    }

    .footer-logo-img {
        width: 80px;
    }

    .footer-carousel-wrapper {
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .footer-nav-dots {
        margin: 5px 0;
    }

    .namron-logo-link img {
        height: 18px;
    }
}
