/* filepath: z:\WEB\style.css */
/* Estilos generales */
@import url('https://fonts.googleapis.com/css2?family=New+Rocker&display=swap');
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #f0f0f0;
    line-height: 1.6;
    
}
   .overlay {
        position: absolute;
        z-index: 10; /* Asegúrate de que no esté bloqueando el enlace */
    }

/* Header con blur */
.header {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-sizing: border-box;
    transition: background-color 0.3s ease, border-bottom-color 0.3s ease;
}
.header-content {
    text-align: center;
    display: flex;
    flex-direction: column; /* Alinea verticalmente */
    align-items: center; /* Centra horizontalmente */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
/* Logo */
.logo {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    flex-shrink: 0;
    transition: color 0.3s ease;
}
.logo:hover {
    color: #8affd1;
}
.logo img {
    width: 150px; /* Ancho deseado */
    height: auto; /* Mantiene la proporción */
}
/* Menú horizontal en escritorio */
.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 5px 0;
    transition: color 0.3s ease, transform 0.2s ease;
    position: relative;
}
a {
    pointer-events: auto; /* Asegúrate de que los enlaces sean clicables */
}
    
.nav-menu li a:hover {
    color: rgb(9, 12, 166);
    transform: translateY(-2px);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: rgb(9, 12, 166);
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* Hamburguesa oculta en escritorio */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1101;
    position: relative;
}

.hamburger span {
    display: block;
    height: 4px;
    width: 30px;
    background: #8affd1;
    margin: 6px 0;
    border-radius: 2px;
    transition: 0.4s;
}

/* Animación hamburguesa a X */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(0, 18px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0, -18px);
}
/* Media Queries para adaptabilidad móvil */


@keyframes fadeInMenu {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Sección de bienvenida */
.welcome-section {
    min-height: 110vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 80px;
    animation: fadeIn 1s ease-out;
    background-image: url('img/44.webp'); /* Imagen para escritorio (reemplazada por 44.webp) */
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1; /* Asegura que el fondo esté detrás del contenido */
}
.welcome-section h1 {
    font-size: 4em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 255, 255, 0.7);
    letter-spacing: 2px;
    position: relative;
    top: -30px; /* subir 30px las letras del header inicial */
}

.welcome-section p {
    font-size: 1.5em;
    max-width: 800px;
    line-height: 1.6;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1.5s ease-out 0.5s forwards;
    opacity: 0;
    margin-top: -200px;
    margin-right: 100px;
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos para otras secciones de contenido */
.content-section {
    padding: 80px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

#quienes-somos {
    background-color: #111;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: #eee;
}

#proximos-conciertos {
    background-color: #000000;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
    color: #eee;
}

.content-section h2 {
    font-size: 2.5em;
    color: rgb(163, 26, 26);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    font-family: "New Rocker", system-ui;
    font-weight: 400;
    font-style: normal;
}


.content-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 3px;
    background-color: rgb(9, 12, 166);
}

.content-section p {
    font-size: 1.1em;
    color: #bbb;
    margin-bottom: 20px;
}

/* Estilos para la lista de conciertos (mejorados) */
.concert-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 40px;
    align-items: start;
}

.concert-item {
    background: linear-gradient(180deg,#0f0f0f 0%, #131313 100%);
    border-radius: 12px;
    padding: 22px 20px 24px 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(.2,.9,.3,1), box-shadow 0.35s;
    border: 1px solid rgba(255,255,255,0.03);
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}

.concert-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg,#ff0044,#ff8a00);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.concert-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7), 0 6px 30px rgba(255,0,51,0.06);
}

.concert-item h3 {
    color: #ff6b6b;
    font-size: 1.4rem;
    margin: 8px 0 10px 0;
    font-family: "New Rocker", system-ui;
}

.concert-item p {
    color: #d6d6d6;
    margin: 6px 0;
    line-height: 1.4;
}

.concert-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.concert-date .day {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 8px 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(255,0,51,0.08) inset;
}
.concert-date .month {
    color: #ff8a00;
    font-weight: 700;
    letter-spacing: 1px;
}

.price {
    color: #8affd1;
    font-weight: 700;
    margin-top: 6px;
}

.concert-cta {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 18px;
    background: linear-gradient(90deg,#ff0044,#ff8a00);
    color: #111;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
}
.concert-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,0,51,0.18);
}

