/* 1. VARIABLES Y RESET */
:root {
    --primary: #b19c99;
    --bg-light: #F8F8F8;
    --bg-cream: #fdf5f4;
    --text-dark: #2c2c2c;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 180px;
    /* Compensate for header height */
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

/* 2. HEADER - Ahora con fondo sólido para que se vea */
/* HEADER & NAV REFORMULADO */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 60px;
    /* Un poco más de aire */
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.logo img {
    height: 160px;
    /* Ajustalo según te guste más */
    width: auto;
    display: block;
}

header nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

/* HAMBURGER MENU ICON */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    /* Keep above menu */
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

header nav ul li {
    margin-left: 25px;
    position: relative;
    /* NECESARIO para el dropdown */
    padding: 15px 0;
}

header nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: 0.3s;
}

header nav ul li a:hover {
    color: var(--primary);
}

/* --- ESTILO DEL DROPDOWN --- */
/* Asegurate de que la clase dropdown-content esté así */
.dropdown-content {
    display: none;
    /* Esto lo esconde por defecto */
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
    z-index: 1;
    list-style: none;
    padding: 10px 0;
    text-align: left;
    margin-top: 10px;
}

.dropdown:hover .dropdown-content {
    display: block;
    /* Esto lo muestra al pasar el mouse */
}

.dropdown-content li {
    margin: 0 !important;
    /* Quita el margen lateral */
}

.dropdown-content li a {
    padding: 10px 20px;
    text-transform: none;
    /* Para que no sea todo mayúsculas */
    font-size: 20px;
    display: block;
}

/* 3. HERO SECTION - Ajuste de visibilidad */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Para que el video no se escape de la sección */
}

/* CAPA 1: EL VIDEO (Atrás de todo) */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    /* Lo mandamos al fondo */
    object-fit: cover;
}

/* CAPA 2: EL OVERLAY (En el medio) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 25%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    /* Por encima del video */
}

/* CAPA 3: EL CONTENIDO (Al frente) */
.hero-content {
    position: relative;
    z-index: 2;
    /* Por encima del overlay */
    text-align: center;
    color: white;
    padding: 0 20px;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-family: 'Nunito', serif;
    font-size: 4.5rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--bg-light);
    /* El color rosita/marrón en la palabra Argentina */
}

.hero p {
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: 300;
}

/* BOTONES AL FRENTE */
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    border: 1px solid var(--primary);
}

.btn-secondary {
    background-color: white;
    color: var(--primary);
    border: 1px solid white;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* PLAY VIDEO BUTTON */
.play-video-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    background: transparent;
    border: none;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0.7;
    position: relative;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
}

.play-video-btn::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: white;
    transition: width 0.3s ease;
}

.play-video-btn:hover {
    opacity: 1;
}

.play-video-btn:hover::after {
    width: 100%;
}

.play-icon {
    font-size: 14px;
    transform: translateY(-1px);
}

/* EXPERIENCES PREVIEW */
/* AJUSTE DE COLOR PARA ESTE BLOQUE (según tu paleta) */
.experiences-preview {
    background-color: var(--bg-white);
    /* Aumentamos el aire arriba (150px) y mantenemos 100px abajo */
    padding: 100px 100px;
    text-align: center;
}

.experiences-preview h2 {
    font-family: 'nunito', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
}


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

/* LA TARJETA (CARD) */
.exp-card {
    background-color: #d4c3c1;
    border-radius: 20px;
    /* Bordes redondeados como la imagen */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.exp-card:hover {
    transform: translateY(-10px);
}

/* CONTENEDOR DE IMAGEN */
.exp-img {
    height: 400px;
    width: 100%;
}

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

/* TEXTO DE LA TARJETA */
.exp-info {
    padding: 25px;
    text-align: center;
    color: white;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exp-info h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* BOTÓN DE ABAJO */
.btn-outline {
    margin-top: 50px;
    display: inline-block;
    padding: 15px 35px;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
}

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

/* --- GALLERY GRID SECTION --- */
.gallery-section {
    background-color: var(--bg-light);
    /* O var(--white) según prefieras */
    padding: 120px 20px;
    text-align: center;
}

.gallery-intro {
    font-size: 20px;
    /* Tamaño solicitado */
    color: #888;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    max-width: 100%;
    margin: 0 auto;
}

.gallery-card {
    position: relative;
    height: 450px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

/* Patrón 3-2-3-2 */
.gallery-card:nth-child(10n+1), 
.gallery-card:nth-child(10n+2), 
.gallery-card:nth-child(10n+3) { grid-column: span 2; }

.gallery-card:nth-child(10n+4), 
.gallery-card:nth-child(10n+5) { grid-column: span 3; }

.gallery-card:nth-child(10n+6), 
.gallery-card:nth-child(10n+7), 
.gallery-card:nth-child(10n+8) { grid-column: span 2; }

.gallery-card:nth-child(10n+9), 
.gallery-card:nth-child(10n+10) { grid-column: span 3; }

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

/* Efecto Zoom al pasar el mouse */
.gallery-card:hover img {
    transform: scale(1.05);
}

/* Información sobre la foto (Texto eliminado por rediseño, mantenemos la clase por si se usa en el futuro) */
.gallery-info {
    display: none;
}

/* --- RESPONSIVO --- */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-card:nth-child(n) { grid-column: span 1; }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-card:nth-child(n) { grid-column: span 1; }
    .gallery-card {
        height: 280px;
    }
}

/* --- ABOUT SECTION --- */
.about-section {
    background-color: var(--white);
    /* El fondo rosado suave #fdf5f4 */
    padding: 120px 20px;
}

.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    position: relative;
    max-width: 450px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    position: relative;
    z-index: 2;
    display: block;
}

/* El detalle del marco decorativo */
.image-accent {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    z-index: 1;
    border-radius: 4px;
}

.about-text {
    flex: 1.2;
}

.upper-title {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 700;
}

.about-text h2 {
    font-family: 'nunito', serif;
    font-size: 1.5rem;
    margin: 15px 0 25px;
    color: var(--text-dark);
}

.about-text p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #555;
}

