/*fonts*/
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=IBM+Plex+Mono:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Open+Sans:wght@300;400;700&family=Permanent+Marker&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Dancing+Script:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Dancing+Script:wght@400;500;600;700&family=Philosopher:wght@400;700&display=swap');

/*colors*/

/* anuncio */

.anuncio {
    display: none; /* Ocultar por defecto */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.anuncio-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.anuncio-content img{
    width: 450px;
    margin-left: 50%;
    transform: translate(-50%);
}

.anuncio-content a{
    color: black;
    font-weight: 600;
    font-size: 1.6rem;
    text-decoration: underline;
}

.cerrar {
    color: black;
    float: right;
    font-size: 20px;
    cursor: pointer;
    margin-right: 70px;
}

.cerrar:hover {
    color: red;
}

/*navigation bar*/

nav.bg-yesenia{
    background: rgb(224, 224, 224);
    width: 100vw;
}

nav.bg-yesenia ul{
    margin: 0 auto;
}
nav.bg-yesenia ul li{
    margin-top: 8px;
    padding: 0 20px;
}
nav.bg-yesenia ul li a{
    color: black;
    font-size: 20px;
    font-family: "Nanum Gothic", sans-serif;
    text-transform: uppercase;
    position: relative;
}
nav.bg-yesenia ul li a.nav-link.active{
    color: black;
}
nav.bg-yesenia ul li a.nav-link.active:hover{
    color: rgba(108, 108, 197, 0.5);
}
nav.bg-yesenia ul li a::after{
    width: 0;
    height: 2px;
    background: transparent;
    content: "";
    position: absolute;
    bottom: 1px;
    left: 10px;
    transition: .4s;
}

nav.bg-yesenia ul li a:hover{
    color: rgba(108, 108, 197, 0.5);
    transform: translateY(-2px) scale(1.15);
}
nav.bg-yesenia ul li a:hover::after{
    background: rgba(97, 97, 224, 0.5);
    width: 82%;
}

/*hero*/
/*
#hero{
    width: 100vw;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, rgb(0 0 0 / .95), rgb(0 0 0 / 0)), url(/media/hero.png);
    background-size: cover;
    background-position: center;
}

#hero .presentation{
    color: white;
    text-align: left;
    width: 80%;
    height: 0 auto;
}

#hero .presentation h1{
    font-size: 65px;
    font-family: 'Cinzel', serif;
}
#hero .presentation p{
    font-size: 30px;
    font-family: 'IBM Plex Mono', monospace;
} */

/*description*/
#description{
    width: 100vw;
    height: 500px;
    justify-content: center;
    background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
}
#description h2{
    text-align: center;
    padding-top: 160px;
    font-size: 30px;
    padding-left: 30px;
    padding-right: 30px;
    font-family: 'Philosopher', sans-serif;
}
#description a{
    display: block;
    width: 220px;
    border: solid 2px black;
    border-radius: 15px;
    padding: 10px 0px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    color: black;
    font-size: 35px;
    text-decoration: none;
    margin: 0 auto;
    margin-top: 40px;
    transition: .4s;
}
#description a:hover{
    background: white;
    color: black;
    transform: scale(1.1);
}
#donation{
    width: 100vw;
    height: 500px;
    justify-content: center;
    background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
}
#donation h2 {
    text-align: center;
    padding-top: 60px;
    font-size: 30px;
    padding-left: 30px;
    padding-right: 30px;
    font-family: 'Philosopher', sans-serif;
}
#donation a{
    display: block;
    width: 220px;
    border: solid 2px black;
    border-radius: 15px;
    padding: 10px 0px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    color: black;
    font-size: 35px;
    text-decoration: none;
    margin: 0 auto;
    margin-top: 40px;
    transition: .4s;
}
#donation a:hover{
    background: white;
    color: black;
    transform: scale(1.1);
}

/*social-networks*/

#social{
    background: #e0e0e0;
    width: 100vw;
}
#social .container{
    max-width: 1500px;
}
#social h2{
    font-size: 60px;
    padding-top: 50px;
    color: black;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
}
#social .container ul{
    text-align: center;
}
#social .container ul li{
    display: inline-block;
}
#social .container ul li a{
    padding: 70px 10px;
    border-radius: 30px;
    background: transparent;
    transition: .5s;
}
#social .container ul:hover a{
    filter: blur(2px);
}
#social .container ul li a:hover{
    transform: scale(1.15);
    filter: none;
}

