*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#ffffff;
    color:#222;
    line-height:1.7;
}

.navbar{
    padding:18px 0;
    background:#fff;
    border-bottom:1px solid #f1f1f1;
}

.navbar-brand{
    font-size:24px;
    font-weight:700;
}

.nav-link{
    color:#333 !important;
    margin-left:20px;
    font-size:15px;
    transition:.3s;
}

.nav-link:hover{
    color:#16a34a !important;
}

.container{
    max-width:1200px;
}

section{
    padding:100px 0;
}

/* ================= HERO ================= */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    text-align:center;
}

.hero-card{
    width:100%;
    max-width:760px;
    margin:auto;
    padding:70px 60px;
    border:1px solid #e8e8e8;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    animation:fadeUp 1s ease;
    transition:.4s;
}

.hero-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.hero-subtitle{
    letter-spacing:4px;
    text-transform:uppercase;
    font-size:13px;
    color:#777;
    margin-bottom:20px;
}

.hero-title{
    font-family:'Cormorant Garamond',serif;
    font-size:62px;
    line-height:1.15;
    margin-bottom:25px;
    font-weight:600;
}

.hero-text{
    max-width:600px;
    margin:0 auto 35px;
    color:#666;
    font-size:18px;
}

.hero-btn{
    padding:15px 42px;
    border-radius:50px;
    font-weight:600;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(50px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* ================= MOBILE ================= */

@media (max-width:768px){

    .navbar-brand{
        font-size:20px;
    }

    .hero{
        min-height:calc(100vh - 70px);
        padding:30px 15px;
    }

    .hero-card{
        padding:40px 25px;
    }

    .hero-title{
        font-size:42px;
        line-height:1.2;
    }

    .hero-text{
        font-size:16px;
    }

    .hero-btn{
        width:100%;
    }

}