/* Al principio de tu archivo style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700;800;900&family=Montserrat:wght@400;700;800&display=swap');

/* --- Reseteo Básico y Fuentes --- */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

h1, h2, .date-banner, .location-banner, .tickets-btn {
    font-family: 'Anton', sans-serif;
}

/* --- Cabecera Principal --- */
.main-header {
    background-color: #111;
    padding: 25px 0;
    position: fixed;
    width: 100%;
    z-index: 100;
    top: 0;
    left: 0;
}

/* --- Contenedor Interior del Header --- */
.header-container {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* --- Sección Izquierda del Header (botones y iconos) --- */
.left-section {
    display: flex;
    align-items: center;
}

.left-section > * {
    margin-left: 15px;
}

.left-section > :first-child {
    margin-left: 0;
}

.left-section .tickets-btn {
    margin-left: 25px;
}

/* --- Sección Derecha del Header (Logo) --- */
.logo-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.header-logo {
    height: 90px;
    display: block;
    object-fit: contain;
}

/* --- ESTILO DEL BOTÓN DE ENTRADAS CON MONTSERRAT --- */

.tickets-btn {
    /* Fuente y peso especificados */
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; /* ExtraBold */

    /* Estilos de apariencia */
    background-color: #A78BFA; /* Mantenemos el color lila */
    color: #000000;
    border: 2px solid #000000;
    box-shadow: 4px 4px 0px #000000;

    /* Dimensiones consistentes con el resto */
    font-size: 16px;
    padding: 9px 28px;
    
    /* Otros estilos que ya teníamos */
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px; /* Un poco más de espacio para el nuevo icono */
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.2s ease-in-out;
}

/* El hover que ya habíamos definido */
.tickets-btn:hover {
    background: #000000;
    color: #A78BFA;
    border-color: #A78BFA;
    box-shadow: 2px 2px 0px #A78BFA;
    transform: translate(2px, 2px);
    cursor: pointer;
}

/* Flecha actualizada */
.tickets-btn::after {
    content: "🡥"; /* Nuevo icono de flecha */
    font-size: 22px; /* Ajustamos tamaño para que encaje bien */
    line-height: 1;
    font-weight: 800; /* Hereda el peso para consistencia */
    color: #000000; /* Color inicial */
    transition: color 0.2s ease-in-out;
}

.tickets-btn:hover::after {
    color: #A78BFA; /* Color en hover */
}

/*
EL RESTO DE TU CSS (.social-icon, .overlay-menu, etc.)
DEBE QUEDAR EXACTAMENTE COMO ESTABA
*/

/* Iconos de Redes Sociales - Lógica invertida (base oscura) */
.social-icon {
    background: #000000; /* CAMBIO: Fondo negro */
    color: #ffffff;     /* CAMBIO: Icono blanco */
    border: 2px solid #000000;
    box-shadow: 4px 4px 0px #000000;
    transition: all 0.2s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px; /* CAMBIO: Más grande */
    height: 46px; /* CAMBIO: Más grande */
    border-radius: 50%;
}

/* --- Efectos Hover Separados --- */

/* Hover para los iconos RRSS */
.social-icon:hover {
    background: #ffffff; /* CAMBIO: Fondo blanco */
    color: #000000; /* CAMBIO: Icono negro */
    border-color: #000000; /* CAMBIO: Borde negro */
    box-shadow: 4px 4px 0px #000000; /* Sombra igual a la base */
    transform: none; /* Sin desplazamiento */
    cursor: pointer;
}


/* Carrusel de Imágenes - Más Rápido y Fluido */
.image-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 00%;
    height: 100%;
    display: flex;
    /* CAMBIO: Transición más corta y con una curva de aceleración más suave */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    transform: translateY(-1px); /* AÑADIDO: Mueve el botón 1px hacia arriba */
}

.hamburger-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
}

/* --- Sección Principal (Hero) --- */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding-bottom: 1000px; /* ESPACIO AÑADIDO PARA EL FOOTER */
    box-sizing: border-box; /* Asegura que el padding se incluya en la altura total */
}

