@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header div {
    font-family: "Josefin Sans", serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

header {
    background: url("img/background_img.png") no-repeat right center / cover;
    width: 100vw;
    min-height: 100vh;
    position: relative;
    background-color: #060605;
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 600px) {

    header {
        background: url("img/background_img\ -\ copia\ \(2\).png") no-repeat center center/cover;
        min-height: 100vh;
        background-color: #060605;
    }
}

.logo-language{
    display: flex;
    flex-wrap: wrap;
    width: 85%;
    height: 20%;
    margin-top: 6.5vh;
    margin-left: 8%;
    margin-right: 4%;
    justify-content: space-between;
    gap: 3rem;
}

.logo-container {
    max-width: clamp(260px, 15vw, 20vw);
    max-height: 15vh;
    height: auto; 
}

.logoedicion {
    width: 100%;
}


@media screen and (max-width: 900px) and (orientation: landscape) {
    .logo-container {
        max-width: 80px;
        max-height: 8vh;
    }
}

.language-options {
    justify-content: center;
    align-items: center;
    display: flex;
}

.language-button {
    font-family: "Josefin Sans", serif;
    font-size: 20px;
    padding: 1vh 2vh;
    margin: 0px;
    color: white;
    text-decoration: none;
}

#español-button {
    color: #C68541;
}
#english-button {
    color:white;
}

.nav1 {
    position: absolute;
    align-items: center;
    justify-content: center;
    top: 35%;
    left: 10%;
    display: flex;
    flex-direction: column;
    width: auto;
    height: 62vh;
}

.nav1 a {
    color: white;
    text-decoration: none;
    font-family: "Josefin Sans", serif;
    font-size: clamp(18px, 3.5vw, 20px);
    display: block;
    margin-bottom: 6.3vh;
}

.contacto-edit {
    margin-bottom: 0vh;
}


/*---------------Apartado POSTERS-----------------*/

#posters {
    background-color: #fff;
    justify-content: center;
    padding-top: 6vh;
    display: flex;
    flex-direction: column;
    row-gap: clamp(20px, 3vh, 100px);
    font-family: "Josefin Sans", serif;
    padding-bottom: 5vh;
}


.POSTERS-1, .POSTERS-2, .POSTERS-3 {
    display: flex;
    justify-content: center;
    column-gap: clamp(15px, 5vw, 200px);    
    row-gap: 30px;
    flex-wrap: wrap;
}