/* Estilos para el botón del mapa */
.map-container {
    position: relative;
}
.map-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
}
.map-open-btn {
    display: inline-block;
    padding: 10px 16px;
    background: linear-gradient(90deg,#ff0044,#ff8a00);
    color: #111;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.18s, box-shadow 0.18s;
}
.map-open-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,0,51,0.18);
}

.button:hover {
    background-color: rgb(9, 12, 166);
    transform: translateY(-2px);
    color: #000;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin: 30px 0;
}
.gallery-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.2s;
}
.gallery-img:hover {
    transform: scale(1.07);
}
.gallery-img.grande {
    grid-column: span 2;
    grid-row: span 2;
    height: 340px; /* el doble de alto */
}

/* Videos responsive */
.gallery-section .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin-top: 20px;
}
.video-container {
    background: rgba(17,17,17,0.6);
    padding: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.video-container iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
}

/* Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.gallery-modal.active {
    display: flex;
}
.modal-img {
    max-width: 80vw;
    max-height: 70vh;
    border-radius: 10px;
    box-shadow: 0 0 30px #000;
    transition: width 0.3s, height 0.3s;
}
.close-modal {
    position: absolute;
    top: 30px; right: 40px;
    color: #fff;
    font-size: 2.5em;
    cursor: pointer;
    z-index: 2100;
}
.arrow {
      background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 2em;
    padding: 10px 20px;
    margin: 0; /* Elimina el margen para que se adhieran a los lados */
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
    
    /* Nuevas reglas de posicionamiento */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.arrow:hover {
    background: rgb(134, 22, 22);
    color: #222;
}
/* Posición específica para cada flecha */
.arrow.left {
    left: 20px; /* Distancia del borde izquierdo */
}

.arrow.right {
    right: 20px; /* Distancia del borde derecho */
}
/* filepath: z:\WEB\style.css */
/* ... (tu CSS actual) ... */

/* Estilos para la nueva página de integrantes */

.member-hero-section {
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 110px;
    position: relative;
    background-image: url('img/24.webp'); /* Imagen de fondo para la cabecera de integrantes */
}

.member-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/39.webp') center center / cover no-repeat;
    opacity: 0.5; /* Opacidad para el fondo */
    z-index: -1;
}

.member-title {
    font-size: 4em;
    text-shadow: 2px 2px 10px rgba(0, 255, 255, 0.7);
    letter-spacing: 2px;
    font-family: "New Rocker", system-ui;
    font-weight: 400;
}

#miembros {
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    background-image: url('img/40.webp'); /* Imagen de fondo para la sección de miembros */
    background-size: cover;
    background-position: center;

}

.member-card {
    display: flex;
    align-items: center;
    max-width: 900px;
    width: 100%;
    gap: 40px;
    background-color: black;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.member-card.reverse {
    flex-direction: row-reverse;
}

.member-photo {
    width: 250px;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-card:hover .member-photo {
    transform: scale(1.05);
}

.member-info {
    text-align: left;
    flex: 1;
}

.member-info h3 {
    font-size: 2.5em;
    color: rgb(163, 26, 26);
    margin-bottom: 5px;
    font-family: "New Rocker", system-ui;
}

.member-role {
    font-size: 1.2em;
    color: rgb(9, 12, 166);
    font-style: italic;
    margin-bottom: 15px;
}

.member-bio {
    font-size: 1em;
    color: #ccc;
    line-height: 1.8;
}
#contacto {
    background-color: #000; /* Fondo negro para que resalte */
    color: #eee;
    padding: 80px 20px;
}

#contacto h2 {
    padding-top: 30px;
    color: rgb(163, 26, 26);
    font-family: "New Rocker", system-ui;
    font-size: 3em;
    margin-bottom: 20px;
}

.form-container {
    max-width: 700px; /* Ancho máximo para el contenedor del formulario */
    margin: 40px auto;
    padding: 40px;
    background: rgba(17, 17, 17, 0.7); /* Fondo semi-transparente para un efecto de cristal */
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-out; /* Animación de entrada suave */
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #8affd1;
    font-size: 1.1em;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: #222;
    border: 1px solid #444;
    border-radius: 8px;
    color: #f0f0f0;
    font-size: 1em;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgb(163, 26, 26);
    box-shadow: 0 0 10px rgba(163, 26, 26, 0.5);
    background-color: #333;
}

