/* ==========================================================================
   OPTIMIZACIÓN AVANZADA DE MÉTRICAS DE FUENTE (ANTI-CLS / SWAP)
   ========================================================================== */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap; /* Cumple la directiva estricta de PageSpeed */
  src: local('Montserrat'), url('https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4MV96gxpxq.woff2') format('woff2');
  
  /* Anulaciones de métricas para que la fuente de respaldo no genere saltos de línea */
  size-adjust: 100%;
  ascent-override: 95%;
  descent-override: 25%;
  line-gap-override: 0%;
}

/* VARIABLES DE DISEÑO */
:root {
    --primary-blue: #0A1931;   /* Azul Oscuro Premium */
    --gold: #C5A880;           /* Dorado Elegante */
    --white: #FFFFFF;          /* Blanco */
    --beige: #F9F6F0;          /* Fondo Beige Claro */
    --text-dark: #222222;
    --text-muted: #666666;
    --transition: all 0.4s ease-in-out;
}

/* RESET GENERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
}

body {
    overflow-x: hidden;
}

/* TIPOGRAFÍAS */
h1, h2, h3, h4, .logo {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* BOTONES RESUSABLES */
.btn-gold {
    background-color: var(--gold);
    color: var(--white);
    padding: 12px 24px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    border: 1px solid var(--gold);
    text-transform: uppercase;
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--gold);
}

.btn-dark {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 14px 28px;
    border: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-dark:hover {
    background-color: var(--gold);
}

/* 1. STICKY HEADER */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition);
}

.navbar-global {
    width: 100%;
    padding: 20px 0;
    background-color: #FFFFFF !important; /* O #EAEAEA si prefieres el gris, pero ponle un fondo sólido */
    position: sticky;
    top: 0;
    z-index: 9999; /* Asegura que quede por encima de todo el contenido al bajar */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* Una línea sutil para que se note la separación */
}