.highlight {
    font-weight: 700;
    color: var(--text-dark);
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    border-top: 1px solid rgba(177, 156, 153, 0.3);
    padding-top: 25px;
}

.stat h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary);
}

/* --- WHY CHOOSE ME SECTION --- */
.choose-section {
    background-color: var(--bg-light);
    padding: 100px 20px;
    text-align: center;
}

.section-title {
    font-family: 'nunito', serif;
    font-size: 2rem;
    margin-bottom: 60px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columnas en desktop */
    gap: 40px;
    max-width: 1100px;
    margin: 60px auto 0;
}

.icon-box img {
    height: 150px;
    margin-bottom: 20px;
}

.choose-item h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.choose-item p {
    font-size: 1.2rem;
    color: #666;
}

/* --- MEDIA QUERIES (PARA CELULAR) --- */
@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
        /* Apila imagen arriba y texto abajo */
        text-align: center;
        gap: 40px;
    }

    .about-image {
        max-width: 350px;
        /* Foto un poco más chica en tablet/móvil */
    }

    .image-accent {
        display: none;
        /* Quitamos el marco en móvil para que no se vea desordenado */
    }

    .about-stats {
        justify-content: center;
    }

    .choose-grid {
        grid-template-columns: 1fr;
        /* Una sola columna en móvil */
        gap: 60px;
    }

    .about-text h2 {
        font-size: 2rem;
    }
}

/* --- FAQ SECTION --- */
.faq-section {
    background-color: var(--bg-light);
    padding: 150px 20px;
    text-align: center;
    /* Centra el título y el contenido por defecto */
}

.section-title-centered {
    font-family: 'nunito', serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 60px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Línea decorativa debajo del FAQ */
.section-title-centered::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary);
    margin: 15px auto 0;
    /* Esto centra la línea */
}

/* LA TARJETA BLANCA (Recuperamos su forma) */
.faq-card {
    background-color: var(--white);
    width: 100%;
    /* Ocupa el ancho disponible */
    max-width: 900px;
    /* Pero no más de 900px */
    margin: 0 auto;
    /* LA CLAVE: Centra la tarjeta en la pantalla */
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    text-align: left;
    /* El texto de las preguntas vuelve a la izquierda */
}

/* Estilo de los desplegables */
details {
    border-bottom: 1px solid #eee;
    padding: 25px 0;
    cursor: pointer;
}

details:last-child {
    border-bottom: none;
}

