*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    color:#6b526b;
    background:
    linear-gradient(
        135deg,
        #ffe5f1,
        #fff8fc,
        #e8f7ff
    );

}

header{

    position:fixed;
    top:0;
    width:100%;
    padding:20px 10%;
    background:rgba(255,255,255,0.75);
    backdrop-filter:blur(15px);
    box-shadow:0 5px 20px rgba(255,150,180,.2);
    z-index:100;

}

nav{

    display:flex;
    justify-content:space-between;
    align-items:center;

}

.logo{

    color:#ff80aa;
    font-size:25px;
    font-weight:700;

}

nav ul{

    display:flex;
    list-style:none;
    gap:35px;

}

nav a{

    text-decoration:none;
    color:#79566f;
    font-weight:600;
    transition:.3s;

}

nav a:hover{

    color:#ff80aa;

}

.home{

    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:70px;
    padding:120px 10%;

}

.home h1{

    font-size:3rem;
    color:#684b68;

}

.home span{

    color:#ff80aa;
}

.home p{

    margin:20px 0;
    line-height:1.8;
    max-width:500px;
}

.btn{

    display:inline-block;
    padding:13px 35px;
    background:#ff9fc4;
    color:white;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    box-shadow:
    0 10px 20px rgba(255,150,190,.4);
    transition:.3s;
}

.btn:hover{

    transform:translateY(-5px);
    background:#ff78ad;
}

.profile img{

    width:280px;
    height:280px;
    object-fit:cover;
    border-radius:50%;
    border:10px solid white;
    box-shadow:
    0 15px 35px rgba(255,150,180,.4);
    animation:float 3s infinite ease-in-out;
}

@keyframes float{

    50%{
        transform:translateY(-15px);
    }

}

section{

    padding:90px 10%;

}

h2{

    text-align:center;
    color:#ff80aa;
    font-size:2.5rem;
    margin-bottom:40px;
}

.box{

    background:white;
    padding:35px;
    border-radius:30px;
    line-height:1.8;
    box-shadow:
    0 10px 30px rgba(255,150,180,.25);
}

.cards{

    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));
    gap:30px;

}

.card{

    background:white;
    padding:30px;
    text-align:center;
    border-radius:30px;

    box-shadow:
    0 10px 30px rgba(255,150,180,.25);

    transition:.4s;
}
.card:hover{

    transform:translateY(-12px);
    background:#fff1f7;

}

.icon{

    font-size:50px;
    margin-bottom:15px;
}

.card h3{

    color:#ff80aa;
    margin-bottom:15px;
}

.card p{

    line-height:1.7;

}
.hobby-img{
    width:150px;
    height:150px;
    object-fit:cover;
    border-radius:25px;
    border:6px solid #ffe1ed;
    margin-bottom:15px;
    box-shadow:
    0 8px 20px rgba(255,150,180,.3);
    transition:.3s;
}

.hobby-img:hover{

    transform:scale(1.1);

}

footer{

    text-align:center;
    padding:25px;
    background:#ffd1e3;
    color:#75566f;
    font-weight:600;

}

@media(max-width:768px){

.home{

    flex-direction:column;
    text-align:center;

}

.home h1{

    font-size:2.2rem;
}

.profile img{

    width:220px;
    height:220px;
}

nav ul{

    display:none;

}

}
.back-home{
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff9ecb;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.back-home:hover{
    background: #ff7eb6;
    transform: scale(1.05);
}
nav ul{
    display: flex;
    align-items: center;
    list-style: none;
}

.landing-btn{
    margin-left: auto;
}

.landing-btn a{
    background: #ff9ecb;
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.landing-btn a:hover{
    background: #ff7eb6;
    transform: translateY(-2px);
}