*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}


body{

    background:#121212;
    color:white;

}



header{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:#000;

}


.music-player {
    margin-top: 25px;
    background: #181818;
    padding: 15px;
    border-radius: 15px;
    width: 300px;
}

.music-player:hover {

    transform: translateY(-10px);
    background: #242424;
    box-shadow: 0 10px 20px rgba(29,185,84,0.3);

}

.music-player h3 {
    color: #1DB954;
}

.music-player p {
    color: #aaa;
}

.music-player button {
    background: #1DB954;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 10px;
    
}

.music-player button:hover {

    background: #1ed760;
    transform: scale(1.1);

}

nav a{
    color:white;
    text-decoration:none;
    margin:15px;
    font-weight:bold;
    transition:.3s;
}


nav a.active{
    color:#1DB954;
    border-bottom:3px solid #1DB954;
    padding-bottom:5px;
}


nav a:hover{

    color:#1DB954;

}



button{

    background:#1DB954;
    border:none;
    padding:12px 20px;
    border-radius:30px;
    cursor:pointer;
    font-weight:bold;

}



.hero{

    min-height:90vh;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:70px;
    padding:50px;

}



.hero-text{

    max-width:500px;

}


.now{

    color:#1DB954;
    font-weight:bold;

}



.hero h2{

    font-size:50px;
    margin:20px 0;

}


.hero h3{

    color:#aaa;
    margin-bottom:20px;

}



.profile-card{

    background:#181818;
    padding:25px;
    text-align:center;
    border-radius:20px;
    width:300px;

    box-shadow:0 0 20px rgba(29,185,84,0.3);

    transition:0.4s ease;

}

.profile-card{
    border:2px solid rgba(29,185,84,0.5);
}

.profile-card:hover{

    transform:translateY(-10px);

    box-shadow:
        0 0 20px #1DB954,
        0 0 40px rgba(29,185,84,0.6),
        0 0 60px rgba(29,185,84,0.4);

}


.profile-card img{

    width:250px;
    height:250px;

    border-radius:50%;
    object-fit:cover;

    border:8px solid #1DB954;

    box-shadow:
        0 0 20px #1DB954,
        0 0 40px rgba(29,185,84,0.5);

    animation: musicSpin 8s linear infinite;

}


@keyframes musicSpin{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}


#about {
    
    padding: 70px 10%;
    background: #121212;
    color: white;

}


#about h2 {

    color: #1DB954;
    text-align: center;
    font-size: 35px;
    margin-bottom: 40px;

}



.about-container {

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;

}



.about-image img {
    width:350px;
    height:350px;
    object-fit:cover;
    border-radius:25px;
    border:5px solid #1DB954;
    box-shadow:0 0 30px rgba(29,185,84,0.5);
    transition:0.4s ease;
}


.about-image img:hover {
    transform:scale(1.05);
    box-shadow:0 0 45px rgba(29,185,84,0.8);
}
.about-image {
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}

@media(max-width:768px){

    .about-container{
        flex-direction:column;
    }

    .about-image img{
        width:280px;
        height:280px;
    }

}




.about-content{
    max-width:600px;
    background:#181818;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 20px rgba(0,0,0,.3);
}



.about-content h3 {

    font-size: 30px;
    color: #1DB954;

}



.role {

    color: #b3b3b3;
    margin: 10px 0 20px;

}



.about-content p{
    line-height:1.7;
    color:#aaa;
    margin-bottom:15px;
}

.about-content h4{
    color:#1DB954;
    margin-top:20px;
    margin-bottom:10px;
}

.about-content hr{
    border:none;
    height:2px;
    background:#1DB954;
    width:80px;
    margin:20px 0;
}



.contact{
    min-height: 85vh;
    background: #121212;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.contact h2{
    color: #1DB954;
    font-size: 40px;
    margin-bottom: 10px;
}

.subtitle{
    color: #b3b3b3;
    margin-bottom: 40px;
}


.contact-item{
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

.contact-item:last-child{
    border-bottom: none;
}

.contact-item h3{
    color: #1DB954;
    margin-bottom: 8px;
}

.contact-item p{
    color: #aaa;
    font-size: 16px;
}

.contact-item a{
    color:#1DB954;
    text-decoration:none;
    font-weight:bold;
}

.contact-item a:hover{
    text-decoration:underline;
    color:#1ed760;
}


#interests{
    background:#121212;
    color:white;
    padding:70px 10%;
    text-align:center;
}