/* Carrusel de Imágenes (MODIFICADO) */
.image-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide {
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(1);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- Estilo para el Primer Slide (Simplificado) --- */
.image-slider .first-slide {
    background-image: url('images/fondo-slide-1.jpg.png');
}

/* --- Estilo para el Segundo Slide con Imagen de Fondo Local --- */
.image-slider .second-slide {
    background-image: url('images/fondo-slide-2.jpg.png'); /* Asegúrate de guardar la imagen como 'fondo-slide-2.jpg' */
}

/* --- Ocultar Slides y Círculos No Visibles --- */
.slide.hidden-slide {
    display: none; /* Oculta completamente el slide */
}

/* Ajuste para los puntos: Si el carrusel tiene 4 slides pero solo 2 visibles,
   tendremos que ajustar el width del .image-slider y el width del .slide
   temporalmente para que los 2 visibles ocupen el 100% del espacio,
   o hacer que los puntos sean controlados por JavaScript para que solo se creen los visibles.

   Por ahora, podemos ocultar los puntos si no quieres complicar el JS. */

.slider-dots .dot:nth-child(3),
.slider-dots .dot:nth-child(4) {
    display: none; /* Oculta los círculos 3 y 4 */
}

/* Contenido del Evento (MODIFICADO) */
.event-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.event-logo {
    width: 250px;
}

.date-banner, .location-banner {
    background-color: #A78BFA; /* CAMBIO: Color lila del botón */
    color: #000000; /* AÑADIDO: Color de texto negro para mejor contraste */
    padding: 5px 20px;
    font-size: 24px;
    letter-spacing: 1px;
    font-family: 'Anton', sans-serif;
}

.appearance-order {
    font-size: 18px;
    color: #eee;
}

.artist-list h1 {
    font-size: 8vw; /* Ligeramente más pequeño para que quepan nombres largos */
    margin: 10px 0;
    line-height: 1;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.artist-list h2 {
    font-size: 4vw;
    margin: 5px 0;
    line-height: 1;
    color: #eee;
    font-weight: normal;
    display: inline-block; /* Para que se pongan uno al lado del otro */
    margin: 0 10px;
}

/* Círculos del carrusel */
.slider-dots {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #fff;
}

/* --- Footer con Botón Animado --- */
.footer-container {
    /* Posicionamiento del footer */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    padding: 25px 0; /* Espacio vertical para que no esté pegado al borde */

    /* Centrado del botón */
    display: flex;
    justify-content: center;
    align-items: center;
	
/* LÍNEAS AÑADIDAS PARA LA BARRA */
    background-color: #000;
    border-top: 1px solid #333;
}

.btn-button {
    /* Fuente del proyecto y estilo de texto */
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    
    /* Estilos adaptados a blanco */
    text-decoration: none;
    font-size: 1em;
    color: #ffffff; /* CAMBIO: Color a blanco */
    padding: 12px 30px;
    border: 2px solid #ffffff; /* CAMBIO: Borde a blanco */
    position: relative;
    transition: 0.5s;
}

.btn-button::before,
.btn-button::after {
    content: "";
    position: absolute;
    width: 40px; /* Ligeramente más pequeño para un look más sutil */
    height: 40px;
    border: inherit; /* Hereda el borde blanco */
    transition: 1s;
}

.btn-button:before {
    top: -10px;
    left: -10px;
    border-width: 2px 0 0 2px;
}

.btn-button::after {
    bottom: -10px;
    right: -10px;
    border-width: 0 2px 2px 0;
}

.btn-button:hover::before,
.btn-button:hover::after {
    width: calc(100% + 18px);
    height: calc(100% + 18px);
    transition: 1s;
}

/* --- Menú Superpuesto (Versión de Alto Rendimiento) --- */
.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    
    /* CAMBIO: Fondo oscuro semi-transparente SIN desenfoque */
    background-color: rgba(17, 17, 17, 0.98); /* #111 con 98% de opacidad */
    /* backdrop-filter: blur(10px); */ /* <-- LÍNEA ELIMINADA */
    
    z-index: 1000;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50px);

    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                visibility 0.4s;
}

/* Estado cuando el menú está activo */
.overlay-menu.is-active {
    /* CAMBIO: Estado final de la animación (visible) */
    opacity: 1; /* Totalmente opaco */
    visibility: visible; /* Visible y activo */
    transform: translateY(0); /* Vuelve a su posición original */
}

/* Botón de cerrar */
.close-btn {
    position: absolute;
    top: 30px;
    left: 30px; /* CAMBIO: Posicionado a la izquierda */
    background: none;
    border: none;
    font-size: 40px;
    color: #ffffff; 
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-btn:hover {
    transform: rotate(-90deg); /* Opcional: rotar en sentido contrario */
}

.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(17, 17, 17, 0.98);
    z-index: 1000;
    display: flex;
    justify-content: flex-end; /* Alinea el contenido a la derecha */
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50px);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                visibility 0.4s;
}

.overlay-menu nav {
    width: 100%;
    padding-right: 10vw; /* Padding a la derecha */
}

