/* --- VARIABLES DE LUJO & CONFIGURACIÓN --- */
:root {
    --gold: #D4AF37;           /* Dorado Premium */
    --gold-light: #F3E5AB;     /* Brillo Dorado */
    --black-bg: #050505;       /* Negro casi puro */
    --dark-grey: #121212;      /* Gris sofisticado para secciones */
    --text-white: #FFFFFF;
    --text-grey: #B0B0B0;
    
    --font-heading: 'Cinzel', serif;      /* Tipografía Clásica/Romana */
    --font-body: 'Montserrat', sans-serif; /* Tipografía Moderna/Limpia */
    
    --transition: all 0.5s ease;
}

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

body {
    background-color: var(--black-bg);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px; /* Espaciado elegante */
}

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

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

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

.gold-text {
    color: var(--gold);
}

.overline {
    display: block;
    font-family: var(--font-body);
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}

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

/* --- BARRA DE NAVEGACIÓN --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
    z-index: 1000;
    transition: var(--transition);
}

/* El logo se ajusta para que se vea elegante */
.nav-logo {
    height: 60px; 
    width: auto;
    filter: brightness(1.2); /* Resaltar el dorado del logo */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-white);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold);
    transition: var(--transition);
}

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

.btn-gold {
    border: 1px solid var(--gold);
    padding: 8px 25px;
    color: var(--gold) !important;
}

.btn-gold:hover {
    background-color: var(--gold);
    color: black !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4); /* Glow dorado */
}

.menu-toggle {
    display: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efecto Parallax de lujo */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    border: 1px solid rgba(212, 175, 55, 0.3); /* Marco sutil */
    padding: 60px 40px;
    background: rgba(0, 0, 0, 0.4); /* Fondo semi-transparente */
    backdrop-filter: blur(3px);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-white);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-bottom: 40px;
    font-weight: 300;
}

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

.btn-primary {
    background-color: var(--gold);
    color: black;
    padding: 15px 40px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--text-white);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--text-white);
    color: var(--text-white);
    padding: 15px 40px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* --- SECCIONES GENERALES --- */
.section-dark {
    padding: 100px 0;
    background-color: var(--dark-grey);
}

.section-black {
    padding: 100px 0;
    background-color: var(--black-bg);
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--gold);
}

.section-header p {
    color: var(--text-grey);
    max-width: 600px;
    margin: 10px auto 0;
}

/* --- EXPERIENCIA (Split) --- */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-frame {
    position: relative;
    padding: 15px;
    border: 1px solid var(--gold); /* Marco dorado fino */
}

.text-block h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

.text-block p {
    color: var(--text-grey);
    margin-bottom: 30px;
    font-size: 1rem;
}

.features-list {
    list-style: none;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: var(--text-white);
    font-family: var(--font-heading);
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.features-list li i {
    color: var(--gold);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* --- COCTELERÍA GRID --- */
.cocktail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.cocktail-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
}

.cocktail-card img {
    height: 100%;
    width: 100%;
    transition: transform 0.6s ease;
}

.cocktail-card:hover img {
    transform: scale(1.1);
    opacity: 0.6;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, black, transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.cocktail-card:hover .card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.card-overlay h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* --- EVENTOS GRID --- */
.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.event-item {
    position: relative;
    border-bottom: 2px solid var(--gold); /* Línea dorada abajo */
}

.event-item img {
    height: 300px;
    filter: grayscale(80%); /* Efecto blanco y negro elegante */
    transition: var(--transition);
}

.event-item:hover img {
    filter: grayscale(0%); /* Color al pasar mouse */
}

.event-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.7);
    padding: 10px 30px;
    border: 1px solid var(--gold);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0;
    transition: var(--transition);
}

.event-item:hover .event-info {
    opacity: 1;
}

/* --- CTA SECTION --- */
.cta-section {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact-box {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.whatsapp-btn-large {
    background-color: #25D366; /* Verde WhatsApp */
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-btn-large:hover {
    background-color: #128C7E;
    transform: scale(1.05);
}

.social-icons-large {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.social-icons-large a {
    font-size: 2rem;
    color: var(--text-white);
}

.social-icons-large a:hover {
    color: var(--gold);
}

.phone-number {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.5rem;
    margin-top: 20px;
}

/* --- FOOTER --- */
footer {
    background-color: #000;
    padding: 40px 0;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* --- ANIMACIONES --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* --- RESPONSIVE (Móvil) --- */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        background: black; /* Fondo sólido en móvil */
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: black;
        flex-direction: column;
        padding: 30px;
        gap: 30px;
        border-bottom: 1px solid var(--gold);
    }
    
    .nav-links.active {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

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

    .split-layout {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}