/* Clase que se activa con JavaScript al hacer scroll */
.main-header.scrolled {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.main-header.scrolled .logo a,
.main-header.scrolled .nav-menu ul li a,
.main-header.scrolled .social-icons a {
    color: var(--primary-blue);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu ul li a {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu ul li a:hover, .nav-menu ul li a.active {
    color: var(--gold) !important;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--white);
    font-size: 1rem;
}

.social-icons a:hover {
    color: var(--gold);
}

/* 2. HERO WELCOME SECTION */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

/* Efecto de Zoom-In y Blur Inicial de la imagen */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(10, 25, 49, 0.4), rgba(10, 25, 49, 0.4)), 
                      url('https://santorini.com.py/images/santorini-hero2.webp');
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.15);
    filter: blur(4px);
    animation: heroAnimation 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes heroAnimation {
    100% {
        transform: scale(1);
        filter: blur(0px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.scroll-down {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    display: inline-block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* 3. ABOUT SECTION */
.about-section {
    padding: 100px 0;
    background-color: var(--beige);
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 0 20px;
}

.about-text .subtitle {
    text-transform: uppercase;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin: 10px 0 25px 0;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

.about-image img {
    width: 110%;
    height: 400px;
    object-fit: cover;
    box-shadow: 20px 20px 0px var(--gold);
}

/* 4. GALLERY SECTION */
.gallery-section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.3rem;
    color: var(--primary-blue);
}

.line-gold {
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin: 15px auto 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 0 15px;
}

.gallery-item {
    overflow: hidden;
    height: 350px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* 5. RESERVATION SECTION */
.booking-section {
    padding: 100px 0;
    background-image: linear-gradient(rgba(10, 25, 49, 0.85), rgba(10, 25, 49, 0.85)), 
                      url('https://santorini.com.py/images/santorini-hero2.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
}

.booking-card {
    background-color: var(--white);
    padding: 50px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.booking-card h2 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.booking-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* ==========================================================================
   HEADER PREMIUM UNIFICADO (PARA INDEX Y ABOUT)
   ========================================================================== */
.main-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: #0A1931 !important; /* Tu azul marino original */
    box-shadow: 0 2px 15px rgba(0,0,0,0.15) !important;
    z-index: 1000 !important;
    box-sizing: border-box !important;
    padding: 10px 0 !important;
}
.header-container {
    max-width: 1140px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}
.logo-img {
    max-height: 65px !important;
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
}

/* Menú de Navegación Horizontal */
.nav-menu ul {
    display: flex !important;
    gap: 20px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center !important;
}
.nav-menu a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    letter-spacing: 1px !important;
    transition: 0.3s !important;
    text-transform: uppercase !important;
}
.nav-menu a:hover, .nav-menu a.active {
    color: #C5A880 !important; /* Dorado Premium */
}

/* Bloque de Redes y Botón de Acción */
.header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
}
.social-icons {
    display: flex !important;
    gap: 15px !important;
}
.social-icons a {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    transition: 0.3s !important;
}
.social-icons a:hover {
    color: #C5A880 !important;
}

/* El Botón Dorado Premium */
.btn-gold {
    background: #C5A880 !important;
    color: #0A1931 !important;
    padding: 10px 20px !important;
    text-decoration: none !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border-radius: 4px !important;
    transition: 0.3s !important;
    display: inline-block !important;
}
.btn-gold:hover {
    background: #ffffff !important;
    color: #0A1931 !important;
}

/* Ocultar elementos en pantallas chicas para evitar colapsos */
@media (max-width: 900px) {
    .nav-menu, .header-actions { 
        display: none !important; 
    } 
}

/* ==========================================================================
   FOOTER PREMIUM UNIFICADO (PARA INDEX Y ABOUT)
   ========================================================================== */
.main-footer {
    background-color: #0A1931; /* Azul Marino Santorini */
    color: #ffffff;
    padding: 60px 0 20px 0;
    box-sizing: border-box;
}
.main-footer .footer-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}
.main-footer .footer-logo-img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
    display: block;
}

/* El texto del logo corregido sin cursivas huerfanas */
.main-footer .footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #a3b2c7;
    margin: 15px 0 0 0;
    padding: 0;
    max-width: 350px;
    text-align: left;
}

.main-footer .footer-col h4, 
.main-footer .footer-social h4 {
    color: #C5A880; /* Dorado Premium */
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 600;
}
.main-footer .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.main-footer .footer-col ul li {
    margin-bottom: 12px;
}
.main-footer .footer-col ul a {
    color: #a3b2c7;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}
.main-footer .footer-col ul a:hover {
    color: #ffffff;
}

/* Iconos de Redes en Círculos Modernos */
.main-footer .social-row {
    display: flex;
    gap: 15px;
}
.main-footer .social-row a {
    color: #ffffff;
    background: #142642;
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.1rem;
    transition: 0.3s;
    text-decoration: none;
}
.main-footer .social-row a:hover {
    background: #C5A880;
    color: #0A1931;
    transform: translateY(-3px);
}

/* Barra inferior de Copyright */
.main-footer .footer-bottom {
    max-width: 1140px;
    margin: 40px auto 0 auto;
    padding-top: 20px;
    border-top: 1px solid #142642;
    text-align: center;
}
.main-footer .footer-bottom p {
    font-size: 0.8rem;
    color: #52637a;
    margin: 0;
}

/* Optimización para Celulares */
@media (max-width: 768px) {
    .main-footer .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .main-footer .footer-logo-img { 
        margin: 0 auto 15px auto; 
    }
    .main-footer .footer-tagline { 
        margin: 15px auto 0 auto;
        text-align: center;
    }
    .main-footer .social-row { 
        justify-content: center; 
    }
}

/* RESPONSIVE DISEÑO */
@media (max-width: 992px) {
    .section-container { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .social-row { justify-content: center; }
    .nav-menu { display: none; } /* Idealmente aquí se colocaría un menú hamburguesa */
}

/* Estilo para el enlace de volver al inicio */
        .btn-back {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding-top: 30px;    /* Espacio exacto arriba */
            padding-bottom: 15px; /* Espacio exacto abajo */
            color: #888;
            text-decoration: none;
            font-size: 0.85rem;
            transition: 0.3s;
            width: 100%;          /* Ocupa el ancho para centrar el bloque */
            justify-content: center;
        }
        .btn-back:hover {
            color: #0A1931; /* Cambia al azul oscuro al pasar el cursor */
        }
		
/* Estilos para el Logo Gráfico del Index Principal */
.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 5px 0;
}

.logo-img {
    height: 65px;       /* Altura ideal para una barra de navegación estándar */
    width: auto;        /* Mantiene la proporción original de tu logo */
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Efecto sutil al pasar el cursor */
.navbar-logo:hover .logo-img {
    transform: scale(1.02);
}

/* Contenedor del fondo para evitar el desborde del zoom */
.hero-section {
    position: relative;
    overflow: hidden; /* Crucial: recorta la imagen cuando crece */
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Queda detrás del texto */
    overflow: hidden;
}

/* La imagen que recibirá el efecto */
.hero-zoom-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que cubra todo el espacio sin deformarse */
    
    /* Aplicamos la animación: 
       Nombre: infiniteZoom | Duración: 25s | Ritmo: suave (ease) | Bucle: infinito | Dirección: alternada (va y vuelve) */
    animation: infiniteZoom 25s ease infinite alternate;
}

/* El texto debe quedar por encima de la imagen */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Definición del efecto de Zoom Permanente */
@keyframes infiniteZoom {
    0% {
        transform: scale(1); /* Tamaño original */
    }
    100% {
        transform: scale(1.12); /* Crece un 12% lentamente */
    }
}

/* NUEVOS ESTILOS PARA FORMULARIO DE RESERVA */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-blue);
    font-weight: 600;
}

