/* Configuración general */
body, html {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: 100%;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #f8efe2;
}

.background-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 10%;
    padding-top: 3vh; /* Aumentado para dar más espacio arriba */
    padding-bottom: 5vh;
    overflow-y: auto;
    box-sizing: border-box;
}

/* Imagen de fondo */
.background {
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: blur(0);
}

/* Estilo para el texto del logo */
.logo-text {
    font-family: 'Mona Sans', sans-serif;
    font-weight: 900;
    font-size: 180px; 
    letter-spacing: -4px;
    line-height: 1; 
    color: #f7f7f7;
    margin: 0;
    padding: 0;
}

/* Imagen del nombre de la banda */
.band-name {
    position: relative;
    z-index: 2;
    margin-top: 2vh;
    width: 90%;
    text-align: left;
    max-width: 900px;
    margin-left: 0;
}

.band-tagline {
    position: relative;
    z-index: 2;
    font-family: 'Old Standard TT', serif;
    font-style: italic;
    font-size: 36px;
    font-weight: 400;
    color: #f8efe2;
    margin: -5px 0 50px 0;
    padding-left: 40px;
    line-height: 2.5;
    width: 90%;
}

.band-tagline::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #f8efe2;
}

.tagline-bold {
    font-family: 'Mona Sans', sans-serif;
    font-size: 28px; /* Ajustado */
    font-weight: 900;
    font-style: normal;
    letter-spacing: -1px;
    margin-left: 5px; /* Pequeño espacio después del texto cursivo */
    display: inline; /* Para que aparezca en la misma línea */
}

/* Contenedor de los reproductores de SoundCloud */
.soundcloud-players {
    position: relative;
    z-index: 2;
    width: 90%;
    margin: 0 0 60px 0; /* Eliminar margen superior */
    padding: 0;
    flex-grow: 1;
}

.song {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.song:last-child {
    margin-bottom: 0;
    width: 80%;
}

iframe {
    display: block;
    width: 100%;
    margin: 0;
    border-radius: 8px;
}

/* Ajustes para los contenedores de canciones */
.song-container {
    margin-bottom: 80px;
    text-align: left;
    position: relative;
}

.song-container::before {
    display: none;
}

/* Contenedor del borde */
.song::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid #f8efe2;
    z-index: -1;
    pointer-events: none;
}

.song-title {
    font-family: 'Mona Sans', sans-serif;
    font-weight: 900;
    font-size: 28px;
    letter-spacing: -1px;
    line-height: 1;
    color: #f8efe2;
    margin: 0 0 5px 0; /* Reducir el margen inferior también */
    padding: 0;
    text-transform: uppercase;
}

.song-description {
    font-family: 'Hind', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #f8efe2;
    margin: 0 0 10px 0; /* Reducido a 10px */
    line-height: 1.4;
}

/* Ajustar el espaciado del último contenedor */
.song-container:last-child {
    margin-bottom: 20px;
}

/* Sección About */
.about-section {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    gap: 40px;
    margin-top: 70px;
    margin-bottom: 60px;
}

.about-text {
    flex: 1;
    max-width: 60%;
}

.about-quote {
    font-family: 'Old Standard TT', serif;
    font-style: italic;
    font-size: 36px;
    font-weight: 400;
    color: #f8efe2;
    margin: 0 0 20px 0;
    padding-left: 40px;
    position: relative;
    line-height: 1.2;
}

.about-quote::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #f8efe2;
}

.about-description {
    font-family: 'Hind', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #f8efe2;
    margin: 0 40px 20px 0;
    line-height: 1.5;
}

.band-photo {
    flex: 1;
    max-width: 40%;
    position: relative;
    height: fit-content
}

.band-photo img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

.band-photo::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid #f8efe2;
    z-index: 3;
    pointer-events: none;
}

/* Footer */
.footer {
    position: relative;
    z-index: 2;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
}

.footer-logo {
    font-family: 'Mona Sans', sans-serif;
    font-weight: 900;
    font-size: 40px;
    letter-spacing: -1px;
    color: #f8efe2;
    text-transform: uppercase;
}

.contact-info { 
    text-align: right;
}

.contact-info p {
    font-family: 'Hind', sans-serif; /* Cambiado de Hubot Sans a Hind para el texto general */
    font-size: 20px;
    color: #f8efe2;
    margin: 5px 0;
    font-weight: 300; /* Peso normal/ligero para el texto general */
}

.contact-info strong {
    font-family: 'Mona Sans', sans-serif; /* Mantener Hubot Sans para las palabras "EMAIL:" e "INSTAGRAM:" */
    font-weight: 900; /* Extra negrita para EMAIL: e INSTAGRAM: */
    font-size: 18px;
}

.contact-info a {
    color: #f8efe2;
    text-decoration: none;
    font-weight: 300; /* Asegurar que los enlaces no sean negrita */
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Por defecto, el salto de línea se muestra (pantallas más grandes) */
.line-break {
  display: inline;
}


@media screen and (max-width: 1400px) {

    .band-tagline {
        margin-top: 10px;
        margin-bottom: 80px; /* Reducido para mantener la proporción */
        line-height: 1.2;
        font-size: 30px;
    }

    .tagline-bold {
        font-size: 24px;
    }

    .song-description {
        font-size: 18px;
    }

    .about-text, .band-photo {
        max-width: 100%;
    }

    .about-quote {
        font-size: 32px;
    }

    .about-description {
        font-size: 18px;
    }

    
}

@media screen and (max-width: 1280px) {

    .background-container {
        padding-left: 5%;
    }

    .band-tagline {
        margin-top: 10px;
        margin-bottom: 70px;
        line-height: 1.2;
        font-size: 30px;
    }

    .tagline-bold {
        display: block;
        margin-left: 0;
    }

    .song-title {
        font-size: 24px;
    }

    .song-description {
        font-size: 16px;
    }

    .song:last-child {
        width: 100%;
    }

    .about-quote {
        font-size: 28px;
    }

    .about-description {
        font-size: 16px;
    }

    .about-text, .band-photo {
        max-width: 100%;
    }

    .footer {
        width: 95%;
    }

    .footer-logo {
        font-size: 32px;
    }

    .contact-info p {
        font-size: 18px;
    }

    .contact-info strong {
        font-size: 16px;
    }
}

@media screen and (max-width: 1024px) {

    .logo-text {
        font-size: 154px;
    }
    
    .about-text, .band-photo {
        max-width: 100%;
    }

    .soundcloud-players {
        margin-bottom: 40px;
    }

    .footer-logo {
        font-size: 28px;
    }

    .about-quote, .band-tagline {
        padding-left: 30px;
    }

    .band-photo img {
        width: 95%;
    }

    .band-photo::after {
        top: -4%;
        left: -3%;
        right: 8%;
        bottom: 4%;
        width: auto;
        height: auto;
    }
}


@media screen and (max-width: 900px) {
    .about-section {
        flex-direction: column;
        margin-top: 40px;
    }
}


/* Media Queries */
@media screen and (max-width: 768px) {
    .logo-text {
        font-size: 100px;
    }

    .band-tagline {
        font-size: 24px;
    }

    .about-quote {
        font-size: 24px;
    }

    .tagline-bold {
        font-size: 20px;
    }

    .background-container {
        padding-bottom: 3vh;
    }
      
}

@media screen and (max-width: 480px) {
    .logo-text {
        font-size: 78px;
    }

    .footer {
        flex-direction: column;
        margin-top: 0;
    }

    .band-tagline {
        width: 90%;
    }

}


/*7*/
