*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter', sans-serif;
    background:#dbe7f3;
}

/* NAVBAR */
.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 60px;
    z-index:1000;
    transition:0.3s;
}

.logo{
    font-weight:600;
    font-size:18px;
    color:#111;
}

/* NAV LINKS */
.nav-links{
    display:flex;
    gap:25px;
    align-items:center;
}

.nav-links a{
    text-decoration:none;
    color:#111;
    font-size:14px;
}

/* HOVER */
.nav-links a:hover{
    opacity:0.6;
}

/* GLASS EFFECT */
.navbar.scrolled{
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

/* HERO */
.hero{
    position:relative; /* IMPORTANT */
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
}

.hero h1{
    font-family:'Playfair Display', serif;
    font-size:64px;
    line-height:1.1;
    color:#111111;
}

.hero h1 span{
    display:block;
    font-family:'Inter', sans-serif;
    font-weight:500;
}

.hero p{
    margin-top:20px;
    color:#333;
    font-size:16px;
}

/* BUTTON */
.buttons{
    margin-top:30px;
}

.btn{
    border-radius: 15cap;
    padding:12px 22px;
    border:none;
    background:#000;
    color:#fff;
    cursor:pointer;
}

/* EXTRA */
.extra{
    padding:40px 20px;
}

.extra h1{
    font-size:20px;
}

/* MOBILE MENU */
.menu-toggle{
    display:none;
    font-size:24px;
    cursor:pointer;
}
.hero-img{
    position:absolute;
    bottom:0;
    left:20%;   /* 👈 move left/right from here */
    
    transform:translateX(-50%);
    width:500px;
    /* opacity:0.25; */

    z-index:1;
}
/* .hero-img{
    filter: grayscale(100%) contrast(130%);
    mix-blend-mode: multiply;
} */
.hero-content{
    position:relative;
    z-index:2;
    max-width:700px;
}

/* 📱 RESPONSIVE */
@media(max-width:768px){

    .navbar{
        padding:15px 20px;
    }

    .menu-toggle{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:70px;
        right:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        align-items:center;
        gap:20px;
        padding:20px 0;
        display:none;
    }

    .nav-links.active{
        display:flex;
    }
    
    .hero h1{
        font-size:39px;
    }

    .hero p{
        font-size:14px;
    }

.hero-img{
    position:absolute;
    bottom:0;
    left:50%;   /* 👈 move left/right from here */
    
    transform:translateX(-50%);
    width:500px;
    /* opacity:0.25; */

    z-index:1;
}


}