.POSTER1, .POSTER2, .POSTER3, .POSTER4, .POSTER5, .POSTER6, .POSTER7, .POSTER8, .POSTER9, .POSTER10, .POSTER11 {
    max-width: 200px;
    min-width: 200px;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.poster-container {
    max-width: 200px;
    min-width: 200px;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.poster-container:hover {
    transform: scale(1.15);
    z-index: 2;
}

.poster-text {
    text-align: center;
    padding-top: 2vh;
    font-size: 13px;
    transition: transform 0.3s ease-in-out;
}

/*---------------Sección barra de nav-----------------*/

.nav2 {
    position: absolute;
    height: 15vh;
    margin-top: 5vh;
    padding-top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3vw;
    z-index: 1000;
}

.logoNav {
    width: auto;
}

.logoNavEdicion {
    max-width: 20vw;
    max-height: 10vh;
    height: auto; 
}

.nav2 ul {
    list-style: none;
    display: flex;
}

.nav2 ul li {
    height: 100%;
}

.nav2 ul li a {
    font-family: "Josefin Sans", serif;    
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 1.4vw;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 15vh;
    padding: 0 1vw;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav2 ul li a:hover {
    background-color: #C68541;
    color: white;
}

/* BOTÓN HAMBURGUESA */
.menu-toggle {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    color: #C68541;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1001;
}

/* RESPONSIVE */
/* RESPONSIVE */
@media (max-width: 900px) {

    .blog .nav2 ul {
        background: rgba(255, 255, 255, 0.9);
    }

    .menu-toggle {
        display: block;
    }

    .nav2 {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
        height: auto;
        z-index: 1100;  /* Asegúrate de que el z-index sea alto */
    }

    .nav2 ul {
        flex-direction: column;
        background: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 70px;
        right: 20px;
        border-radius: 10px;
        padding: 10px;
        display: none;
        opacity: 0;  /* Opcional para animación */
        visibility: hidden; /* Opcional para animación */
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav2 ul.show {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    .nav2 ul li a {
        font-size: 4vw;
        height: auto;
        padding: 10px 20px;
    }

    .logoNavEdicion {
        max-width: 60vw;
        max-height: none;
    }

    .layout-biografia {
        flex-direction: column;
        position: absolute;
        top: 20vh;
        left: 5%;
      }
      
 
    
}






/*---------------Sección biografía-----------------*/

.biografia {
    background: url("img/background_img.png") no-repeat center center/cover;
    min-height: 100vh;
    position: relative;
    background-color: #060605;
    font-family: "Josefin Sans", serif;
    color: #fff;
}

.biografia .nav2 ul li a[href="biografia.html"] {
    background-color: #C68541; 
    color: white;
}

.filmografia, .contacto, .discografia, .filmografia, .musEscena, .otrasMusicas{
    background-color: #060605;
}


.layout-biografia {
    display: flex; 
    position: absolute; 
    top: 25vh;
    left: 4%;
    width: 93vw;
    gap: 5vw;
    flex-wrap: wrap;
    height: auto;
}

.layout {
    max-width: 30vw;
    min-width: 20vw;
    height: 60vh;
}

.soundClub {
    width: 100%;
    height: 100%;
}

.biografia-text {
    max-width: 60%; 
}

@media (max-width: 768px) {

    .biografia {
        background: url("img/background_img\ -\ copia.png") no-repeat center center/cover;
        min-height: 100vh;
        background-color: #060605;
    }

    .layout-biografia {
      flex-direction: column;
      position: absolute;
      top: 20vh;
      left: 5%;
    }
    
    .layout {
      order: 2;
      max-width: 60vw;
      min-width: 300px;
      height: 60vh;
    }
    
    .biografia-text {
      order: 1; 
      max-width: 100%; 

    }


    .contacto-text{
        position: absolute;
        width: 65vw;
        gap: 10vh;
        top: 25vh;
        left: 0vw;
    }


  }

.biografia-text h2, .contacto-text h2 {
    margin-top: 20px;
    font-size: clamp(50px, 4vw, 50px);
    font-weight: 450;
}

.biografia-text hr, .contacto-text hr {
    margin-top: 30px;
    max-width: 60%;
    border: 0.5px solid #fff;
}

.biografia-text p {
    font-size: clamp(14px, 2vw, 20px);
    font-weight: 250;    
    margin-bottom: 10px;
    margin-top: 30px;
    line-height: 1.5;
}

.biografia-text strong, .contacto-text strong {
    font-weight: 450;
}

.bio-parr2{
    font-size: 20px;
    font-weight: 250;    
    margin-bottom: 10px;
    margin-top: 30px;
    line-height: 1.5;
}





/*---------------Sección Discografía-----------------*/

.discografia .nav2 ul li a[href="discografia.html"] {
    background-color: #C68541; 
    color: white;
}

/*---------------Sección Filmografía-----------------*/

.filmografia .nav2 ul li a[href="filmografia.html"] {
    background-color: #C68541; 
    color: white;
}

/*---------------Sección Música Escena-----------------*/

.musEscena .nav2 ul li a[href="musEscena.html"] {
    background-color: #C68541; 
    color: white;
}

/*---------------Sección Otras Músicas-----------------*/

.otrasMusicas .nav2 ul li a[href="otrasMusicas.html"] {
    background-color: #C68541; 
    color: white;
}

.otrasMusicas {
    position: relative;
    padding-bottom: 5vh;
}

.layouts-otrasM {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 80px;
    position: absolute;
    top: 48vh;
    left: 10%;
    right: 10%;
}

.layouts-otrasM iframe{
    max-width: 300px;
    min-width: 250px;
    height: 45vh;
}

.otrasMusicas .layouts-otrasM {
    position: absolute;
    top: 53vh;
}

.titulos{
    width: 100%;
    text-align: center;
    position: absolute;
    top: 25vh;
}

.otrasMusicas-text {
    max-width: 650px;
    margin: 0 auto;
}

.otrasMusicas-text h2{
    position: relative; 
    display: inline-block; 
    font-family: "Josefin Sans", sans-serif;    
    color: #fff;
    text-decoration: none;
    margin-bottom: 2.5vh;
    font-size: clamp(40px, 4vw, 40px);
    font-weight: 450
}

.otrasMusicas-text h2 span{
    font-size: clamp(20px, 3vw, 25px);
}

.otrasMusicas-text span{
    position: relative; 
    display: inline-block; 
    font-family: "Josefin Sans", sans-serif;    
    color: #fff;
    text-decoration: none;
    margin-bottom: 2.5vh;
    font-size: 4vh;
    font-weight: 450
}

.otrasMusicas-text hr {
    width: 100%;
    border: 1px solid white;
}

/*---------------Sección Noticias (Blog)-----------------*/

.blog .nav2 ul li a[href="blog.html"] {
    background-color: #C68541; 
    color: white;
}

.blog{
    background-color: #fff;
}


.blog .nav2 ul li a {
    font-family: "Josefin Sans", serif;    
    color: #060605;
}

.blog .otrasMusicas-text h2{
    position: relative; 
    display: inline-block; 
    font-family: "Josefin Sans", sans-serif;    
    color: #060605;
    text-decoration: none;
    margin-bottom: 2.5vh;
    font-size: 7vh;
    font-weight: 450
}


.blog .otrasMusicas-text hr {
    border: 1px solid #060605;
}

.noticias-container{
    width: 85vw;
    height: 50vh;
    position: absolute;
    top: 40vh;
    left: 8vw;
    font-family: "Josefin Sans", sans-serif;  
}

.anios{
    padding-left: 3.7vw;
    padding-top: 2vh;
    padding-bottom: 2.5vh;
}

.anios h3{
    font-size: 5vh;
    font-weight: 600;
}

.nombre-noticia{
    display: flex;
    align-items: center;
    gap: 2vw;
    padding-bottom: 1vh;
}

.nombre-noticia h3{
    font-size: 3vh;
    font-weight: 500;
    margin-bottom: 1vh;
}

.parrafo-noticias{
    padding-left: 3.7vw;
    margin-bottom: 5vh;
}

.parrafo-noticias h4{
    font-weight: 400;
    padding-bottom: 1vh;
    font-size: 2.5vh;
}

.parrafo-noticias p{
    font-weight: 300;
    font-size: 2.5vh;
    line-height: 4vh;
}

.nombre-noticia a img {
    height: 3vh;
}

.noticias-container iframe{
    width: 80vw;
    height: 40vh;
    margin-left: 3.7vw;
    margin-top: -2vh;
    margin-bottom: 5vh;
}


/*---------------Sección Contacto-----------------*/

.contacto .nav2 ul li a[href="contacto.html"] {
    background-color: #C68541; 
    color: white;
}

.contacto{
    font-family: "Josefin Sans", serif;    
    color: #fff;
}


.icons-cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4vw; 
    width: 65vw;
    margin-top: 5vh; 
}

.parrafo-img{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.instagram-icon, .youtube-icon, .soundCloud-icon, .foundess-icon, .linkedin-icon, .spotify-icon, .facebook-icon  {
    max-width: 50px;
    min-width: 30px;
}

.bluemotiv-logo {
    max-width: 250px;
    min-width: 30px;
    margin-top: 2.5vh;
    margin-bottom: 1vh;
}

.contacto-text{
    position: absolute;
    width: 65vw;
    gap: 10vh;
    top: 25vh;
    left: 30vw;
}

.contacto-text p {
    font-size: clamp(20px, 2vw, 30px);
    font-weight: 250;    
    margin-bottom: 0px;
    margin-top: 0px;
    line-height: 1.5;
    text-align: center;
    align-items: center;
}

.contacto-text hr {
    margin-top: 30px;
    margin-bottom: 6vh;
    width: 100%;
    border: 0.5px solid #fff;
}



.contacto .layout {
    margin: 0 auto;
    width: 20vw;
    height: 70vh;
    position: absolute;
    top:25vh;
    left: 5vw;
}

.contacto-text h2 {
    margin-top: 20px;
    font-size: 50px;
    font-weight: 450;
}

.contacto-text hr {
    margin-top: 30px;
    max-width: 60%;
    border: 0.5px solid #fff;
}



.contacto-text strong {
    font-weight: 450;
}

@media (max-width: 768px) {


    .contacto-text{
        position: absolute;
        width: 65vw;
        gap: 10vh;
        top: 25vh;
        left: 17vw;
    }
    .contacto .layout {
        margin: 0 auto;
        width: 20vw;
        height: 70vh;
        position: absolute;
        top:90vh;
        left: 15vw;
    }
  }


