:root {
    --bg-color: #fcfcfc; /* Un blanco roto muy elegante */
    --text-color: #1a1a1a;
    --accent-color: #7a7a7a;
    --gold: #c5a059; /* Un toque dorado sutil para detalles */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

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

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

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }


/* NAVBAR */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 0.5rem 0;
    top: 0;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    box-shadow: 0 1px 10px rgba(0,0,0,0.05);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo img {
    height: 50px;
    width: auto;
    border-radius: 50%; /* Optional: if the logo should be circular or just square */
}

.navbar-menu {
    display: flex;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 2rem;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-menu a {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
}
.navbar-menu a:hover {
    color: var(--gold);
}

.navbar-cta {
    background-color: var(--text-color);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 600;
    border: 1px solid var(--text-color);
}
.navbar-cta:hover {
    background-color: transparent;
    color: var(--text-color);
}

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


/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(255,255,255,0.45), rgba(255,255,255,0.85)), url('https://images.unsplash.com/photo-1598371839696-5c5bb00bdc28?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px; /* Space for navbar */
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.hero-badge {
    display: inline-block;
    border: 1px solid var(--text-color);
    padding: 5px 15px;
    margin-bottom: 30px;
    color: var(--text-color);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 20px;
}

.hero-logo-large {
    max-width: 300px;
    width: 80%;
    height: auto;
    margin-bottom: 40px;
    display: block;
}

.btn-premium {
    background-color: var(--text-color);
    color: #fff;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    transition: 0.3s;
    border: 1px solid var(--text-color);
}
.btn-premium:hover {
    background-color: transparent;
    color: var(--text-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* ARTISTAS */
.artists-section { padding: 5rem 10%; }
.section-title { text-align: center; margin-bottom: 4rem; }
.section-title h2 { font-size: 2.5rem; }
.section-title .line { width: 60px; height: 1px; background: var(--text-color); margin: 1rem auto; }

.artist-card {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.artist-card.reverse { flex-direction: row-reverse; }

.artist-img { flex: 1; overflow: hidden; height: 500px; }
.artist-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: 0.5s; }
.artist-card:hover .artist-img img { filter: grayscale(0%); transform: scale(1.02); }

.artist-info { flex: 1; }
.artist-info h3 { font-size: 2rem; margin-bottom: 0.5rem; }
.artist-info .role { color: var(--gold); margin-bottom: 1.5rem; font-style: italic; font-family: var(--font-heading); }
.social-link { display: inline-block; margin-top: 1.5rem; font-weight: 600; border-bottom: 1px solid transparent; }
.social-link:hover { border-bottom: 1px solid var(--text-color); }

/* GALERÍA / CARRUSEL */
.gallery-section { padding: 4rem 5%; background-color: #f4f4f4; text-align: center; }

.carousel-container {
    position: relative;
    height: 400px;
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track-container {
    height: 100%;
    width: 100%;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-out; /* Suavizar un poco */
    cursor: grab;
}
.carousel-track:active {
    cursor: grabbing;
}

.carousel-slide {
    min-width: 300px; /* Ancho de cada foto */
    margin-right: 20px;
    height: 100%;
    list-style: none;
}

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

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 5;
    color: var(--gold);
    -webkit-text-stroke: 1px black; /* Borde negro fino para contraste */
    text-shadow: 0 2px 5px rgba(0,0,0,0.5); /* Sombra adicional para profundidad */
    transition: transform 0.2s;
}
.prev-btn { left: 10px; }
.next-btn { right: 10px; }
.carousel-btn:hover { transform: translateY(-50%) scale(1.1); }

/* LIGHTBOX (Visor de imágenes) */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--gold);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    -webkit-text-stroke: 1px black;
    transition: 0.3s;
    z-index: 2001;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .lightbox-content {
        width: 100%;
    }
}


/* RESERVA */
.reservation-section { padding: 5rem 10%; background-color: var(--bg-color); }

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.step-card {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: var(--gold);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.step-card p {
    font-size: 0.95rem;
    color: var(--accent-color);
}

.reservation-footer {
    text-align: center;
    margin-top: 3rem;
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-family: var(--font-heading);
}

/* CONTACT NEW SECTION */
.contact-new-section {
    padding: 5rem 10%;
    background-color: #fff;
}

.contact-container {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-details-col {
    flex: 1;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-row {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--bg-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold);
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.contact-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-color);
}

.contact-text p, .contact-text span, .contact-text a {
    font-size: 0.95rem;
    color: var(--accent-color);
    line-height: 1.5;
}

.social-contact {
    margin-top: 0.5rem;
}
.social-contact a {
    font-size: 1.2rem;
    margin-right: 1rem;
    color: var(--text-color);
}
.social-contact a:hover {
    color: var(--gold);
}

.map-column {
    flex: 1;
    height: 400px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* FOOTER */
footer {
    background: #111;
    color: #fff;
    padding: 3rem 5% 1rem;
    text-align: center;
}
.footer-col h3 { color: #fff; margin-bottom: 0.5rem; }
.copyright { border-top: 1px solid #333; padding-top: 1rem; font-size: 0.8rem; color: #777; margin-top: 2rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
    /* Mobile Menu Logic */
    .menu-toggle { display: block; z-index: 200; }
    
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        box-shadow: none;
        border-radius: 0;
        z-index: 150;
    }
    
    .navbar-menu.active {
        right: 0;
    }

    .navbar-menu a {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .navbar-logo { z-index: 200; }
    .navbar-cta { display: none; } /* Opcional: ocultar botón reserva en header móvil si quieres simplificar */
    
    .hero-logo-large {
        max-width: 250px;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    .step-card {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .contact-container {
        flex-direction: column;
    }
    .map-column {
        width: 100%;
        height: 300px;
    }
}