
* {
    box-sizing: border-box; 
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #111;
    color: #fff;
    text-align: center;
    overflow-x: hidden;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 20px; 
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.6);
    left: 0; 

}

.logo img {
    width: 150px;
    height: auto;
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 15px; 
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1c6ba6;
}

.menu-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    display: none;
}

/* Banner principal */
.banner {
    background: url('imagenes/slider1-large.jpg') no-repeat right center/cover;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start; 
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin-top: 0px;
}

.overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px 20px; 
    border-radius: 10px;
    position: absolute;
    bottom: 20px; 
    width: 100%;
}

.banner h1 {
    font-size: 4rem;
    margin: 0;
    color: #fff;
}

.banner p {
    font-size: 1.5rem;
    color: #fff;
}

section {
    padding: 60px 20px;
    margin: 20px auto;
    max-width: 1000px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.overlay  {
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.banner {
    animation: zoomIn 3s ease-in-out;
}

@keyframes zoomIn {
    0% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
#musica a, #contacto a {
    display: inline-block;
    margin: 15px;
}

#musica img, #contacto img {
    width: 50px;
    transition: transform 0.3s;
}

#musica img:hover, #contacto img:hover {
    transform: scale(1.2);
}

footer {
    background: #222;
    padding: 20px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;  
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        width: 100%;
        text-align: right;
    }

    .nav-links li {
        padding: 15px;
        border-top: 1px solid #444;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .navbar {
        justify-content: space-between;
    }


    .logo img {
        width: 120px; 
    }

    
    .banner h1 {
        font-size: 2.5rem; 
    }

    .banner p {
        font-size: 1rem; 
    }

    .banner {
        background: url('imagenes/slider1-small.jpg') no-repeat right center/cover;
        height: 90vh;
        border-radius: 0;
    }
}

/* Biografía */
#biografia {
    background: rgba(0, 0, 0, 0.6); /* Fondo oscuro con opacidad */
    padding: 60px 20px;
    margin: 20px auto;
    max-width: 1000px;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    color: #fff;
    font-family: 'Arial', sans-serif;
    text-align: justify;
    line-height: 1.8;
    overflow: hidden; /* Evita que el contenido se desborde */
}

/* Contenedor de la biografía (Texto e imagen) */
.biography-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

/* Estilo de la imagen */
.bio-image {
    flex: 1;
    max-width: 400px; /* Limitar el tamaño de la imagen */
    margin-right: 20px;
    margin-bottom: 20px;
}

.bio-image img {
    width: 100%; /* La imagen se adapta al contenedor */
    height: auto;
    border-radius: 10px;
}

/* Estilo del texto */
.bio-text {
    flex: 2;
    max-width: 600px;
}

/* Título */
h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #1c6ba6; /* Color de la marca */
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Párrafo introductorio */
.biography-content .intro {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #1c6ba6;
    font-weight: bold;
    text-align: center;
}

/* Párrafos */
.biography-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: 0.5px;
}

/* Resaltar los nombres de los miembros */
.biography-content p strong {
    color: #1c6ba6;
    font-weight: 600;
}

/* Estilo de texto en cursiva */
.biography-content p em {
    font-style: italic;
    font-size: 1.3rem;
    color: #1c6ba6;
    display: block;
    margin-top: 20px;
    text-align: center;
}

/* Efecto de borde del título */
h2::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background-color: #1c6ba6;
    border-radius: 5px;
}

/* Animación */
.biography-content {
    animation: fadeIn 1.5s ease-in-out;
}

/* Animación de entrada */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Diseño responsive */
@media (max-width: 768px) {
    .biography-content {
        flex-direction: column; /* Apilar la imagen y el texto */
        text-align: center;
    }

    .bio-image {
        max-width: 100%; /* La imagen ocupará el 100% en pantallas pequeñas */
        margin-bottom: 20px;
    }

    .bio-text {
        max-width: 100%;
    }

    #biografia h2 {
        font-size: 2rem; /* Reducir tamaño del título en pantallas pequeñas */
    }
}


.video-container {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    display: flex;
    justify-content: center;
}

.video-container iframe {
    width: 100%;
    max-width: 800px; 
    height: auto;
    border-radius: 10px;
}

#contacto {
    padding: 60px 20px;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    margin: 20px auto;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

#contacto h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1c6ba6;
    text-transform: uppercase;
}

/* Estilo de los botones de redes sociales */
.social-links {
    margin-top: 20px;
}

.social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #111;
    color: #fff;
    padding: 12px 20px;
    margin: 10px;
    font-size: 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.social-button i {
    margin-right: 10px;
    font-size: 1.5rem;
}

/* Estilos específicos para cada red social */
.social-button.facebook {
    background-color: #3b5998;
}

.social-button.youtube {
    background-color: #ff0000;
}

.social-button.instagram {
    background-color: #e4405f;
}

.social-button.spotify {
    background-color: #1DB954;
}

/* Efectos al pasar el mouse */
.social-button:hover {
    background-color: #1c6ba6;
    transform: scale(1.1);
}

.social-button i:hover {
    color: #fff;
}

/* Sección de Eventos */
#eventos {
    background: url('imagenes/metropolitan.jpg') no-repeat center center/cover;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
    padding: 60px 20px;
    text-align: center;
}

/* Capa oscura sobre la imagen para mejorar la visibilidad del texto */
#eventos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Sombra para mejorar contraste */
    z-index: 1;
}

/* Contenedor de texto */
.eventos-container {
    position: relative;
    z-index: 2; /* Asegura que el texto esté encima de la capa oscura */
}

/* Título de la sección */
#eventos h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1c6ba6; /* Color de la marca */
    font-weight: bold;
    text-transform: uppercase;
}

/* Párrafo con detalles de los eventos */
#eventos p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
    font-weight: 400;
    margin-bottom: 15px;
}

/* Estilo adicional para la información de los eventos */
.eventos-info {
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
}

.novedades-container img{

max-width: 600px;
width: 80%;

}