.input-group input, .customer-data input {
    width: 100%;
    padding: 14px;
    border: 1px solid #dddddd;
    background-color: var(--beige);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition);
}

.input-group input:focus, .customer-data input:focus {
    border-color: var(--gold);
    background-color: var(--white);
}

.customer-data {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.booking-details {
    border-top: 1px dashed #dddddd;
    padding-top: 20px;
    transition: var(--transition);
}

.booking-details.hidden {
    display: none;
}

.price-breakdown {
    text-align: center;
    background-color: var(--beige);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 2px;
}

.price-breakdown p {
    font-size: 0.9rem;
    margin-bottom: 5px !important;
}

.text-gold {
    color: var(--gold);
}

.btn-block {
    width: 100%;
}

.booking-message {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 10px;
}

.msg-success { color: #2e7d32; }
.msg-error { color: #c62828; }
.msg-info { color: var(--gold); }

@media (max-width: 600px) {
    .customer-data { grid-template-columns: 1fr; }
}

/* Contenedor del separador "Ver Más" */
.gallery-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;           /* Alineado con el ancho de tu Hero */
    margin: 60px auto;    /* Margen arriba y abajo para dar aire entre secciones */
    gap: 20px;
}

/* Las líneas laterales grises finas */
.divider-line {
    flex: 1;
    height: 1px;
    background-color: #E0DBE3; /* Color suave para que no sea tosco */
}

/* El botón central de Texto + Icono */
.gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #0A1931;       /* Tu azul oscuro principal */
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;   /* Letra compacta pero legible */
    font-weight: 600;
    letter-spacing: 4px;  /* Espaciado elegante entre letras */
    padding: 10px 20px;
    transition: all 0.4s ease;
}

/* Icono de la cámara */
.gallery-btn i {
    font-size: 1.1rem;
    color: #C5A880;       /* Tu dorado característico */
    transition: transform 0.4s ease;
}

/* Efecto al pasar el mouse (Hover) */
.gallery-btn:hover {
    color: #C5A880;       /* El texto cambia a dorado */
}

.gallery-btn:hover i {
    transform: rotate(-15deg) scale(1.15); /* La cámara hace un guiño divertido y crece */
}

/* Estilos para el Logo Gráfico del Footer */
.footer-logo-container {
    display: flex;
    flex-direction: column; /* Coloca el texto abajo de la imagen */
    align-items: center;    /* Centra ambos elementos */
    margin-bottom: 30px;
}

.footer-logo-img {
    height: 70px;           /* Un tamaño ligeramente más compacto para el footer */
    width: auto;            /* Mantiene las proporciones originales */
    object-fit: contain;
    opacity: 0.9;           /* Un toque sutil de transparencia para que sea elegante */
    transition: opacity 0.3s ease;
}

/* Al pasar el cursor, el logo brilla al 100% */
.footer-logo-img:hover {
    opacity: 1;
}
/* Contenedor del footer que alinea los elementos en vertical */
.footer-logo-container {
    display: flex;
    flex-direction: column; /* Coloca el texto debajo de la imagen */
    align-items: center;    /* Centra el logo y la frase */
    margin-bottom: 30px;
}

/* Estilo exacto para lograr la cursiva fina y elegante */
.footer-tagline {
    font-family: 'Montserrat', sans-serif; 
    font-style: italic;         /* Aplica la cursiva */
    font-weight: 300;           /* Grosor ultra fino */
    font-size: 0.85rem;         /* Tamaño compacto y sofisticado */
    color: #A0A5B5;             /* Gris azulado suave para un contraste sutil */
    letter-spacing: 2px;        /* Espaciado elegante entre letras */
    margin-top: 15px;           /* Separación respecto a la imagen del logo */
    text-align: center;         /* Centra el párrafo */
    line-height: 1.6;           /* Espaciado cómodo entre líneas de texto */
}

/* --- Personalización de Fechas en Flatpickr --- */

/* Estilo para fechas APROBADAS (Ocupadas al 100% - Rojo elegante) */
.flatpickr-day.fecha-ocupada {
    background: #E74C3C !important; /* Rojo */
    color: white !important;
    border-color: #000000 !important;
    text-decoration: line-through; /* Opcional: tacha el número para más claridad */
    opacity: 0.8;
    cursor: not-allowed !important;
}

/* Estilo para fechas CONSULTADAS (Solicitadas previamente - Naranja/Dorado sutil) */
.flatpickr-day.fecha-consulta {
    background: #8894E2 !important; /* Naranja/Ocre corporativo */
    color: white !important;
    border-color: #000000 !important;
    opacity: 0.75;
    cursor: not-allowed !important;
}

/* Tooltip rápido al pasar el cursor sobre los días bloqueados */
.flatpickr-day.fecha-ocupada:hover,
.flatpickr-day.fecha-consulta:hover {
    background-transform: scale(1.05);
}

.TU-CLASE-DE-HEADER-DEL-INDEX {
    position: fixed; /* Lo fija en pantalla */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Lo mantiene por encima de las fotos */
}

.about-hero {
    margin-top: 80px; /* ◄ Si tu menú del index es más alto o más bajo, sube o baja este número para que calce perfecto */
    height: 320px;
    /* ... el resto del código queda igual ... */
}

/* ==========================================================================
   SOLUCIÓN DEFINITIVA: TEXTO DEL LOGO UNIFICADO EN ESCRITORIO
   ========================================================================== */

/* Asegura que el contenedor del logo se alinee a la izquierda en PC */
.main-footer .footer-logo-container {
    text-align: left !important;
    display: block !important;
}

/* Fuerza tipografía, alineación izquierda y elimina cursivas en PC */
.main-footer .tagline-santorini {
    font-family: 'Montserrat', sans-serif !important;
    font-style: normal !important;        /* Cero cursiva */
    font-weight: 400 !important;          /* Grosor estándar limpio */
    font-size: 0.85rem !important;        /* Tamaño unificado */
    line-height: 1.6 !important;
    color: #a3b2c7 !important;            /* Color gris azulado de About */
    
    /* Reseteo de márgenes y alineación en escritorio */
    margin: 15px 0 0 0 !important;        /* 15px arriba para separarlo del logo, 0 a los lados */
    padding: 0 !important;
    max-width: 350px !important;
    text-align: left !important;          /* Fuerza alineación a la izquierda */
    display: block !important;
}

/* Asegura que la imagen del logo esté a la izquierda en PC */
.main-footer .footer-logo-img {
    margin: 0 0 15px 0 !important;
    display: block !important;
}

/* ==========================================================================
   COMPORTAMIENTO EXCLUSIVO PARA CELULARES (AQUÍ SÍ SE CENTRA EN AMBOS)
   ========================================================================== */
@media (max-width: 768px) {
    .main-footer .footer-logo-container {
        text-align: center !important;
    }
    .main-footer .footer-logo-img { 
        margin: 0 auto 15px auto !important; 
    }
    .main-footer .tagline-santorini { 
        margin: 15px auto 0 auto !important;
        text-align: center !important;     /* Se centra solo en pantallas móviles */
    }
}

/* ==========================================================================
   SISTEMA DE MENÚ MÓVIL RESPONSIVO (HAMBURGUESA)
   ========================================================================== */

/* Botón Hamburguesa por defecto oculto en Escritorio */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.6rem;
    cursor: pointer;
    padding: 5px;
    z-index: 1100;
    transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: #C5A880; /* Dorado al pasar el mouse */
}

