/* Configuraciones base (Estilo oscuro moderno) */
body {
    background-color: #0d0d0d;
    color: #f2f2f2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

/* La barra de navegación azul que dibujaste */
header {
    background-color: #1a1a1a;
    border-bottom: 2px solid #3366ff;
    padding: 15px 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    justify-content: flex-end;
    margin: 0;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #9933ff; /* Color morado de LohjaByte al pasar el mouse */
}

/* --- ESTILOS PARA LA PÁGINA DE LA BANDA --- */

/* Aquí va tu poster principal de fondo */
.hero-banda {
    /* Cambia 'tu-poster-fondo.jpg' por el nombre de tu imagen cuando la tengas */
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('tu-poster-fondo.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh; /* Ocupa el 80% de la pantalla */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contenedor-qr {
    background-color: rgba(20, 20, 20, 0.85);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #3172d4;
}

.imagen-qr {
    width: 250px;
    height: 250px;
    border-radius: 10px;
    margin-top: 20px;
}

/* Sección de abajo: Texto y Poster 2 */
.presentacion-banda {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 80px 50px;
    background-color: #121212;
}

.texto-banda {
    max-width: 50%;
}

.texto-banda h2 {
    color: #8859cf;
    font-size: 2.5rem;
}

.poster-secundario img {
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

/* --- ESTILOS PARA LA PÁGINA PRINCIPAL (INDEX) --- */

.hero-video {
    position: relative;
    min-height: 100vh; /* Ahora la página puede estirarse si hay mucho texto */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding: 100px 20px 40px 20px; /* Da espacio arriba y abajo para que nada choque */
    box-sizing: border-box;
}

/* Magia para que el video cubra todo el fondo */
.video-fondo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Lo manda al fondo */
    filter: brightness(0.3); /* Lo oscurece un poco para que las letras se lean bien */
}

/* Centrado exacto que pediste */
.contenido-centrico {
    z-index: 1; /* Pone el texto por encima del video */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Espacio entre los elementos */
}

.contenido-centrico h1 {
    font-size: 4rem;
    margin: 0;
    color: #ffffff;
    text-shadow: 0 0 20px #9933ff; /* Un brillo morado épico */
}

.contenido-centrico h2 {
    font-size: 1.5rem;
    margin: 0;
    color: #cccccc;
}

/* El botón para el audio */
.btn-experiencia {
    background-color: transparent;
    color: rgb(74, 44, 183);
    border: 2px solid rgb(69, 108, 151);
    padding: 10px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-experiencia:hover {
    background-color: red;
    color: black;
    box-shadow: 0 0 15px red;
}

/* La presentación justo abajo */
.presentacion-centrada {
    margin-top: 15px; /* Antes tenía 40px, ahora estará mucho más pegado */
    max-width: 800px;
}

.presentacion-centrada h3 {
    color: #9933ff;
    font-size: 2rem;
    margin-bottom: 10px;
}
/* --- FONDO DE PANTALLA COMPLETA PARA LA BANDA --- */
.pagina-banda {
    /* Reemplaza 'foto-banda.jpg' con el nombre de la foto que te pase Ruli */
    /* El rgba(0,0,0, 0.75) es un filtro oscuro para que las letras blancas y el QR se sigan leyendo bien */
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('Tulipan.jpeg');
    
    background-size: cover; /* Hace que la imagen cubra toda la pantalla sin importar el tamaño del monitor */
    background-position: center; /* Centra la foto en lo más importante */
    background-attachment: fixed; /* ¡Efecto Parallax! La imagen se queda pegada al fondo aunque hagas scroll hacia abajo */
    background-repeat: no-repeat;
    
    color: #f2f2f2;
}

/* Como el fondo ya es la imagen, le quitamos el color sólido a la sección de abajo para que sea transparente y deje ver la foto */
.presentacion-banda {
    background-color: transparent; 
}
/* Estilos para el logotipo oficial en el centro */
.logo-principal {
    max-width: 500px;
    width: 90%;
    height: auto;
    margin-top: -180px;
    margin-bottom: -200px; /* ¡LA MAGIA! Si lo sigues viendo separado, cámbialo a -70px o -80px hasta que quede pegadito */
    filter: drop-shadow(0px 0px 15px rgba(153, 51, 255, 0.8)); 
}
/* --- ESTILOS PARA LA PÁGINA DE DONACIONES --- */
.pagina-donaciones {
    background-color: #0a0a0a;
}

.hero-donaciones {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.caja-donacion {
    background-color: #141414;
    border: 1px solid #3366ff;
    border-radius: 15px;
    padding: 50px 40px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(51, 102, 255, 0.2);
}

.caja-donacion h2 {
    color: #9933ff;
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 20px;
}

.caja-donacion p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* El botón gigante de PayPal */
.btn-paypal {
    display: inline-block;
    background-color: #003087; /* Azul oficial de PayPal */
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 15px 40px;
    border-radius: 30px;
    margin: 20px 0;
    transition: all 0.3s ease;
    border: 2px solid #005ea6;
}

.btn-paypal:hover {
    background-color: #005ea6;
    box-shadow: 0 0 20px rgba(0, 94, 166, 0.6);
    transform: scale(1.05); /* Se hace un poquito más grande al pasar el mouse */
    color: white;
}

.nota-agradecimiento {
    font-size: 0.9rem !important;
    color: #666666 !important;
    margin-bottom: 0 !important;
}

/* --- ESTILOS PARA LA PÁGINA DE PROYECTOS --- */
.hero-pantalla-completa {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.caja-construccion {
    background-color: #141414;
    border: 2px dashed #9933ff; /* Borde punteado estilo "blueprint" */
    border-radius: 15px;
    padding: 60px 40px;
    text-align: center;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 0 20px rgba(153, 51, 255, 0.05);
}

.caja-construccion h2 {
    color: #3366ff;
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 20px;
}

.texto-animado {
    color: #f2f2f2;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.texto-secundario {
    color: #888888;
    font-size: 1.1rem;
}

/* --- LA ANIMACIÓN DE LOS PUNTOS --- */
.puntos::after {
    content: '';
    animation: escribirPuntos 1.5s infinite; 
}

@keyframes escribirPuntos {
    0%   { content: ''; }
    25%  { content: '.'; }
    50%  { content: '..'; }
    75%  { content: '...'; }
    100% { content: ''; }
}
/* --- MODO CELULAR (DISEÑO RESPONSIVO) --- */
@media screen and (max-width: 768px) {
    /* Si usaste un contenedor flex para la banda, esto lo apilará verticalmente */
    div {
        flex-direction: column !important;
    }

    /* Hacemos que la foto de la banda y el QR no se salgan de la pantalla */
    img, .foto-banda {
        max-width: 100% !important;
        height: auto !important;
        margin: 10px auto !important;
    }

    /* Le damos espacio a los lados para que el texto no toque las orillas */
    body {
        padding: 10px !important;
    }

    /* Reducimos el tamaño de las marcas de agua gigantes para que no estorben */
    h1, h2 {
        font-size: 2rem !important;
        text-align: center !important;
    }
}
/* --- ESTILO PARA EL ENLACE DE INSTAGRAM --- */
.enlace-directo {
    color: #33ccff; /* Azul neón brillante */
    font-weight: bold;
    text-decoration: none; 
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 15px; 
    transition: all 0.3s ease;
}

/* Brillo al pasar el dedo/mouse */
.enlace-directo:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #33ccff;
}