@import url('https://fonts.googleapis.com/css2?family=Bellota:wght@700&family=Poppins:wght@300;400;700&family=Open+Sans:wght@300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bellota:wght@700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:wght@200;300;400;500;600;700;800&display=swap');
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*BODY*/
body{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: black;
}
/* MAIN CONTAINER */
.container{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    border-radius: 20px;
    background-color: #E8E8FF;
    width: 393px;
    height: 852px;
    max-width: 393px;
    max-height: 852px;
    min-width: 393px;
    min-height: 852px;
    padding:2vh 2vw;
}
/* TOP SECTION */
.top{
    text-align: center;   
}
/* BACK NAVIGATION LINK */
.back{
    display: flex;
    flex-direction: row;
    padding-top: 35px;
    padding-left: 15px;
    text-decoration: none;
    color: #C60D0D;
}
/* SONG MOOD MAPPER */
.title{
    font-family: 'inter', sans-serif;;
    font-weight: 700;
    font-size: 30px;
    margin-top: 45px;
    margin-bottom: 16px;
    color: #C60D0D;
    text-shadow: 0px 4px 4px rgba(198, 13, 13, 0.25);
}
/* SUBTITLE */
.subtitle{
    font-family: 'inter', sans-serif;;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color:black;
}
/* SUBTITLE MOOD */
.subtitle-mood{
    font-family: 'inter', sans-serif;;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color:black;
}
/* PLAY ANY SONG */
.subtitle-play{
    font-family: 'inter', sans-serif;;
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
    color:black;
    padding-top: 12px;
}
/* MIDDLE SECTION */
.middle{
    margin:0;
    padding:0;
}
/* MUSIC ICON */
.middle .fa-music{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    width: 120px;
    font-size: 120px;
    padding-left: 160px;
    padding-top: 120px;
}
/* BOTTOM SECTION */
.bottom{
    display: flex;
    flex-direction:column;
    align-items: center;
}
/* DIFFERENT MOODS ICONS */
.moods{
    display: flex;
    justify-content: space-between;
    font-size: 35px;
    line-height: 24px;
    font-family: 'inter', sans-serif;;
    font-weight: 500;
    height: 68px;
    width: 331px;
    margin-top: 10px;
    margin-bottom: 16px;
    margin-left: 31px;
    margin-right: 31px;
}
/* START BUTTON */
.start-btn{
    width:250px;
    height:50px;
    font-family: 'inter', sans-serif;;
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 16px;
    background-color: #6C63FF;
    color: #FFF;
    cursor: pointer;
    margin-bottom: 80px;
    text-decoration: none;
    text-align: center;
    padding-top: 15px;
}

.start-btn:hover{
    background-color: black;
}
/* MAIN SCREEN CONTAINS THREE BUTTONS HAPPY, SAD, ROMANTIC */
.bottom-main-screen{
    display: flex;
    flex-direction:column;
    align-items: center;
}
.feel-description{
    margin-top: 41px;
    font-family: 'inter', sans-serif;;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
}
.mood-buttons{
    display: flex;
    justify-content: space-between; 
    flex-direction: column;
    margin-top: 24px;
    margin-bottom: 42px;
    gap:16px;
}
.md-btn{
    font-family: 'inter', sans-serif;;
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 16px;
    background-color: #6C63FF;
    color: #FFF;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    padding-top: 13px;
}
.mood-buttons .happy{
    width: 329px;
    height: 50px;
    background-color: #FF7D00;
    border-radius: 16px;
    border: none;
    font-family: 'inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
}
.mood-buttons .sad{
    width: 329px;
    height: 50px;
    background-color: #3A9ABD;
    border-radius: 16px;
    border: none;
    font-family: 'inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
}
.mood-buttons .romantic{
    width: 329px;
    height: 50px;
    background-color: #DF136B;
    border-radius: 16px;
    border: none;
    font-family: 'inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
}
.happy:hover{
    background-color: black;
}
.sad:hover{
    background-color: black;
}
.romantic:hover{
    background-color: black;
}
.happy a{
     text-decoration: none;
    color: #FFF;
}
.sad a{
     text-decoration: none;
    color: #FFF;
}
.romantic a{
     text-decoration: none;
    color: #FFF;
}
/*LIST OF SONGS*/
.middle-song{
    margin-top: 20px;
}
.song-list{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #D9D9D9;
    height: 80px;
    color: black;
    border-radius: 12px;
    margin-bottom: 16px;
    padding: 0 16px;
}
.song-list.active{
    background-color:#C60D0D;;
}
.play .fa-play{
   font-size: 24px;
}
.song-name{
    font-family: 'inter', sans-serif;;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    margin-top: 17px;
    margin-left: 17px;
}
.artist-name{
    font-family: 'inter', sans-serif;;
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 17px;
    margin-left: 17px;
}
#happy1, #happy2{
    display: none;
}
#romantic1, #romantic2{
    display: none;
}
#sad1, #sad2{
    display: none;
}
/*ALBUM COVER*/
#picture1{
    display: none;
    width: 200px;
    height: 250px;
    margin-top: 0px;
    margin-left: 70px;
}
#picture2{
    display: none;
    width: 200px;
    height: 250px;
    margin-top: 0px;
    margin-left: 70px;
}
#picture3{
    display: none;
    width: 200px;
    height: 250px;
    margin-top: 0px;
    margin-left: 70px;
}
#picture4{
    display: none;
    width: 200px;
    height: 250px;
    margin-top: 0px;
    margin-left: 70px;
}
#picture5{
    display: none;
    width: 200px;
    height: 250px;
    margin-top: 0px;
    margin-left: 70px;
}
#picture6{
    display: none;
    width: 200px;
    height: 250px;
    margin-top: 0px;
    margin-left: 70px;
}
/*AUDIO CONTROL BUTTONS*/
.audio-control{
    display: none;
    margin-top: 5px;
    justify-content: center;
    gap: 10px;
}
.audio-control .fa-play{
   font-size: 24px;
}
.audio-control .fa-pause{
   font-size: 24px;
}
.audio-control .fa-stop{
   font-size: 24px;
}

/*PROGRESS BAR*/
.progressBar {
    display: none;
    justify-content: space-between;
    align-items: center;
    background-color: #E8E8FF;
    padding: 15px;
    width: 100%;
    color: rgb(0, 0, 0);
}
#progress{
    flex: 1;
    margin: 0 10px;
    cursor: pointer;
    width: 73%;
}

/* FOOTER */
.footer-text{
    font-family: 'inter', sans-serif;;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color:#C60D0D;
    margin-bottom: 79px;
    font-style: italic;
}
.footer-helper-text{
    font-family: 'inter', sans-serif;;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color:#C60D0D;
    margin-bottom: 79px;
}
