/* ==========================
   GOOGLE FONT
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Manrope',sans-serif;
    background:#fdf4f7;
    color:#222;
    overflow-x:hidden;
}

img{
    display:block;
    max-width:100%;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}



/* ==========================
   NAVIGATION
========================== */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
   background:#fdf4f7;
    backdrop-filter:blur(15px);
    z-index:999;
}

.navbar{
    width:90%;
    margin:auto;
    height:85px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:1.5rem;
    font-weight:800;
}

.logo-black{
    color:#222;
}

.logo-pink{
    color:#efb5c8;
}

.nav-links{
    display:flex;
    gap:2.5rem;
}

.nav-links a{
    color:#333;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:#efb5c8;
}

.menu-btn{
    width:50px;
    height:50px;

    display:none;

    justify-content:center;
    align-items:center;

    background:#fff;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    cursor:pointer;

    position:relative;

    transition:.35s;
}

.menu-btn span{

    position:absolute;

    left:50%;

    width:24px;
    height:2px;

    background:#efb5c8;

    border-radius:10px;

    transition:.35s;

    transform:translateX(-50%);

}

.menu-btn span:nth-child(1){

    top:16px;

}

.menu-btn span:nth-child(2){

    top:24px;

}

.menu-btn span:nth-child(3){

    top:32px;

}

.menu-btn:hover{

    transform:translateY(-3px) scale(1.05);

}

.menu-btn.active span:nth-child(1){

    transform:
    translate(-50%,8px)
    rotate(45deg);

}

.menu-btn.active span:nth-child(2){

    opacity:0;

}

.menu-btn.active span:nth-child(3){

    transform:
    translate(-50%,-8px)
    rotate(-45deg);

}
/*==========================
      SECTION TITLE
==========================*/

.section-title{

    display:flex;
    flex-direction:column;
    align-items:center;

    text-align:center;

    margin:0 auto 4rem;

}

.section-title h2{

    display:inline-block;

    position:relative;

    font-size:clamp(2.2rem,5vw,3rem);

    color:#222;

    font-weight:800;

    padding-bottom:.8rem;

}

.section-title h2::after{

    content:"";

    position:absolute;

    left:50%;
    bottom:0;

    transform:translateX(-50%);

    width:100%;
    height:3px;

    background:#efb5c8;

    border-radius:100px;

}

.section-title p{

    max-width:700px;

    margin-top:1.6rem;

    color:#666;

    line-height:1.8;

    font-size:1.05rem;

}