#social .container ul li a img {
    width: 105px;
    height: 105px;
    margin: 100px 30px;
}
#social .container ul li a.twitter:hover{
    background: rgb(63, 179, 247);
}
#social .container ul li a.instagram:hover{
    background: linear-gradient(#f093fb 0%, #f5576c 100%);
}
#social .container ul li a.spotify:hover{
    background: rgb(8, 175, 64);
}
#social .container ul li a.youtube:hover{
    background: rgb(207, 18, 18);
}
#social .container ul li a.facebook:hover{
    background: rgb(14, 69, 189);
}
#social .container ul li a.tiktok:hover{
    background: rgb(122, 132, 138);
}

/*footer*/
footer{
    width: 100vw;
    height: 70px;
    text-align: center;
}

footer .container p{
    font-size: 20px;
    text-align: center;
    margin-top: 40px;
}
    

/*biography*/
#section1 .section-container{
    display: flex;
}
#section1 .container-page{
    display: flex;
    flex-direction: column;
    align-items: center;
}
#section1 .container-page .title{
    display: flex;
    border: solid 3px black;
    width: 400px;
    margin-top: 50px;
    justify-content: center;
}

#section1 .container-page .title .img-title img{
    width: 30px;
    height: 30px;
    margin-top: 25%;
    margin-left: 10px;
}
#section1 .container-page .title .text-title{
    font-size: 30px;
    padding-left: 20px;
}
#section1 .photo-section1 .photo1{
    width: 100%;
}
#section1 .photo-section1 .photo-circle{
    position: relative;
    margin-left: 400px;
    top: -450px;
    right: -200px;
}
#section1 .info-section1 h2{
    text-align: center;
    font-size: 30px;
    margin-top: 20px;
    font-weight: 300;
    font-family: 'IBM Plex Mono', monospace;
}
#section1 .info-section1 .text1{
    text-align: justify;
    font-size: 25px;
    font-weight: 550;
    margin-top: 60px;
    margin-left: 100px;
    margin-right: 100px;
}
#section1 .info-section1 .text2{
    text-align: justify;
    font-size: 25px;
    font-weight: 550;
    margin-left: 300px;
    margin-top: 70px;
    margin-right: 100px;
}

#section2 .section-container{
    display: flex;
}
#section2 .info-section2 .text1{
    text-align: justify;
    font-size: 25px;
    font-weight: 550;
    margin-left: 100px;
    margin-right: 100px;
}
#section2 .info-section2 .text2{
    text-align: justify;
    font-size: 25px;
    font-weight: 550;
    margin-left: 100px;
    margin-top: 70px;
    margin-right: 100px;
}
#section2 .photo-section2 img{
    width: 665px;
    margin-top: -270px;
    padding: 0 0;
}

#footer-biography{
    background: #cacaca;
    margin-top: -40px;
}
#footer-biography .container p{
    padding-top: 20px;
}

/*music*/

#section-page .container-page{
    display: flex;
    flex-direction: column;
    align-items: center;
}
#section-page .container-page .title{
    display: flex;
    border: solid 3px black;
    width: 400px;
    margin-top: 50px;
    justify-content: center;
}

#section-page .container-page .title .img-title img{
    width: 30px;
    height: 30px;
    margin-top: 25%;
    margin-left: 10px;
}
#section-page .container-page .title .text-title{
    font-size: 30px;
    padding-left: 20px;
}

#section-page .container-page .hero-music{
    width: 1400px;
    height: 500px;
    margin-top: 20px;
    background: url(/media/available-tracks1.png);
    background-size: cover;
    background-position: center;
    border-radius: 20px;
}

#section-page .container-page .text-hero{
    text-align: center; 
    padding: 20px 100px;
    font-size: 20px;
    font-weight: 650;
}

#new-tracks{
    background-image: linear-gradient(to top, #d5d4d0 0%, #d5d4d0 1%, #eeeeec 31%, #efeeec 75%, #e9e9e7 100%);
}
#new-tracks .tracks{
    display: flex;
    padding: 30px 20px;
    justify-content: center;
}
#new-tracks .tracks iframe{
    margin: 0 30px;
    box-shadow: 2px 4px 15px 2px black;;
}

#new-tracks .text-tracks p{
    text-align: justify;
    padding: 20px 100px;
    font-size: 20px;
    font-weight: 650;
}

/*contact*/