.form-group textarea {
    resize: vertical; /* Permite redimensionar verticalmente el área de texto */
    min-height: 120px;
}

.form-container .button {
    width: 100%;
    padding: 18px;
    font-size: 1.3em;
    font-weight: bold;
    letter-spacing: 2px;
    border: none;
    border-radius: 8px;
    background-color: rgb(163, 26, 26);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.form-container .button:hover {
    background-color: rgb(200, 30, 30);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(200, 30, 30, 0.4);
}

#form-status {
    margin-top: 25px;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1px;
}
/* --- CONCERTS SECTION --- */
.concerts-hero-section {
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 80px;
    position: relative;
    background-image: url('img/concerts-banner.webp'); 
}
.local-name,
.city-name {
    font-family: "New Rocker", system-ui;
    font-size: 2em;
    font-weight: 400;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    display: inline;
}
.local-name {
    color: #c00; /* rojo */
}
.city-name {
    color: #0066cc; /* azul */
}
.concerts-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.concerts-title {
    font-size: 4em;
    text-shadow: 2px 2px 10px rgba(0, 255, 255, 0.7);
    letter-spacing: 2px;
    font-family: "New Rocker", system-ui;
    font-weight: 400;
}

.concerts-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding: 80px 20px;
    margin-top: 80px;
}

.concert-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    background-color: #111;
    padding: 30px;

    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    gap: 40px;
}

.concert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.concert-poster {
    width: 300px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    border: 3px solid rgb(163, 26, 26);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.concert-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.concert-date {
    display: flex;
    align-self: flex-start;
    flex-direction: row;
    background-color: rgb(163, 26, 26);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 20px;
}

.concert-date .day {
    font-size: 2em;
    font-weight: bold;
    line-height: 1;
    margin-right: 5px;
}

.concert-date .month {
    font-size: 1em;
    text-transform: uppercase;
    line-height: 1;
}

.concert-date .year {
    font-size: 0.8em;
    opacity: 0.8;
}

.concert-info h3 {
    font-size: 2em;
    color: #8affd1;
    margin-bottom: 10px;
    font-family: "New Rocker", system-ui;
}

.concert-location, .concert-time {
    font-size: 1.1em;
    color: #ccc;
    margin-bottom: 15px;
}

.concert-description {
    font-size: 1em;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ticket-link {
    display: inline-block;
    padding: 12px 25px;
    background-color: rgb(163, 26, 26);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.ticket-link:hover {
    background-color: rgb(200, 30, 30);
}
/* --- CONCERT PAGE STYLES --- */
#concert-page-hero {
    min-height: auto;
    padding-top: 200px; /* separa más el cartel del menú */
    padding-bottom: 60px;
    background-color: #000;
}

.concert-hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.concert-page-poster {
    width: 520px; /* cartel más grande */
    max-width: 90%;
    height: auto;
    border-radius: 12px;
    border: 8px solid rgb(163, 26, 26);
    box-shadow: 0 18px 50px rgba(255, 0, 0, 0.35);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.concert-page-poster:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 30px 70px rgba(255,0,51,0.32);
}

.concert-page-details {
    text-align: left;
}

/* Layout: keep footer at the bottom */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.site-main {
    flex: 1 0 auto;
}

/* Estilos llamativos y rockeros para el botón de Gigstarter */
.gigstarter-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
}
.gigstarter-button img {
    width: 320px;
    max-width: 90%;
    border-radius: 12px;
    border: 4px solid #ff0033; /* rojo intenso */
    box-shadow: 0 10px 30px rgba(255, 0, 51, 0.25), inset 0 0 40px rgba(255, 20, 20, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    filter: saturate(1.2) contrast(1.1);
}
.gigstarter-button img:hover {
    transform: translateY(-8px) rotate(-1deg) scale(1.04);
    box-shadow: 0 18px 45px rgba(255, 0, 51, 0.45), 0 0 40px rgba(255, 50, 50, 0.12);
    filter: saturate(1.4) contrast(1.15) drop-shadow(0 8px 20px rgba(255, 0, 51, 0.25));
}

/* Pequeña animación pulsante opcional para llamar la atención */
.gigstarter-button img.pulse {
    animation: pulseGlow 2.2s infinite ease-in-out;
}
@keyframes pulseGlow {
    0% { box-shadow: 0 10px 30px rgba(255,0,51,0.25); transform: translateY(0); }
    50% { box-shadow: 0 22px 60px rgba(255,0,51,0.45); transform: translateY(-6px); }
    100% { box-shadow: 0 10px 30px rgba(255,0,51,0.25); transform: translateY(0); }
}

/* Asegura que el footer se vea sobre el contenido y tenga estilo coherente */
.main-footer {
    background: linear-gradient(90deg,#0b0b0b,#130000);
    color: #ccc;
    padding: 24px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.main-footer .footer-logo img {
    width: 110px;
}

.concert-page-title {
    font-size: 3.5em;
    color: #8affd1;
    margin-bottom: 20px;
}

.concert-page-meta {
    font-size: 1.2em;
    color: #ccc;
    line-height: 1.8;
}

.concert-page-meta p {
    margin: 5px 0;
}

.concert-page-button {
    margin-top: 30px;
    font-size: 1.2em;
    padding: 15px 30px;
}

.section-title {
    font-size: 3em;
    color: rgb(163, 26, 26);
    margin-bottom: 40px;
}

#concert-description p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1em;
}

#map-section {
    background-color: #000;
}

.map-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border: 2px solid #555;
}
/* filepath: z:\WEB\style.css */
/* --- GALLERY STYLES --- */
#galeria {
    background-color: #000;
    padding-top: 120px;
}