/* === CONFIGURACIÓN EXCLUSIVA PARA PANTALLAS MÓVILES Y TABLETS === */
@media (max-width: 900px) {
    
    /* Forzamos que los elementos del header se queden alineados en los extremos */
    .header-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }

    /* Mostramos la hamburguesa a la derecha */
    .mobile-menu-toggle {
        display: block !important;
    }

    /* Ocultamos las acciones de PC */
    .header-actions {
        display: none !important;
    }

    /* Transformamos el menú horizontal en una cortina vertical oculta */
    .nav-menu {
        position: fixed !important;
        top: 70px; /* Justo debajo del grosor del header */
        left: 0;
        width: 100%;
        height: 0; /* Oculto por defecto */
        background-color: #0A1931 !important; /* Fondo azul actual de Santorini */
        overflow: hidden;
        transition: height 0.4s ease-in-out !important; /* Animación fluida de cortina */
        box-shadow: 0 10px 15px rgba(0,0,0,0.2);
        z-index: 1050;
		height: 0;
        opacity: 0;
        overflow: hidden;
        transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out !important;
    }

    /* Cuando se activa mediante JS, se despliega con su altura completa */
    .nav-menu.active {
        height: 260px !important; /* Espacio exacto para los enlaces */
    }

    /* Alineamos los enlaces del menú móvil verticalmente */
    .nav-menu ul {
        flex-direction: column !important;
        gap: 0 !important;
        width: 100%;
        padding: 10px 0 !important;
    }

    .nav-menu ul li {
        width: 100%;
        text-align: center;
    }

    /* Estilo de los enlaces: Letras doradas y fondo sutil al tocar */
    .nav-menu a {
        display: block !important;
        padding: 15px 0 !important;
        color: #C5A880 !important; /* Letras doradas premium */
        font-size: 1rem !important;
        font-weight: 600 !important;
        letter-spacing: 1.5px !important;
        border-bottom: 1px solid #142642; /* Divisor sutil entre botones */
        transition: background 0.3s ease !important;
    }

    .nav-menu a:hover, .nav-menu a:active {
        background: #142642 !important; /* Feedback visual al presionar */
        color: #ffffff !important; /* Cambia a blanco al tocar */
    }

    /* Botón especial de reservas dentro del menú móvil */
    .nav-menu a.btn-menu-gold {
        background: #C5A880 !important;
        color: #0A1931 !important;
        border-bottom: none !important;
    }
}