#apps-links .container ul{
    display: flex;
    justify-content: center;
    padding-top: 60px;
}
#apps-links .container ul li{
    display: inline-block;
}
#apps-links .container ul li a{
    display: block;
    transition: .4s;
}
#apps-links .deezer img{
    position: relative;
    width: 200px;
    height: 200px;
    left: 110px;
    z-index: 1;
}
#apps-links .apple img{
    position: relative;
    width: 200px;
    height: 200px;
    left: 40px;
    z-index: 2;
}
#apps-links .spotify img{
    position: relative;
    width: 200px;
    height: 200px;
    z-index: 3;
}
#apps-links .youtube img{
    position: relative;
    width: 200px;
    height: 200px;
    right: 40px;
    z-index: 2;
}
#apps-links .tidal img{
    position: relative;
    width: 200px;
    height: 200px;
    right: 110px;
}
#apps-links a:hover{
    transform: scale(1.15);
    margin: 0 90px;
}

#contact-links .container .outlook-link{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    margin-bottom: 50px;
}
#contact-links .container .outlook-link img{
    width: 100px;
    height: 100px;
    margin-right: 30px;
}
#contact-links .container .outlook-link h2{
    font-weight: 400;
}
#section-page .container-page .contact-hero{
    width: 1400px;
    height: 600px;
    margin-top: 20px;
    background: url(/media/contact-hero.png);
    background-size: cover;
    background-position: center;
    border-radius: 20px;
}


/*videography*/

#Videography{
    background: linear-gradient(to right, rgb(0 0 0 / .7), rgb(0 0 0 / .7)), url(/media/body-videography.png);
    background-size: cover;
}

#videos .container{
    display: flex;
}

#videos .container .fila1 iframe{
    margin: 40px 0;
}
#videos .container .fila2 iframe{
    margin: 40px 0;
    margin-left: 250px;
}

#footer-videography .container p{
    color: white;
}

/*responsive*/