.gallery-title {
    font-size: 4em;
    color: rgb(163, 26, 26);
    margin-bottom: 60px;
    font-family: "New Rocker", system-ui;
}

.gallery-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    text-align: left;
}

.gallery-section h2 {
    font-family: "New Rocker", system-ui;
    font-size: 2.5em;
    color: #8affd1;
    margin-bottom: 30px;
    text-align: center;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.image-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #333;
}

.image-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(163, 26, 26, 0.4);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    justify-content: center;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.audio-player-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Estilos del reproductor de audio personalizado */
.custom-audio-player {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    gap: 20px;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.play-pause-btn {
    background-color: rgb(163, 26, 26);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5em;
    cursor: pointer;
    transition: background-color 0.3s;
    position: relative;
    z-index: 10;
}

.play-pause-btn:hover {
    background-color: rgb(200, 30, 30);
}

.player-info {
    flex: 1;
}

.song-title {
    font-weight: bold;
    font-size: 1.1em;
    color: #8affd1;
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background-color: #444;
    border-radius: 5px;
    margin-top: 5px;
    cursor: pointer;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0;
    background-color: rgb(163, 26, 26);
    transition: width 0.1s linear; /* Animación suave del progreso */
}

.player-time {
    color: #ccc;
    font-size: 0.9em;
    min-width: 90px;
}
.main-footer {
    background: linear-gradient(90deg, #111 60%, #222 100%);
    color: #8affd1;
    padding: 40px 20px 20px 20px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
    font-family: "New Rocker", system-ui;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.footer-logo img {
    width: 90px;
    height: auto;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px #8affd1);
    transition: transform 0.2s;
}
.footer-logo img:hover {
    transform: scale(1.07);
}
.footer-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
}
.footer-links a {
    color: #8affd1;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.2s;
    font-family: inherit;
}
.footer-links a:hover {
    color: rgb(163, 26, 26);
}
.footer-copy {
    font-size: 0.95em;
    color: #bbb;
    margin-top: 8px;
    font-family: 'Arial', sans-serif;
}

/* --- Estilos de la Tienda --- */
.shop-hero-section {
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 80px;
    position: relative;
    background-image: url('img/shop-banner.webp'); /* Asegúrate de tener esta imagen */
}

.shop-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.shop-title {
    font-size: 4em;
    text-shadow: 2px 2px 10px rgba(0, 255, 255, 0.7);
    letter-spacing: 2px;
    font-family: "New Rocker", system-ui;
    font-weight: 400;
}

/* --- Product Grid & Cards --- */
#merchandising {
    background-color: #000;
    padding-top: 60px;
    padding-bottom: 60px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: #111;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.product-image-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    border: 2px solid rgb(163, 26, 26);
}

.product-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.product-info {
    margin-top: 20px;
}

.product-name {
    font-size: 1.8em;
    color: #8affd1;
    margin-bottom: 10px;
    font-family: "New Rocker", system-ui;
}

.product-description {
    font-size: 1em;
    color: #bbb;
    min-height: 60px;
}

.add-to-cart-btn {
    background-color: #8affd1;
    color: #000;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.add-to-cart-btn:hover {
    background-color: #fff;
    transform: scale(1.02);
}
.product-container {
    display: flex;
    flex-wrap: wrap;
    background-color: #2c2c2c; /* Fondo sólido para la tarjeta del producto */
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    max-width: 1000px;
    width: 100%;
}

.product-image {
    flex: 1;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-details {
    flex: 1;
    padding: 40px;
}

.product-name {
    font-size: 2.5em;
    margin: 0 0 10px 0;
}

.product-price {
    font-size: 1.8em;
    color: #4CAF50;
    margin-bottom: 25px;
}

.options-group {
    margin-bottom: 20px;
}

.options-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}



/* Botón de añadir al carrito */
.add-to-cart-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    margin-top: 30px;
    transition: background-color 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: #5cb85c;
}

