/* ==========================
   HEADER / NAVBAR
========================== */
body{
    padding-top: 65px;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: #f8f0e3;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.header.hide{
    transform: translateY(-100%);
}

/* Container */

.header .container {

    height: 65px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 50px;
}


/* Logo */

.logo img {
     
    width: 105px;
    height: auto;
    
}


/* Navigation */

.navbar {

    flex: 1;
    display: flex;
    justify-content: center;

}


.nav-links {

   display: flex;
    align-items: center;

    gap: 30px;

    list-style: none;

    margin: 0;
    padding: 0;

}


.nav-links li a {

    font-size: 13px;
    font-weight: 500;

    text-decoration: none;

    color:#333;

}


.nav-links li a:hover {

    color: #d52684;

}



/* Contact Button */

.contact-btn {

    text-decoration: none;

    background: #d52684;

    color:white;

    padding: 9px 22px;

    border-radius:25px;

    font-size:13px;

    font-family:"Poppins",sans-serif;

}

.menu-toggle{
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    position: relative;
    z-index: 1001;
}

/* ==========================
   Mobile Navbar
========================== */

@media (max-width:900px){
     body{
        padding-top:0;
    }

    .header{
        position: relative;
        z-index: 1000;
    }

    .header .container{
        position: relative;
        z-index: 1000;
    }

    .menu-toggle{
        display:block;
    }

    .navbar{
        position:absolute;
        top:65px;
        left:0;
        width:100%;
        display:none;
        background:#f8f0e3;
        z-index:999;
    }

    .navbar.active{
        display:flex;
        justify-content:center;
    }

    .nav-links{
        width:100%;
        flex-direction:column;
        align-items:center;
        padding:25px 0;
        gap:20px;
    }

    .contact-btn{
        display:none;
    }
}