summary {
    list-style: none;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

summary::-webkit-details-marker {
    display: none;
}

/* La flechita */
summary::after {
    content: '▼';
    font-size: 14px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

details[open] summary::after {
    transform: rotate(180deg);
}

details[open] summary {
    color: var(--primary);
    margin-bottom: 15px;
}

/* Texto de la respuesta a 20px */
.faq-content p {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
}

/* --- CONTACT SECTION --- */
.contact-section {
    background-color: var(--white);
    padding: 150px 20px;
}

.contact-wrapper {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-family: 'nunito', serif;
    font-size: 1.5rem;
    margin: 15px 0 30px;
    color: var(--text-dark);
}


.contact-link-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.contact-link-item:hover {
    color: var(--primary);
}

.contact-link-item img {
    width: 30px;
    height: 30px;
}

.contact-logo-frame {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 180px;
}

.contact-logo-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- ESTILO FORMULARIO --- */
.contact-form {
    flex: 1.2;
    background-color: var(--primary);
    /* Fondo crema para destacar el form */
    padding: 50px;
    border-radius: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

input,
textarea {
    width: 100%;
    background-color: white;
    border: 1px solid rgba(177, 156, 153, 0.3);
    padding: 18px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    /* Tamaño solicitado */
    outline: none;
    transition: border 0.3s;
}

input:focus,
textarea:focus {
    border-color: var(--primary);
}

.btn-submit {
    width: 100%;
    background-color: var(--bg-cream);
    color: #b19c99;
    border: none;
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover {
    filter: brightness(1.1);
    transform: translateY(-3px);
}

/* --- RESPONSIVO --- */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 60px;
    }

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

    .contact-link-item {
        justify-content: center;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-logo-frame {
        margin: 40px auto 0;
        display: block;
        max-width: fit-content;
    }
}

/* --- FOOTER SECTION --- */
.main-footer {
    background-color: #b19c99;
    color: var(--white);
    padding: 80px 20px 40px;
    font-family: 'Nunito', sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 50px;
}

.footer-brand {
    flex: 1.5;
}

.footer-logo {
    height: 100px;
    /* Logo un poco más grande en el footer */
    margin-bottom: 20px;
    filter: brightness(1.3) drop-shadow(0 2px 8px rgba(255, 255, 255, 0.2));
    /* Resalta sin perder el color original */
}

.footer-tagline {
    font-size: 18px;
    /* Un poco menos de 20 para no competir con el h4 */
    color: #ebe8e8;
    line-height: 1.5;
}

.footer-nav h4,
.footer-social h4 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--bg-cream);
    /* Tu color rosa/marrón */
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul li {
    margin-bottom: 12px;
}

.footer-nav ul li a {
    color: #eee;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.footer-nav ul li a:hover {
    color: var(--bg-white);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-links a {
    color: #eee;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--bg-white);
}

/* --- FOOTER BOTTOM --- */
.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.designer-credit {
    font-style: italic;
}

/* --- RESPONSIVO --- */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .social-links {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

/* --- LODGING SECTION --- */

.lodging-parallax {
    position: relative;
    min-height: 600px;
    /* Altura de la sección */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Keep background inside */
}

.slideshow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.slideshow-bg .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideshowFade 15s infinite;
}

.slideshow-bg .slide:nth-child(1) { animation-delay: 0s; }
.slideshow-bg .slide:nth-child(2) { animation-delay: 5s; }
.slideshow-bg .slide:nth-child(3) { animation-delay: 10s; }

@keyframes slideshowFade {
    0% { opacity: 0; transform: scale(1); }
    10% { opacity: 1; }
    33% { opacity: 1; }
    43% { opacity: 0; transform: scale(1.05); }
    100% { opacity: 0; }
}

.lodging-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Capa oscura para legibilidad */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.lodging-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    /* Para que el texto no se estire demasiado */
    padding: 0 20px;
}

.upper-title-white {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    color: var(--primary);
    /* El rosa/marrón resalta sobre el negro */
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.lodging-content h2 {
    font-family: 'nunito', serif;
    font-size: 4rem;
    /* Título gigante e imponente */
    margin-bottom: 20px;
    line-height: 1.1;
}

.lodging-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Botón que resalte sobre el fondo oscuro */
.lodging-content .btn-secondary {
    background-color: white;
    color: var(--text-dark);
    border: none;
}

/* --- MODALS --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0; width: 100vw; height: 100vh;
    overflow: hidden;
}
.modal.active {
    display: block;
}
.modal-bg {
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.05);
    animation: modalBgZoom 10s ease-out forwards;
}

@keyframes modalBgZoom {
    to { transform: scale(1); }
}

.modal-overlay {
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 2;
}

.modal-content-immersive {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: white;
    text-align: center;
    padding: 0 20px;
    animation: modalFadeIn 0.8s ease forwards;
}

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

.modal-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: 5px;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--primary);
}

.modal-content-immersive h2 {
    font-size: 4rem;
    letter-spacing: 6px;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.modal-content-immersive p {
    font-size: 20px;
    max-width: 800px;
    line-height: 1.6;
    margin-bottom: 50px;
    font-weight: 300;
}

.modal-benefits {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 40px;
}

.benefit-item {
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-btn {
    position: absolute;
    top: 40px;
    right: 50px;
    color: #fff;
    font-size: 60px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s, opacity 0.3s;
    line-height: 1;
    font-family: 'Nunito', sans-serif;
    opacity: 0.8;
}

.close-btn:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* VIDEO MODAL HERO */
.video-modal {
    display: none;
}
.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-modal-bg {
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
}
.video-container {
    position: relative;
    z-index: 3;
    width: 90vw;
    height: 90vh;
    max-width: 1600px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.8s ease forwards;
}
.video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    outline: none;
}
.video-close-btn {
    z-index: 4; /* Above the video container */
    top: 30px;
    right: 40px;
    font-size: 50px;
}

@media (max-width: 768px) {
    .modal-content-immersive h2 { font-size: 2.5rem; letter-spacing: 3px; }
    .modal-content-immersive p { font-size: 1.1rem; margin-bottom: 30px; }
    .modal-benefits { flex-direction: column; gap: 20px; padding-top: 30px; }
    .close-btn { top: 20px; right: 20px; font-size: 45px; }
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .lodging-content h2 {
        font-size: 2.5rem;
    }

    .lodging-parallax {
        min-height: 500px;
    }
}

/* --- SELECTOR DE IDIOMAS --- */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 30px;
    /* Separación del resto del menú */
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s;
}

.flag-img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    /* Hace la bandera circular */
    object-fit: cover;
    border: 1px solid #eee;
    /* Un borde sutil por si el fondo es blanco */
}