#interests h2{
    color:#1DB954;
    margin-bottom:40px;
}

.interest-container{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.interest-card{
    background:#181818;
    width:250px;
    padding:20px;
    border-radius:15px;
    transition:.3s;
}

.interest-card h3{
    color:#1DB954;
    margin-bottom:15px;
}

.interest-card p{
    color:#b3b3b3;
    line-height:1.6;
}

.interest-card:hover{
    transform:translateY(-8px);
    box-shadow:0 8px 20px rgba(29,185,84,.3);
}

/* DANCE PROJECT PAGE */


.project-section{

    min-height:90vh;
    padding:70px 10%;
    background:#121212;
    color:white;
    text-align:center;

}


.project-section h2{

    color:#1DB954;
    font-size:40px;
    margin-bottom:40px;

}



.project-intro{

    background:#181818;
    padding:30px;
    border-radius:20px;
    max-width:800px;
    margin:auto;

    box-shadow:0 0 20px rgba(29,185,84,.3);

}



.project-intro h3{

    color:#1DB954;
    margin-bottom:15px;

}



.project-intro p{

    color:#aaa;
    line-height:1.7;

}



.gallery{

    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin-top:50px;

}



.project-card{

    background:#181818;
    width:300px;
    padding:20px;
    border-radius:20px;

    transition:.4s ease;

    box-shadow:0 0 15px rgba(29,185,84,.2);

}



.project-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 0 20px #1DB954,
    0 0 40px rgba(29,185,84,.5);

}



.project-card img{

    width:100%;
    height:250px;

    object-fit:cover;

    border-radius:15px;

    border:4px solid #1DB954;

}



.project-card h3{

    color:#1DB954;
    margin:15px 0;

}



.project-card p{

    color:#aaa;
    line-height:1.5;

}



.reflection{

    margin-top:50px;

    background:#181818;

    padding:30px;

    border-radius:20px;

}



.reflection h3{

    color:#1DB954;

    margin-bottom:15px;

}



.reflection p{

    color:#aaa;

    line-height:1.7;

}



/* LIGHT MODE FOR PROJECT PAGE */


.light .project-section{

    background:#f5f5f5;
    color:#222;

}


.light .project-intro,
.light .project-card,
.light .reflection{

    background:white;

}


.light .project-card p,
.light .project-intro p,
.light .reflection p{

    color:#333;

}



@media(max-width:768px){

    .project-section{

        padding:50px 5%;

    }

    .gallery{

        flex-direction:column;
        align-items:center;

    }

}

footer{

    text-align:center;
    background:#000;
    padding:20px;
    color:#aaa;

}

.light{
    background:#f5f5f5;
    color:#222;
}

.light header{
    background:#fff;
}

.light footer{
    background:#fff;
    color:#222;
}

.light nav a{
    color:#222;
}

.light section{
    background:#f5f5f5 !important;
    color:#222;
}

.light .profile-card,
.light .music-player,
.light .about-content,
.light .playlist,
.light .contact-card,
.light .interest-card{
    background:#fff;
}


.light p{
    color:#333;
}



body {
    animation: fadeIn 0.6s ease-in-out;
}

/* Landing Page Button */

.home-btn{

    display:flex;
    justify-content:center;
    align-items:center;

    width:280px;
    height:65px;

    margin:50px auto;

    background:#1DB954;

    color:#000;

    text-decoration:none;

    border-radius:40px;

    font-size:18px;

    font-weight:bold;

    letter-spacing:1px;

    box-shadow:
        0 0 20px rgba(29,185,84,0.5);

    transition:0.4s ease;

}


/* Hover Animation */

.home-btn:hover{

    background:#1ed760;

    color:white;

    transform:translateY(-8px) scale(1.05);

    box-shadow:
        0 0 25px #1DB954,
        0 0 50px rgba(29,185,84,0.6);

}


/* Mobile Size */

@media(max-width:768px){

    .home-btn{

        width:220px;

        height:55px;

        font-size:16px;

    }

}