* {

    font-family: 'Roboto', sans-serif;
}

body{
    background-color: black;
    margin: 0px;
    padding: 0px;
    color: white;
}

.container{
    display: flex;       /* put left + right side by side */
    width: 100%;
}

.top-nav{
    margin-top: 0px;
    padding-top: 0px;
    width: 100vw;
    height: 7.5vh;
    justify-content: space-between;
}

#logo{
    height: 32px;
    width: 32px;
    margin: 18px 20px 20px 25px;
}

#home-icon{
    height: 24px;
    width: 24px;
    margin: 9px 20px 30px 0px;
    background-color:#121212 ;
    border-radius: 100px;
    padding: 13px;
}

#home-icon:hover{
    transform: scale(1.05);
    box-shadow: 0 1px 20px rgba(79, 70, 229, 0.4);
}

#search-plc {
    background-image: url("search-icon.svg"); 
    background-size: 25px 25px;
    background-repeat: no-repeat;
    background-position: 15px center;           
    padding-left: 45px;                       
    height: 40px;                               
    border-radius: 50px;                        
    border: none;                               
    background-color: #1f1f1f;                  
    color: white;                               
    font-size: 16px;
    margin-top: 10px;
    width: 29vw;
  }
  
#search-plc::placeholder {
    color: #b3b3b3;                     
  }

#search-plc:focus {
    outline: none;                       /* removes default blue outline */
    box-shadow: 0 0 8px white;  /* faded glow effect */
    transition: box-shadow 0.3s ease;    /* smooth fade-in */
  }

.right-nav-links{
    margin: 10px;
    padding: 10px;
    gap: 10px;
}

.right-nav-links a {
    text-decoration: none; /* remove underline */
    color: white;
}

.login-btn{
    padding: 14px 38px 27px 38px;
    border-radius: 25px;
    outline: none;
    border: none;
    font-weight: bold;
    margin: 10px;
    

}
.login-btn:hover{
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}


.left{
    width: 25vw;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    background-color: #121212;
    margin-left: 10px; 
   
}

.left-container{
    
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    padding: 10px;
    font-size: 16px;
    
    

}

.inner-card{
    border-radius: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
    background-color: #1f1f1f;
    margin: 10px;
    
    
}

.left-btn{
    padding: 8px;
    border-radius: 20px;
    outline: none;
    border: none;
    margin-bottom: 10px;
}
.left-btn:hover{
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    font-family: Roboto, sans-serif;
    font-size: 13px;
    font-weight: bold;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 9999px; /* fully rounded pill */
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    
  }

  .lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
  }

  .lang-btn img {
    width: 20px;
    height: 20px;
  }



.pages-list {
    
    list-style: none; /* remove bullets */
    display: flex;    /* make horizontal */
    gap: 15px;        /* spacing between items */
    padding: 0;       /* remove default padding */
    margin: 0;        /* remove default margin */
    flex-wrap: wrap;
    font-size: 11px;
    margin-top: 20vh;
    margin-left: 10px;
    margin-bottom: 10px;
}
.pages-list li a {
    text-decoration: none; /* remove underline */
    color: white;
}

.language-btn{
    margin: 10px;
}

.rightWrapper{
    display: flex;
    flex-direction: column;
}

.right{
    display: flex;
    width: 75vw;
    height: 100vh;
    background-color: #121212;
    border-radius: 8px;
    margin-left: 5px;
    max-height: 65vh;
    overflow: scroll;
    flex-direction: column;
}

#trending-songs{
    font-size: x-large;
    font-weight: bold;
    
}
#trending-songs:hover{
    text-decoration: underline;
}
.audio-card-container{
    margin-left: 40px;
    margin-top: 10px;
    margin-right: 40px;
    /* display: flex;
    flex-direction: column; */
    
}

.audio-card{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    
}
.card{
    
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
    position: relative;
}
.play{
    height: 40px;
    width: 40px;
    position: absolute;
    top: 125px;
    right: 25px;
    opacity: 1;
    /* opacity: 1; TODO: When doing js.. animate it by toggling class*/
    /* transition: all 1s ease-out; */

}


.card:hover{
    background-color: #252525;
    transition: 0.1s ease-in;

}
.card img{
    border-radius: 5px;
    height: 170px;
    width: 160px;
    margin-left: 6.5px;
}
.card h3{
    font-size: medium;
    font-weight: lighter;
    margin: 5px;

}
.card p{
    font-size: 14px;
    color: #b3b3b3;
    margin: 5px;
}

.musiccontrols{
    background-color: #121212;
    margin: 5px 0px 0px 5px;
    height: 15.5vh;
    border-radius: 8px;
}




















.footer{
    height: 6.5vh;
    background-image: linear-gradient( 135deg, #ba2bb0 10%, #465EFB 100%);
    padding-left: 15px;
    margin: 8px;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    padding-right: 20px;
    

}

.footer button{
    padding: 15px 35px 15px 35px;
    border-radius: 25px;
    outline: none;
    border: none;
    font-weight: bold;

}
.footer button:hover{
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}
.footer p{
    margin: 4px;
}
