@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");
:root{
    --header-height: 3rem;
    --footer-height: 5rem;
    --nav-width: 68px;
    --first-color: #1c1b1b;
    --first-color-light: #AFA5D9;
    --white-color: #F7F6FB;
    --body-font: 'Nunito', sans-serif;
    --normal-font-size: 1rem;
    --z-fixed: 100
}
*,::before,::after{
    box-sizing: border-box
}
body{
    position: relative;
    margin: var(--header-height) 0 0 0;
    padding: 0 1rem;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    transition: .5s
}
a{
    text-decoration: none
}
.header{
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    background-color: var(--white-color);
    z-index: var(--z-fixed);
    transition: .5s
}
.header_toggle{
    color: var(--first-color);
    font-size: 1.5rem;
    cursor: pointer
}
.header_img{
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden
}
.header_img img{
    width: 40px
}
.l-navbar{
    position: fixed;
    top: 0;
    left: -30%;
    width: var(--nav-width);
    height: 100vh;
    background-color: var(--first-color);
    padding: .5rem 1rem 0 0;
    transition: .5s;
    z-index: var(--z-fixed)
}
.navs{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden
}
.nav_logo, .nav_link{
    display: grid;
    grid-template-columns: max-content max-content;
    align-items: center;
    column-gap: 1rem;
    padding: .5rem 0 .5rem 1.5rem
}
.nav_logo{
    margin-bottom: 2rem
}
.nav_logo-icon{
    font-size: 1.25rem;
    color: var(--white-color)
}
.nav_logo-name{
    color: var(--white-color);
    font-weight: 700
}
.nav_link{
    position: relative;
    color: var(--first-color-light);
    margin-bottom: 1.5rem;
    transition: .3s
}
.nav_link:hover{
    color: var(--white-color)
}
.nav_icon{
    font-size: 1.25rem
}
.show{
    left: 0
}
.body-pd{
    padding-left: calc(var(--nav-width) + 1rem)
}
.active{
    color: var(--white-color)
}
.active::before{
    content: '';
    position: absolute;
    left: 0;
    width: 2px;
    height: 32px;
    background-color: var(--white-color)
}
.height-100{
    height:100vh
}
@media screen and (min-width: 768px){
    body{
        margin: calc(var(--header-height) + 1rem) 0 0 0;
        padding-left: calc(var(--nav-width) + 2rem)
    }
    .header{
        height: calc(var(--header-height) + 1rem);
        padding: 0 2rem 0 calc(var(--nav-width) + 2rem)
    }
    .header_img{
        width: 40px;
        height: 40px
    }
    .header_img img{
        width: 45px
    }
    .l-navbar{
        left: 0;
        padding: 1rem 1rem 0 0
    }
    .show{
        width: calc(var(--nav-width) + 156px)
    }
    .body-pd{
        padding-left: calc(var(--nav-width) + 188px)
    }
    
}

/* music card */
html,
body,
.view {
  height: 100%;
}
.card-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.card {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  margin: 10px;
  position: relative;
  border: none !important;
}
.bg-image{
    height: 280px;
}
.card-img-top{
    height: 100%;
    object-fit: cover;
}
.card .view {
  -webkit-border-top-left-radius: 10px;
  border-top-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  border-top-right-radius: 10px;
}

.card h5 a {
  color: #1c1b1b;
}

.card h5 a:hover {
  color: #072f6b;
}

#pButton {
  position: absolute;
  top: 10%;
  left: 42%;
}
#audioplayer{
    position: absolute;
    top: 60%;
    left: 20px;
    background-color: var(--white-color);
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50%;
}
#timeline {
  width: 90%;
  height: 2px;
  margin-top: 20px;
  margin-left: 10px;
  float: left;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.3);
}

#pButton {
  margin-top: 12px;
  cursor: pointer;
}

#playhead {
  width: 8px;
  height: 8px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-top: -3px;
  background: black;
  cursor: pointer;
}

.footer{
    width: 100%;
    height: var(--footer-height);
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    background-color: var(--white-color);
    z-index: var(--z-fixed);
    transition: .5s
}
.footer_img{
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    overflow: hidden
}
.song-theme{
    display: flex;
    gap: 20px;

}
.footer audio{
    width: 70%;
    outline: none;
    background-color: #F7F6FB;
}

/* ----------------------------------
Artist Profile
------------------------------------*/
.image-con{
    width: 250px;
    height: 250px;
    border-radius: 50%;
    position: relative;
}
.image-con img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.ver-btn{
    display: inline-block;
	border: none;
	font-size: 50px;
	font-weight: 500;
    height: 50px;
	width: 50px;
	padding: 10px;
	border-radius: 50%;
	text-transform: uppercase;
	color: #6d5ef7;
	line-height: normal;
	cursor: pointer;
	text-align: center;
    position: absolute;
    bottom: 10%;
    right: 10%;
    z-index: 3;
}
.art-btn {
	display: inline-block;
	border: none;
	font-size: 14px;
	font-weight: 500;
	min-width: 70px;
	padding: 10px 15px;
	border-radius: 50px;
	text-transform: uppercase;
	background: #fc0254;
	color: #fff;
	line-height: normal;
	cursor: pointer;
	text-align: center;
}
.mn li{
   list-style: none;
}
.mn .active{
    text-decoration: underline;
}
.mn li a{
    color: #1c1b1b;
}
.con-art{
    width: 88%;
    margin: 70px auto;
}
.top-profile {
    width: 88%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    background-image: url("../img/wallpaper/VG6.jpg");
    object-fit: cover;
    background-position: center;
    background-size: cover;
    padding: 50px 20px;
    border-radius: 20px;
    position: relative; /* To position the overlay */
    z-index: 1; /* Ensure that content is layered properly */
    overflow: hidden; /* Prevent the overlay from overflowing the border radius */
}


.mid{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0;
}
.arts-img img{
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
}
.min{
    color: #1c1b1b;
}
ul.songss{
    flex: 4;
}
.songss li{
    cursor: pointer;
}
.songss li:nth-child(even){
    background-color: var(--white-color);
}
.smiler{
    flex: 1;
}
.tp{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.text-con{
    max-width: 700px;
}
.text-con > h2{
    color: #eeeeee;
    font-size: 25px;
    margin-bottom: 10px;
}
@media screen and (max-width: 768px){
    .card-container{
        display: grid;
        grid-template-columns: 1fr;
    }
    .modal {
        background: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 20px;
        border-radius: 10px;
        width: 90%;
        height: auto;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .tp{
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    .likesviews{
        position: absolute;
        top:  10px;
    }
    .text-con{
        text-align: center;
    }
    .mid{
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        width: 100%;
        gap: 20px;
        margin: 20px 0;
    }
}