@media screen and (min-width:468px) and (max-width:990px){
    #section-page .container-page .title{
        width: 80%;
    }
    #section1 .container-page .title {
        width: 80%;
    }
    #description h2{
        padding-top: 115px;
        font-size: 25px;
    }
    #donation h2{
        padding-top: 60px;
        font-size: 22px;
    }
    nav.bg-yesenia ul{
        text-align: center;
    }
    #section1 .section-container{
        flex-direction: column;
    }
    #section1 .photo-section1 .photo-circle{
        display: none;
    }
    #section1 .info-section1 .text1{
        margin-left: 30px;
        margin-right: 30px;
    }
    #section1 .info-section1 .text2{
        margin-left: 30px;
    margin-top: 50px;
    margin-right: 30px;
    padding-bottom: 315px;
    }
    #section2 .section-container{
        flex-direction: column;
    }
    #section2 .photo-section2 img{
        width: 100%;
    }
    #section2 .info-section2 .text1 {
        margin-left: 50px;
        margin-right: 50px;
    }
    #section2 .info-section2 .text2{
        margin-right: 50px;
        margin-left: 50px;
    }
    #section-page .container-page .text-hero{
        padding: 20px 50px;
    }
    #section-page .container-page .hero-music{
        width: 100%;
    }
    #new-tracks .tracks{
        flex-direction: column;
    }
    #new-tracks .tracks iframe{
        width: 100%;
        margin: 20px 0;
    }
    #new-tracks .text-tracks p{
        padding: 10px 50px;
    }
    #section-page .container-page .contact-hero{
        width: 100%;
        height: 400px;
        border-radius: 0px;
    }
    #apps-links .tidal img {
        position: relative;
        width: 100px;
        height: 100px;
        right: 10px;
    }
    #apps-links .youtube img {
        position: relative;
        width: 100px;
        height: 100px;
        z-index: 2;
        right: 0;
    }
    #apps-links .spotify img {
        position: relative;
        width: 100px;
        height: 100px;
        z-index: 3;
    }
    #apps-links .apple img {
        position: relative;
        width: 100px;
        height: 100px;
        z-index: 2;
        left: 0;
    }
    #apps-links .deezer img {
        position: relative;
        width: 65px;
        height: 65px;
        z-index: 1;
        left: 0;
    }
    #contact-links .container .outlook-link img{
        margin-right: 0;
    }
    #contact-links .container .outlook-link h2{
        font-size: 20px;
    }
    #contact-links .container .outlook-link{
        margin-bottom: 0;
    }
    #videos .container{
        flex-direction: column;
    }
    #videos .container .fila2 iframe{
        margin-left: 0;
        width: 95%;
    }
    #videos .container .fila1 iframe {
        width: 95%;
    }
    #Videography{
        background-position-x: center;
    }
}
@media screen and (min-width:0px) and (max-width:468px){
    #hero .presentation h1{
        font-size: 56px;
    }
    #hero .presentation p{
        font-size: 25px;
    }
    #description h2{
        padding-top: 45px;
        font-size: 24px;
    }
    #donation h2 {
        padding-top: 45px;
        font-size: 19px;
    }
    #social h2{
        font-size: 45px;
    }
    nav.bg-yesenia ul{
        text-align: center;
    }
    #section1 .section-container{
        flex-direction: column;
    }
    #section1 .photo-section1 .photo-circle{
        display: none;
    }
    #section1 .info-section1 .text1{
        margin-left: 30px;
        margin-right: 30px;
        font-size: 20px;
    }
    #section1 .info-section1 .text2{
        margin-left: 30px;
    margin-top: 50px;
    margin-right: 30px;
    padding-bottom: 315px;
    font-size: 20px;
    }
    #section2 .section-container{
        flex-direction: column;
    }
    #section2 .photo-section2 img{
        width: 100%;
    }
    #section2 .info-section2 .text1 {
        margin-left: 50px;
        margin-right: 50px;
        font-size: 20px;
    }
    #section2 .info-section2 .text2{
        margin-right: 50px;
        margin-left: 50px;
        font-size: 20px;
    }
    #section-page .container-page .text-hero{
        padding: 20px 50px;
    }
    #section-page .container-page .hero-music{
        width: 100%;
    }
    #new-tracks .tracks{
        flex-direction: column;
    }
    #new-tracks .tracks iframe{
        width: 100%;
        margin: 20px 0;
    }
    #new-tracks .text-tracks p{
        padding: 10px 50px;
    }
    #section-page .container-page .contact-hero{
        width: 100%;
        height: 400px;
        border-radius: 0px;
    }
    #apps-links .tidal img {
        position: relative;
        width: 65px;
        height: 65px;
        right: 10px;
    }
    #apps-links .youtube img {
        position: relative;
        width: 65px;
        height: 65px;
        z-index: 2;
        right: 0;
    }
    #apps-links .spotify img {
        position: relative;
        width: 65px;
        height: 65px;
        z-index: 3;
    }
    #apps-links .apple img {
        position: relative;
        width: 65px;
        height: 65px;
        z-index: 2;
        left: 0;
    }
    #apps-links .deezer img {
        position: relative;
        width: 65px;
        height: 65px;
        z-index: 1;
        left: 0;
    }
    #contact-links .container .outlook-link img{
        margin-right: 0;
        width: 80px;
        height: 80px;
    }
    #contact-links .container .outlook-link h2{
        font-size: 15px;
    }
    #contact-links .container .outlook-link{
        margin-bottom: 0;
    }
    #videos .container{
        flex-direction: column;
    }
    #videos .container .fila2 iframe{
        margin-left: 0;
        width: 95%;
    }
    #videos .container .fila1 iframe {
        width: 95%;
    }
    #Videography{
        background-position-x: center;
    }
    #hero .presentation{
        width: 90%;
    }
    #hero .presentation h1 {
        font-size: 50px;
    }
    #hero .presentation p {
        font-size: 20px;
    }
    #social h2{
        font-size: 50px;
    }
    #section1 .container-page .title {
        width: 80%;
    }
    #section-page .container-page .title{
        width: 80%;
    }
}

/* Contenedor de redes sociales */
.container-redesSociales {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    z-index: 10;
    background-color: #ffffff67;
    padding: 10px 5px;
    border-radius: 10px;
    box-shadow: 4px 8px 4px rgba(0, 0, 0, 0.5);
}

.redesSociales-network {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.redesSociales-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

/* Tamaño del ícono */
.redesSociales-item img {
    width: 40px;
    height: 40px;
    transition: filter 0.3s;
    border: 1px solid #000;
    padding: 5px;
}

/* Colores de fondo al hacer hover en cada ícono */
.redesSociales-item:hover a.instagram{
    background-color: #E1306C; /* Color por defecto, cambia según red social */
}

.redesSociales-item:hover a.spotify {
    background-color: #1DB954; /* Spotify */
}

.redesSociales-item:hover a.twitter {
    background-color: #1DA1F2; /* Twitter */
}

.redesSociales-item:hover a.youtube {
    background-color: #FF0000; /* YouTube */
}

.redesSociales-item:hover a.facebook{
    background-color: #105ec4; /* Facebook */
}

.redesSociales-item:hover a.tiktok {
    background-color: #0000008c; /* TikTok */
}



