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



}

a:link, a:visited, a:hover, a:active {
    color: inherit;
}


header{
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translatex(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 3px;
    z-index: 1000;
    

}
.logo{
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    text-wrap: nowrap;
    transition: 0.3s ease-in-out;
}
.logo:hover{
    transform: scale(1.1);
}
.navbar{
    display: flex;
    gap: 2rem;
}
li a{
    color: white;
    font-weight: 300;
    position: relative;
}
li a::before{
    position: absolute;
    content: '';
    width: 0;
    left: 0;
    height: 5px;
    top: 25px;
    border-radius: 1rem;
    transition: 0.3s ease-in-out;
    background: linear-gradient(to right,#00d9ff, #0003a5);

}
li a:hover::before{
    width: 100%;
}
.visit-btn{
    padding: 0.8rem 1.5rem;
    border-radius: 3rem;
    border: none;
    font-weight: 500;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    text-wrap: nowrap;
    transition: 0.3s ease-in-out;
    background: linear-gradient(to right,#00d9ff, #0003a5);
}
.visit-btn:hover{
    background: linear-gradient(to right, #0003a5, #00d9ff);
    transform: scale(1.04);
}
#menu-icon{
    font-size: 2rem;
    gap: 30%;
    display: none;
}



section{
    min-height: 100vh;
    padding: 5rem 5%;
    width: 90%;
    position: relative;

}
.about{
    display: flex;
    align-items: center;
    justify-content: center;
}
.about .about-container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10rem;
}
.about img{
    width: 30vw;
    border-radius: 50%;
}
.info-box{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
.info-box h3{
    font-size: 1.8rem;
    font-weight: 500;
    opacity: 0.8;
}
.info-box h1{
    font-size: 4rem;
    font-weight: 600;
}
.info-box span{
    background: linear-gradient(to right,#00d9ff, #0003a5);
    background-clip: text;
    color: transparent;
    font-size: 2rem;
}
.btn-group{
    display: flex;
    gap: 1rem;
}
.btn, .contact button{
    border-radius: 3rem;
    padding: 0.5rem 1.5rem;
    border: 2px solid black;
    cursor: pointer;
    font-weight: 500;
    text-wrap: nowrap;
    transition: 0.2s ease-in-out;
}
.btn:hover, .contact button:hover{
    background-color: black;
    color: white;
}
.socials{
    display: flex;
    gap: 2rem;
}
.socials i{
    font-size: 2.5rem;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}
.socials i:hover{
    transform: scale(1.1);
}


.contact{
    padding-top: 7rem;
}
.contact form{
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact input, .contact textarea{
    width: 30vw;
    padding: 1rem;
    font-size: 20px;
    border-radius: 3px;
    border: 2px solid black;

}



.music-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 2rem;
}
.project-card{
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
    border: 2px solid black;
    border-radius: 3rem;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.project-card:hover{
    background-color: black;
    color: white;
    transform: translateY(-10px)scale(1.02);
}
.project-card img{
    width: 20vw;
    border-radius: 1rem;
}
.project-card:hover .btn{
    border: 2px solid white;
    color: white;
}
.project-card:hover .btn:hover{
    border: 2px solid white;
    background-color: white;
    color: black;
}
.project-card h3{
    font-size: 2rem;
    font-weight: 500;
    text-wrap: normal;
}










.section-title{
    font-size: 4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
}
.music-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 2rem;
}
.album-card{
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
    border: 2px solid black;
    border-radius: 3rem;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.album-card:hover{
    background-color: black;
    color: white;
    transform: translateY(-10px)scale(1.02);
}
.album-card img{
    width: 20vw;
    border-radius: 1rem;
}
.album-card:hover .btn{
    border: 2px solid white;
    color: white;
}
.album-card:hover .btn:hover{
    border: 2px solid white;
    background-color: white;
    color: black;
}
.album-card h3{
    font-size: 2rem;
    font-weight: 500;
    text-wrap: normal;
}




@media(max-width: 1280px){
    header{
        padding: 1rem 2rem;
        gap: 2rem;
    }

}
@media(max-width: 768px){
    header{
        gap: 1rem;
        padding: 1rem 1rem;
    }
    header .logo{
        font-size: 1rem;
    }
    header .visit-btn{
        display: none;
    }
    .about-container{
        flex-direction: column;
    }

}
@media(max-width: 600px){
    header #menu-icon{
        display: inline-block;
        
    }
    header{
        padding: 1rem 5rem;
        gap: 55vw;
        width: 200vw;
        transform: translateX(-38.5%);

    }
    .navbar{
        position: absolute;
        top: 100%;
        margin-top: .5rem;
        width: 150vw;
        padding: 2rem;
        color: white;
        display: flex;
        flex-direction: column;
        text-align: center;
        background: rgba(0, 0, 0, 0.9);
        display: none;
        transform: translateX(-16%);
        
        
    }
    .navbar li{
        margin-top: 1.5rem;
        padding: 2rem;
    }
    .navbar.active{
        display: flex;
    }

    .navbar {
        transform: translateX();
    }
    
    header .logo{
        font-size: 1.5rem;
    }
    .about-container img{
        width: 60vw;
    }
    .album-card img{
        width: 50vw;

    }
    .project-card img{
        width: 50vw;

    }
    .about .about-container{
        gap: 1rem;
    }

    .info-box h3{
        font-size: 1.5rem;
        font-weight: 500;
        }
    .info-box h1{
        font-size: 2rem;
    }
    .projects h3{
        font-size: 1.5rem;
    }
    .projects h2{
        font-size: 3rem;
    }
    .music h3{
        font-size: 1.5rem;
    }
    .music h2{
        font-size: 3rem;
    }
    .info-box span{
        font-size: 1rem;
    }
    section{
        padding: 3rem 5%;
        width: 90%;
    }
    .contact input, .contact textarea{
    width: 50vw;
    font-size: 15px;
    border-radius: 3px;
    border: 2px solid black;
    }
}
@media(max-width: 450px){
    header{
        gap: 45vw;
        transform: translateX(-41%);
    }
    .navbar{
        transform: translateX(-12.5%);
    }
}
@media(max-width: 350px){
    header{
        gap: 40vw;
        transform: translateX(-41%);
    }
    .navbar{
        transform: translateX(-12.5%);
    }
}

