@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@200;400;600;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Bricolage Grotesque",sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#fff5fa;
    color:#333;
}


#landing{
    width:100%;
    height:100vh;
    background:url("collage.jpg") center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
}

.overlay{
    width:100%;
    height:100%;
    background:rgba(0,0,0,.55);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    padding:20px;
}

.overlay h1{
    font-size:60px;
    margin-bottom:10px;
}

.overlay p{
    font-size:22px;
}

button{
    margin-top:30px;
    padding:14px 40px;
    border:none;
    border-radius:30px;
    background:#ff4fa3;
    color:white;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    background:#ff1493;
    transform:scale(1.05);
}


#website{
    display:none;
}


header{
    position:sticky;
    top:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    padding:15px 50px;
    background:#ff69b4;
    box-shadow:0 2px 8px rgba(0,0,0,.2);
    z-index:1000;
}

header h2{
    color:white;
    font-size:28px;
}

nav{
    display:flex;
    gap:20px;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

nav a:hover{
    color:#ffe4ef;
}


.group-link{
    text-decoration:none;
    color:#ff69b4;
    background:white;
    padding:10px 18px;
    border-radius:30px;
    font-weight:bold;
    transition:.3s;
}

.group-link:hover{
    background:#ffe4ef;
    transform:translateY(-2px);
}


section{
    min-height:100vh;
    padding:80px 30px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}


#home{
    background:url("collage.jpg") center/cover no-repeat;
}

.home-content{
    background:rgba(0,0,0,.55);
    color:white;
    padding:40px;
    border-radius:20px;
    max-width:700px;
}

.home-content h1{
    font-size:50px;
}

.home-content p{
    margin-top:15px;
    font-size:20px;
}


#about{
    background:url("pink.jpg") center/cover no-repeat;
}

#about h1{
    margin-bottom:20px;
    font-size:45px;
}

.profile{
    width:230px;
    height:230px;
    border-radius:50%;
    object-fit:cover;
    border:6px solid hotpink;
    margin-bottom:25px;
    box-shadow:0 0 15px rgba(0,0,0,.2);
}

#about p{
    max-width:700px;
    margin:8px auto;
    font-size:18px;
    line-height:1.7;
}


#hobby{
    background:#fff;
}

#hobby h1{
    font-size:45px;
    margin-bottom:30px;
    color:#ff1493;
}

.gallery{
    width:90%;
    max-width:900px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.25);
}

.projects{
    background:#f4d1b5;
    color:#2A1713;
}

.projects h2{
    font-size:45px;
    margin-bottom:30px;
}

.projects-container{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:25px;
    margin-top:30px;
}

.project-card{
    width:320px;
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.2);
    transition:.3s;
}

.project-card:hover{
    transform:translateY(-10px);
}

.project-card h3{
    color:#2A1713;
    margin-bottom:15px;
}

.project-card p{
    font-size:16px;
    color:#444;
    margin-bottom:20px;
    line-height:1.6;
}

.btn{
    display:inline-block;
    background:#ff69b4;
    color:#fff;
    text-decoration:none;
    padding:10px 20px;
    border-radius:30px;
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    background:#ff1493;
    transform:scale(1.05);
}


#contact{
    background:#ff69b4;
    color:white;
}

#contact h1{
    margin-bottom:20px;
    font-size:45px;
}

#contact p{
    font-size:20px;
    margin:10px 0;
}


footer{
    background:#222;
    color:white;
    text-align:center;
    padding:18px;
    font-size:15px;
}


@media(max-width:768px){

header{
    flex-direction:column;
    gap:15px;
    padding:20px;
}

nav{
    flex-wrap:wrap;
    justify-content:center;
}

.overlay h1{
    font-size:40px;
}

.overlay p{
    font-size:18px;
}

.home-content h1{
    font-size:35px;
}

#about h1,
#hobby h1,
#contact h1{
    font-size:35px;
}

.profile{
    width:180px;
    height:180px;
}

.group-link{
    margin-top:10px;
}

}

