@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&family=Sansita&display=swap');

:root{
    --theme-color:#B4FD55;
    --theme-color02:#000000;
    --theme-color03:#ffffff;
    --theme-color04:#606060;
    font-size: 62.5%;
}   

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    scroll-behavior: smooth;

}
.header{
    position: absolute;
    min-height: 90px;
    top: 0;
    display: flex;
    left: 0%;
    flex-direction:column;
    align-items: center;
    width: 100%;
    justify-content: space-around;
    background-color: white;
    z-index: 10;
    transform: translateY(0%);
    transition: 0.3s ease;
}
.header::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    filter: blur(5px);
    background-color: transparent;
    opacity: 0.8;
    z-index: 8;
}
.header a{
    color:var(--theme-color02);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}
.header .logo{
    font-size: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.header .nav-links{
    position: relative;
    height: max-content;
    width: max-content;
    display: flex;
    gap: 100px;
    list-style: none;
    align-items: center;
    justify-content: space-evenly;
    z-index: 10;
}
.header .nav-links li{
    position: relative;
    overflow: hidden;
    height: max-content;
}
.header .nav-links li a{
    color: var(--theme-color02);
    position: relative;
    height: max-content;
    font-size: 15px;
    overflow: hidden;
}
.header .nav-links li a:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color:var(--theme-color02);
    left:0;
    transition: 0.3s ease;
    bottom: 0;
    transform: translateX(-100%);
}
.header .nav-links li a:hover::before{
    transform: translateX(0%);
}
.header .burger{
    width: 30px;
    min-height: 20px;
    aspect-ratio: 2/1;
    position: relative;
    display: none;
    z-index: 10;
}
.header .burger .line{
    position: absolute;
    width: 100%;
    transition: 0.3s ease;
    height: 2px;
    background-color: var(--theme-color02);
}
.header .burger .line:nth-child(1){
    top: 0;
}
.header .burger .line:nth-child(2){
    transform: translateY(-50%);
    top: 50%;
}
.header .burger .line:nth-child(3){
    bottom: 0;
}

.header .burger-active .line:nth-child(3){
    transform: rotateZ(45deg);
    top:50%;
}
.header .burger-active .line:nth-child(2){
    opacity: 0;
}
.header .burger-active .line:nth-child(1){
    top: 50%;
    transform:rotateZ(-45deg); 
}
.nav-bar-deactive{
    transform: translateY(-100%);
}

.footer{
    background-color: var(--theme-color02);
    position: relative;
    bottom: 0;
    height: 70vh;
    min-height: 400px;
    width: 100%;
    padding: 5%;
    display: flex;
    overflow: hidden;
    justify-content: space-between;
    align-items: top;
    max-height: fit-content;
}
.footer #footer-part2 ul li,.footer #footer-part3 ul li{
    list-style: none;
    overflow:hidden;
    position: relative;
    margin-bottom:10px;
}
.footer #footer-part2 ul li a,.footer #footer-part3 ul li{
    position: relative;
    font-size: 15px;
    color: var(--theme-color03);
    overflow:hidden ;
}
.footer #footer-part2 ul li a:before{
    position: absolute;
    content: "";
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--theme-color03);
    left: 0;
    transform: translateX(-110%);
    transition: 0.3s ease;
    
}
.footer #footer-part2 ul li a:hover::before{
    transform: translateX(0);
}
.footer p{
    position: relative;
    color: var(--theme-color);
    margin-bottom: 20px;
}
.footer #footer-part3 ul li:nth-child(3){
    width: 70%;
    height: max-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer #footer-part3 ul li a{
    font-size: 20px;
    color: var(--theme-color03);
}
.footer #footer-part3 ul li a i{
    color: var(--theme-color01);
    transition: 0.3s ease;
}
.footer #footer-part3 ul li a i:hover{
    color:var(--theme-color);
}
.footer #footer-part1 .footerlogo{
    color: var(--theme-color);
    font-size: 40px;
}
section{
    height: max-content;
    position: relative;
    padding: 10%;
    min-height: 500px;
}
h1{
    position: relative;
    font-size: 7rem;
}
h2{
    position: relative;
    font-size: 5rem;
}
h3{
    position: relative;
    font-size: 3.5rem;
    padding-bottom:5px;
    width: max-content;
}
h4{
    position: relative;
    font-size: 2.5rem;
}
.no-bold{
    font-weight: 200;
}
.link{
    position: relative;
    color: var(--theme-color);
    font-size: 25px;
}
.link::before{
    content: "";
    position: absolute;
    background-color: var(--theme-color);
    width: 0;
    height: 3px;
    bottom: 0;
    transform: translateY(100%);
    transition: 0.2s ease;
}
.link:hover::before{
    width: 100%;
}