.product-description {
    margin-top: 40px;
    line-height: 1.6;
}

.gradual-blur-fixed {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1000;
}
/* Cartel animado Próximamente */
:root{
  --bg: transparent;
  --txt: #fffbf0;
  --accent: #7c3aed;
  --speed: 18s;
  --gap: 2rem;
  --font-size: clamp(18px, 3vw, 36px);
}
.marquee-wrap{
  width: 100vw;         /* Ocupa todo el ancho de la ventana */
  margin: 0;            /* Sin márgenes */
  border-radius: 0;     /* Sin bordes redondeados */
  background: var(--bg);
  overflow: hidden;
  box-shadow: none;     /* Sin sombra */
  border: none;         /* Sin borde */
  position: relative;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
}
.marquee{
  display:block;
  position:relative;
  width:100%;
  padding: 1rem 0.5rem;
}
.marquee__inner{
  display:flex;
  gap: var(--gap);
  align-items:center;
  white-space:nowrap;
  will-change: transform;
  animation: scroll var(--speed) linear infinite;
}
.tag{
  font-weight:700;
  font-size: var(--font-size);
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .25em .6em;
  display:inline-block;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  box-shadow: 0 2px 8px rgba(0,0,0,0.45) inset;
  color: var(--txt);
}
.tag strong{
  color: var(--accent);
  margin-left: .35rem;
}
.marquee-wrap:hover .marquee__inner,
.marquee-wrap:focus-within .marquee__inner{
  animation-play-state: paused;
}
@keyframes scroll{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width:420px){
  :root{ --font-size: 16px; --gap: 1rem; --speed: 14s; }
}
@media (max-width: 768px) {
    .product-container {
        flex-direction: column;
    }
}
/* Media Queries para diseño responsive */
@media (max-width: 768px) {
    .shop-title {
        font-size: 3em;
    }
    .product-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    .product-card {
        max-width: 400px;
        margin: 0 auto;
    }
    .product-detail-container {
        flex-direction: column;
        gap: 40px;
    }
    .product-detail-name {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .shop-title {
        font-size: 2.5em;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-options {
        flex-direction: column;
        gap: 15px;
    }
}
/* Media Queries for Mobile */
@media (max-width: 768px) {
    .shop-hero-section {
        padding-top: 120px;
    }

    .shop-title {
        font-size: 2.5em;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Adaptabilidad móvil */
@media (max-width: 600px) {
    .main-footer {
        padding: 28px 8px 12px 8px;
    }
    .footer-logo img {
        width: 65px;
        margin-bottom: 6px;
    }
    .footer-links {
        gap: 12px;
        font-size: 1em;
        flex-direction: column;
        align-items: center;
    }
    .footer-copy {
        font-size: 0.85em;
        margin-top: 6px;
    }
}

@media (max-width: 600px) {
    .gallery-modal .arrow {
        font-size: 1.7em;
        padding: 8px 12px;
        top: 50%;
        transform: translateY(-50%);
    }
    .gallery-modal .arrow.left {
        left: 8px;
        bottom: auto;
    }
    .gallery-modal .arrow.right {
        right: 8px;
        bottom: auto;
    }
    .gallery-modal .modal-img {
        max-width: 95vw;
        max-height: 55vh;
        margin: 0 1vw;
    }
}

/* Adaptabilidad para móviles */
@media (max-width: 768px) {
    .gallery-title {
        font-size: 3em;
    }
    .gallery-section h2 {
        font-size: 2em;
    }
    .video-grid {
        grid-template-columns: 1fr;
    }
    .custom-audio-player {
        flex-direction: column;
        align-items: flex-start;
    }
    .player-controls {
        width: 100%;
    }
    .player-time {
        align-self: flex-end;
    }
}
/* Adaptabilidad para móviles */
@media (max-width: 900px) {
     #concert-page-hero {
        /*
        * Añade esta línea para crear un espacio
        * encima del contenido igual a la altura de tu menú
        */
        padding-top: 160px;/* Ajusta este valor si tu menú es más alto o más bajo */
    }

    .concert-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .concert-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .concert-page-details {
        text-align: center;
    }
    
    .concert-page-poster {
        width: 100%;
        max-width: 300px;
    }

    .concert-page-title {
        font-size: 2.5em;
        margin-top: -20px;
    }
    
    .concert-page-meta {
        font-size: 1em;
        margin-top: -10px;
    }
    
    .concert-page-button {
        width: 70%;
        font-size: 1.1em;
        margin-top: -5px;
    }

    .section-title {
        font-size: 2.5em;
    }
}

/* Adaptabilidad para dispositivos móviles */
@media (max-width: 768px) {
    .concert-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 20px;
        padding-top: 70px;
    }

    .concert-poster {
        width: 100%;
        max-width: 300px;
    }
    
    .concert-date {
        align-self: center;
    }

    .concert-info h3 {
        font-size: 1.8em;
    }
    
    .ticket-link {
        width: auto;
        min-width: 120px;
        max-width: 80vw;
        font-size: 1em;
        padding: 10px 16px;
        margin: 0 auto;
        display: inline-block;
    }
}
@media (max-width: 600px) {
    .form-container {
        padding: 20px;
        margin: 20px auto;
        border-radius: 10px;
    }

    #contacto h2 {
        font-size: 2.5em;
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 1em;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 0.9em;
    }
    
    .form-group textarea {
        min-height: 100px;
    }

    .form-container .button {
        padding: 15px;
        font-size: 1.1em;
        letter-spacing: 1px;
    }

    #form-status {
        font-size: 1em;
    }
}
/* Media query para móviles */
@media (max-width: 600px) {
    .form-container {
        padding: 20px;
    }

    .form-group label {
        font-size: 1em;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
    }

    .form-container .button {
        padding: 15px;
        font-size: 1.1em;
    }
}
/* Adaptabilidad para dispositivos móviles */
@media (max-width: 768px) {
    #miembros {
         padding: 60px 40px;
        gap: 40px;
    }

    .member-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 40px;
    }

    .member-card.reverse {
        flex-direction: column;
    }

    .member-photo {
        width: 180px;
        height: 180px;
        margin: 0 auto;
    }

    .member-info {
        text-align: center;
    }

    .member-info h3 {
        font-size: 2em;
    }

    .member-role {
        font-size: 1em;
    }

    .member-bio {
        font-size: 0.9em;
    }
}

/* Media Queries para adaptabilidad móvil */
@media (max-width: 480px) {
    .logo {
        font-size: 24px;
    }

    .welcome-section h1 {
        font-size: 2em;
    }

    /* Asegura que en móviles se use la imagen 44.webp como fondo */
    .welcome-section {
        background-image: url('img/44.webp') !important;
        background-size: cover;
        background-position: center;
        margin-top: 80px; /* mantiene separación respecto al header fijo */
    }

    .concert-item {
        min-width: unset;
        width: 100%;
    }
}
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 20px;
    }

    .logo {
        margin-bottom: 10px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.97);
        gap: 30px;
        z-index: 1100;
        padding: 0;
        margin: 0;
    }

    .nav-menu.active {
        display: flex;
        animation: fadeInMenu 0.3s;
    }

    .nav-menu li a {
        font-size: 2em;
        color: rgb(126, 21, 21);
    }

    .hamburger {
        display: flex;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1200;
    }

    .welcome-section {
        background-image: url('img/mobile.png'); /* Imagen para móvil */
    }
}