/* Contenedor del reglamento: Limpio y adaptado a tus medidas */
.footer-reglamento-shift {
    margin-top: 30px; /* Tus 30px de separación */
    width: 100%;
    text-align: right;
    box-sizing: border-box;
    display: block; /* Asegura que el contenedor actúe como bloque */
}

/* La línea divisoria: Clavada a la derecha interna del bloque */
.footer-separator-mini {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 0 12px auto; 
    width: 190px; /* El ancho exacto que elegiste */
    display: block;
    
    /* 🛠️ CONTROL DE MOVIMIENTO PARA LA LÍNEA:
       Usamos position relative. El signo de menos (-) empuja hacia la izquierda.
       Modificá este valor en píxeles hasta que calce debajo de tus iconos. */
    position: relative;
    left: -120px; 
}

/* El botón del reglamento: Forzamos el movimiento que se resistía */
.reglamento-btn {
    color: #808080 !important;
    font-size: 0.80rem; /* Tus 0.90rem de tamaño elegidos */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
    width: 190px; /* Le aplicamos el ancho exacto también al botón */
    white-space: nowrap;

    /* 🛠️ CONTROL DE MOVIMIENTO PARA EL TEXTO:
       Al usar position: relative, obligamos al inline-flex a moverse sí o sí.
       Poné acá el mismo valor exacto que le diste a la línea de arriba 
       para que se muevan juntos en un bloque sólido. */
    position: relative;
    left: -120px; 
}

/* Efecto Hover */
.reglamento-btn:hover {
    color: #FFFFFF !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}