#home{
    height:100vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 0;
}
#home .home-section{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:20px;
    color: white;
}
#home .images{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: black;
}
#home .images .image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.5;
}

.container{
    height: max-content;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.container .content{
    position: relative;
    width: 50%;
    height: max-content;
    min-height: 200px;

}
.container .image{
    position: relative;
    width: 45%;
    aspect-ratio: 1/1;
    background-color: rgb(105, 105, 105);
    min-height: 200px;
    background-position:center;
    background-repeat: no-repeat;
    background-size: cover;

}
.container-right .image{
    order: 1;
}
span{
    color: var(--theme-color);
}
p{
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
}
#quote{
    position: relative;
    min-height: 500px;
}
#quote .container .content span{
    font-size:100px;
}
#quote .container .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#about{
    padding-top: 0;
}
#about h3{
    position: relative;
    margin-bottom: 10px;
}
#about .container{
    margin-bottom: 20px;
}
#about .container .content{
    height: max-content;
    display: flex;
    flex-direction:column;
    align-items: start;
    justify-content: center;
    gap: 20px;

}
#about .container .image{
    position: relative;
    width: 45%;
    aspect-ratio: 1.2/1;
    background-color: rgb(174, 174, 174);
    min-height: 200px;
    background-position:center;
    background-repeat: no-repeat;
    background-size: cover;

}
#recent-work{
    padding-top: 0;
}
#recent-work h3{
    position: relative;
    margin-bottom: 100px;
}
#recent-work .work-container{
    width: 100%;
    display: grid;
    grid-template-columns: 33% 33% 33%;
    gap: 10px;
}
#recent-work .work-container .card{
    position: relative;
    aspect-ratio: 1/1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}
#socials{
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#socials h3{
    position: relative;
    margin-bottom: 100px;
}
#socials .container{
    justify-content: space-around;
}
#socials .container .link{
    font-size: 100px;
    aspect-ratio: 1/1;
    width: 13%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.3s ease;
}
#socials .container .link::before{
    display: none;
}
#socials .container .link:hover{
    transform: scale(1.1);
}
#socials .container .link i{
    padding:10px;
    border: solid transparent;
    border-radius: 20px;
    color: black;
    transition:0.3s ease;
}
#socials .container .link:hover i{
    background-color: var(--theme-color);
}

#music-hero{
    height: 90vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
}
#music-hero .gradient{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgb(0,0,0);
    height: 100%;
}
#music-hero h1{
    color: white;
}

#cards{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}
#cards .card{
    display: flex;
    align-items: center;
    max-width: 2000px;
    justify-content: space-between;
    width: 100%;
}
#cards .card .image{
    width: 40%;
    aspect-ratio: 1/1;
    background-color: gray;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#cards .card .part1{
    padding-top: 5%;
    padding-bottom: 5%;
    width: 50%;
}
#cards .card .part1 h2{
    font-family: 'Poppins', sans-serif;
}
#cards .card .part1 .song-heading1{
    position: relative;
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 40px;
}
#cards .card .part1 .song-heading2{
    position: relative;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 20px;
}
#cards .card .part1 p{
    position: relative;
    margin-bottom: 20px;
    font-size: 15px;
    color: var(--theme-color04);
}

#cards .card .part1 .card-bottom{
    height: 70px;
    display: flex;
    align-items: center;
    gap: 20px;
}
#cards .card .part1 .card-bottom .link{
    font-size: 20px;
}
.play-btn{
    color: rgb(0, 0, 0);
    background-color: var(--theme-color);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 30px;
    transition: 0.3s ease;
    padding-right: 30px;
}
.play-btn:hover{
    background-color: #000000;
    color: white;
}
.play-btn::before{
    display: none;
}

.btn{
    background-color: var(--theme-color);
    color: black;
    padding: 18px;
    font-size: 18px;
    transition: 0.3s ease;
}
.btn:hover{
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
}

.btn::before{
    display: none;
}

#music-hero .background-image{
    position: absolute;
    height: 94%;
    right: 0;
    bottom: 0;
    z-index: -1;
}


#recent-work .work-container .card::before{
    content:"";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1;
    opacity: 0.5;
}
#recent-work .work-container .card img{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}
#recent-work .work-container .card:after{
    content:"";
    position: absolute;
    color: white;
    z-index: 2;
}
#recent-work .work-container .card:nth-child(1):after{
    content:"Artist";
}
#recent-work .work-container .card:nth-child(2):after{
    content:"Producer";
}

#recent-work .work-container .card:nth-child(3):after{
    content:"Entrepreneur";
}

#recent-work .work-container .card a{
    z-index: 3;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background-color: var(--theme-color);
    color: black;
    transition: 0.3s ease;
    opacity: 0;
}
#recent-work .work-container .card a:hover{
    opacity: 1;
}