@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500&display=swap');

/* VARIABLES DE COLOR */
:root {
    --color-primary-gold: #E7C68F;       
    --color-secondary-mauve: #DDA0DD;    
    --color-bg-light: #FFF2F2;           
    --color-bg-white: #FFFFFF;
    --color-text-dark: #1A1A1A;          
    --color-shadow-gold: rgba(231, 198, 143, 0.4);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--color-text-dark);
    overflow-x: hidden;
}

h1, h2, h3, .font-serif {
    font-family: 'Playfair Display', serif;
}

/* ESTILOS DEL NAVBAR */
.nav-link {
    color: white;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--color-primary-gold);
    transition: width 0.3s;
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}
.nav-link.active {
    color: var(--color-primary-gold);
}

/* NAVBAR CUANDO BAJAS (SCROLL) */
.scrolled-nav {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.scrolled-nav .nav-link { color: var(--color-text-dark) !important; }
.scrolled-nav #menu-btn i { color: var(--color-text-dark) !important; }

/* BOTÓN RESERVA */
.btn-reserva {
    background: linear-gradient(90deg, var(--color-primary-gold), var(--color-secondary-mauve));
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    color: var(--color-text-dark); 
    font-weight: 600;
    box-shadow: 0 4px 15px var(--color-shadow-gold);
    transition: all 0.3s;
}
.btn-reserva:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--color-shadow-gold);
}

/* GALERÍA LIGHTBOX */
#lightbox.show {
    display: flex !important;
    opacity: 1 !important;
}

#lightbox-img {
    transition: transform 0.2s ease-out; /* Zoom suave */
    cursor: zoom-in; 
    max-height: 90vh; 
    max-width: 90vw;
    object-fit: contain;
    
    /* OPTIMIZACIÓN MÓVIL: */
    touch-action: none; /* Evita que la página se mueva cuando arrastras el dedo en la foto */
    transform-origin: center center;
}

/* Estado con Zoom Activo */
#lightbox-img.zoomed {
    transform: scale(2.5); /* 2.5x de aumento */
    cursor: zoom-out;
    cursor: move; 
}
/* PERSONALIZACIÓN CHECKBOX */
.accent-primary-gold {
    accent-color: var(--color-primary-gold);
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-text-dark); }
::-webkit-scrollbar-thumb { background: var(--color-primary-gold); border-radius: 4px; }

/* MENÚ MÓVIL */
#mobile-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background-color: rgba(26, 26, 26, 0.98) !important;
    z-index: 40 !important;
    margin: 0 !important;
    padding-top: 80px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    overflow-y: auto;
}
#mobile-menu:not(.hidden) {
    display: flex !important;
}