.lang-divider {
    color: #ccc;
    font-weight: 300;
}

/* Estilo para el idioma activo */
.lang-btn.active {
    color: var(--primary);
    /* Tu color rosa/marron #b19c99 */
}

.lang-btn:hover {
    opacity: 0.7;
}

/* RESPONSIVO: En móvil que no queden tan pegadas */
@media (max-width: 992px) {
    .lang-switcher {
        margin-left: 0;
        margin-top: 20px;
        justify-content: center;
    }

    .menu-toggle {
        display: flex;
    }

    header nav {
        position: absolute;
        top: 100%;
        /* Below header */
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        display: none;
        /* Hidden by default */
        padding: 20px 0;
    }

    header nav.active {
        display: block;
        /* Shown when toggled */
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    header nav ul li {
        margin-left: 0;
        padding: 10px 0;
        width: 100%;
        text-align: center;
    }

    /* Make dropdown static on mobile */
    .dropdown-content {
        position: static;
        box-shadow: none;
        display: none;
        background-color: var(--bg-light);
        margin-top: 10px;
    }

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

    /* Header & Logo Fixes */
    header {
        padding: 10px 20px;
    }

    .logo img {
        height: 55px;
    }

    /* Hero Fixes */
    .hero h1 {
        font-size: 2.5rem;
        /* Reduce title size */
    }

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

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
        width: 100%;
        font-size: 16px;
        /* Reduce button text size for long Spanish translations */
        padding: 12px 15px;
    }

    /* Experiences Section Fix */
    .experiences-preview {
        padding: 60px 20px;
        /* Reduce huge horizontal padding */
    }

    .exp-info {
        padding: 30px 20px;
        /* Fix cramped text inside cards */
    }

    /* Lodging Section Fix */
    .lodging-content h2 {
        font-size: 2rem !important;
        /* Force smaller title on mobile */
    }
}

/* --- INTERNAL PAGE STYLES --- */
/* --- PAGINA DE EXPERIENCIAS (ESTILO SPLIT) --- */

.experiences-page {
    margin-top: 80px;
    /* Espacio para el header */
}

.exp-split-container {
    display: flex;
    height: 60vh;
    /* Cada fila ocupa el 60% de la altura de la pantalla */
    width: 100%;
    overflow: hidden;
}

.exp-column {
    flex: 1;
    /* Todas empiezan igual */
    background-size: cover;
    background-position: center;
    position: relative;
    transition: flex 0.7s cubic-bezier(0.25, 1, 0.3, 1);
    cursor: pointer;
}

/* Los efectos hover ahora están limitados a dispositivos con mouse (Desktop) */

.exp-column-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    /* Oscurecemos para que el texto resalte */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    transition: background 0.4s;
}



.exp-column-content {
    color: white;
    max-width: 400px;
}

.exp-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary);
    /* El rosa/marrón */
    display: block;
    margin-bottom: 10px;
}

.exp-column-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    letter-spacing: 5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.exp-column-content p {
    font-size: 20px;
    /* Tamaño solicitado */
    line-height: 1.5;
    opacity: 0;
    /* Escondido por defecto en PC */
    transform: translateY(20px);
    transition: all 0.5s ease;
}

/* --- HOVER EFFECTS (SOLO PARA ESCRITORIO/MOUSE) --- */
@media (hover: hover) {
    .exp-column:hover {
        flex: 2;
    }

    .exp-column:hover .exp-column-overlay {
        background: rgba(0, 0, 0, 0.3);
        /* Se aclara un poco al enfocar */
    }

    .exp-column:hover .exp-column-content p {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- RESPONSIVO PARA CELULAR --- */
@media (max-width: 992px) {
    .exp-split-container {
        flex-direction: column;
        /* Una debajo de la otra */
        height: auto;
    }

    .exp-column {
        height: 450px;
        /* Altura fija para cada bloque en móvil */
        flex: none;
    }

    .exp-column-content p {
        opacity: 1;
        transform: translateY(0);
    }

    .exp-column-content h2 {
        font-size: 2.5rem;
    }
}