.overlay-menu nav ul {
    list-style: none;
    padding: 0;
    text-align: right; /* Alinea el texto a la derecha */
}

.overlay-menu nav a {
    text-decoration: none;
    font-size: 5vw;
    font-family: 'Anton', sans-serif;
    color: #FFFFFF; /* Base: Blanco nuclear */
    transition: all 0.2s ease-in-out; 
}

.overlay-menu nav a:hover {
    color: #000000; /* Letras negras al hacer hover */
    
    /* Sombra blanca para el efecto de contorno/sombra */
    text-shadow: -1px -1px 0px #ffffff, 
                 1px 1px 0px #ffffff, 
                 2px 2px 4px rgba(255, 255, 255, 0.6); 
    opacity: 1; 
}

/* Las reglas .link-inicio, .link-artistas, .link-faqs ya no son necesarias y las puedes borrar */

/* --- Estilo para la Pared de Artistas (OPTIMIZADO) --- */

@keyframes marquee-up {
    from { transform: translateY(0); }
    to { transform: translateY(-50%); }
}

.artist-wall {
    /* CAMBIO: Ahora es el contenido principal, no un fondo fijo */
    background-color: #000;
    padding-top: 150px; /* Espacio para el header */
    padding-bottom: 150px; /* Espacio para el footer */
    width: 100vw;
    height: 100vh;
    box-sizing: border-box; /* Asegura que el padding no añada altura extra */
    
    /* Mantenemos el layout de columnas */
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.artist-column {
    height: 150%;
    transform: skewY(-15deg);
}

.artist-marquee {
    animation: marquee-up linear infinite;
    /* OPTIMIZACIÓN: Pistas para el navegador para que use la GPU */
    will-change: transform;
    transform: translateZ(0); /* Truco para forzar la aceleración por hardware */
}

/* Velocidades diferentes para cada columna (sin cambios) */
.artist-column:nth-child(1) .artist-marquee {
    animation-duration: 25s;
}
.artist-column:nth-child(2) .artist-marquee {
    animation-duration: 35s;
    animation-direction: reverse;
}
.artist-column:nth-child(3) .artist-marquee {
    animation-duration: 20s;
}

.artist-column .artist-name {
    font-family: 'Anton', sans-serif;
    font-size: 5vw;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    padding: 0 20px;
    margin: 20px 0;
    text-align: center;
    transform: skewY(15deg);
    opacity: 0.6;
    display: block;
}

/* --- Fondo con Destellos Sutiles para el Contenido Principal --- */
.main-content {
    background-color: #000;
    color: #fff;
    padding-top: 150px;
    padding-bottom: 150px;
    min-height: 100vh;
    box-sizing: border-box;
    position: relative; /* Necesario para posicionar el fondo ::before */
    overflow: hidden; /* Asegura que los destellos no se desborden */
}

.main-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Degradado radial para los destellos */
    background: radial-gradient(circle at 15% 50%, rgba(167, 139, 250, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 85% 20%, rgba(167, 139, 250, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 50% 80%, rgba(167, 139, 250, 0.05) 0%, transparent 20%);
    background-size: cover;
    opacity: 0.8; /* Ajusta la opacidad para que sean sutiles */
    z-index: -1; /* Envía los destellos detrás del contenido */
}

/* --- Estilos para la Página de FAQ (Versión Final) --- */

.faq-page-container {
    display: block;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #444;
}

/* Pregunta principal (desplegable) */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; /* Letra en negrita */
    font-size: 1.5em; /* Un poco más grande */
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: left;
    padding: 25px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover,
.faq-item.active .faq-question {
    color: #A78BFA; /* El texto se vuelve lila al pasar el ratón o al estar activo */
}

/* Flecha del desplegable */
.faq-arrow {
    width: 10px;
    height: 10px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.faq-item.active .faq-arrow {
    border-color: #A78BFA;
    transform: rotate(135deg);
}

/* Contenedor de la respuesta */
.faq-answer {
    color: #ccc;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s cubic-bezier(0, 1, 0, 1), padding 0.2s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px; /* Aumentado para respuestas largas */
    padding-bottom: 25px;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
}

/* --- ¡NUEVO! Estilo para la sub-pregunta destacada --- */
.faq-sub-question {
    display: inline-block; /* Para que el fondo se ajuste al texto */
    padding: 5px 10px;
    margin-bottom: 15px;
    font-weight: bold;
    
    /* Elige una de las dos opciones de color y borra la otra */
    
    /* Opción 1: Fondo Blanco (como pediste) */
    background-color: #ffffff;
    color: #000000;
    
    /* Opción 2: Fondo Rojo (alternativa) */
    /* background-color: #d9383e; */
    /* color: #ffffff; */
}

/* Estilo para los enlaces dentro de las respuestas del FAQ */
.faq-answer a {
    text-decoration: none; /* Quita el subrayado */
    color: #ccc; /* Mismo color que el texto de la respuesta */
    font-weight: bold; /* Letra en negrita */
    transition: color 0.2s ease;
}

.faq-answer a:hover {
    color: #A78BFA; /* Cambia a lila al pasar el ratón */
}


/* ============================================= */
/* --- MEDIA QUERIES PARA RESPONSIVIDAD --- */
/* ============================================= */

/* --- TABLETS Y DISPOSITIVOS PEQUEÑOS (hasta 1024px) --- */
@media (max-width: 1024px) {
    .header-logo {
        height: 70px; /* Hacemos el logo un poco más pequeño */
    }

    .artist-list h1 {
        font-size: 10vw; /* Ajustamos el tamaño del artista principal */
    }

    .artist-list h2 {
        font-size: 5vw; /* Y de los secundarios */
    }

    .overlay-menu nav a {
        font-size: 7vw; /* Hacemos los links del menú más grandes */
    }
}


/* --- MÓVILES (hasta 768px) --- */
@media (max-width: 768px) {
    /* --- CABECERA --- */
    .header-container {
        width: 95%; /* Usamos más espacio de la pantalla */
    }

    .logo-right {
        display: none; /* Ocultamos el logo para ganar espacio vital */
    }

    .left-section .tickets-btn {
        margin-left: 15px; /* Reducimos el margen del botón de entradas */
    }

    /* --- SECCIÓN PRINCIPAL (HERO) --- */
    .hero-section {
        padding-bottom: 150px; /* Reducimos el espacio inferior para el footer */
    }

    .artist-list h1 {
        font-size: 14vw; /* Hacemos el titular mucho más impactante en móvil */
    }

    .artist-list h2 {
        display: block; /* Hacemos que cada artista secundario ocupe su propia línea */
        margin: 10px 0;
        font-size: 7vw;
    }

    .date-banner, .location-banner {
        font-size: 18px; /* Reducimos el tamaño de las banners para que no desentonen */
        padding: 5px 15px;
    }

    .slider-dots {
        bottom: 100px; /* Subimos los puntos del carrusel */
    }

    /* --- FOOTER --- */
    .footer-container {
        padding: 15px 0; /* Reducimos el padding del footer */
    }
    
    .btn-button {
        font-size: 0.7em; /* Reducimos la letra del botón del footer para que quepa */
        letter-spacing: 1px;
        padding: 12px 15px;
    }

    /* --- MENÚ DESPLEGABLE --- */
    .overlay-menu nav {
        padding-right: 0; /* Eliminamos el padding lateral */
    }
    .overlay-menu nav ul {
        text-align: center; /* Centramos los links para una mejor experiencia móvil */
    }

    .overlay-menu nav a {
        font-size: 12vw; /* Aumentamos drásticamente el tamaño para que sea fácil de pulsar */
        line-height: 1.5;
    }
    
    .close-btn {
        top: 20px; /* Ajustamos la posición del botón de cerrar */
        left: 20px;
    }

    /* --- PÁGINA DE ARTISTAS (REFINADO PARA MÓVILES) --- */
.artist-wall {
    padding-top: 120px;
    /* Reducimos el espacio entre columnas en pantallas pequeñas */
    gap: 15px;
}

.artist-column {
    /* Reducimos la inclinación para mejorar la legibilidad en móviles */
    transform: skewY(-8deg);
}

.artist-column:nth-child(2) {
    /* Mantenemos oculta la columna central para evitar sobrecargar la pantalla */
    display: none;
}

.artist-column .artist-name {
    font-size: 11vw; /* Ajustamos ligeramente el tamaño para la nueva inclinación */
    /* Enderezamos el texto para que coincida con el nuevo ángulo de la columna */
    transform: skewY(8deg);
}
    
    /* --- PÁGINA DE F.A.Q --- */
    .main-content {
        padding-top: 120px; /* Menos espacio superior para el contenido */
    }
    
    .faq-list {
        max-width: 90%; /* El contenedor de preguntas usará el 90% del ancho */
    }
    
    .faq-question {
        font-size: 1.2em; /* Ajustamos el tamaño de la fuente de las preguntas */
        padding: 20px 0;
    }
}