html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'DM Sans',sans-serif;
    background: #F8F6F1;
    color: #1B4332;
}

/* NAVBAR */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    border-bottom: 1px solid #D5D0C8;
    background: white;
    position: sticky;
    top: 0;
    z-index: 10;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

    .navbar.scrolled {
        background: rgba(255,255,255,0.8);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid #D5D0C8;
    }

.logo {
    font-family: 'DM Serif Display',serif;
    font-size: 22px;
}

.nav-links a {
    margin-left: 25px;
    text-decoration: none;
    color: #1B4332;
    font-weight: 500;
}

.create-btn {
    background: #1B4332;
    color: white !important;
    padding: 8px 16px;
    border-radius: 6px;
}

/* HERO */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px;
}

    .hero h1 {
        font-family: 'DM Serif Display',serif;
        font-size: 70px;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 22px;
        color: #6B7C72;
    }

.cta {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 30px;
    background: #1B4332;
    color: white;
    border-radius: 8px;
    text-decoration: none;
}

/* SECTIONS */

.section {
    max-width: 1000px;
    margin: auto;
    padding: 80px 40px;
    text-align: center;
}

    .section h2 {
        font-family: 'DM Serif Display',serif;
        font-size: 40px;
        margin-bottom: 20px;
    }

    .section p {
        font-size: 18px;
        color: #6B7C72;
    }

/* CARDS */

.cards {
    display: flex;
    gap: 30px;
    margin-top: 60px;
}

.card {
    flex: 1;
    background: #EDEAE3;
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s;
}

    .card:hover {
        transform: translateY(-8px);
    }

/* PRIVACY */

.privacy {
    background: #EDEAE3;
    padding: 70px 40px;
    border-radius: 12px;
    margin: 80px auto;
    max-width: 800px;
}

/* SCROLL ANIMATION */

.fade-section {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

    .fade-section.show {
        opacity: 1;
        transform: translateY(0);
    }
.cursor-glow {
    position: fixed;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(27,67,50,0.15) 0%, transparent 60%);
    pointer-events: none;
    transform: translate(-50%,-50%);
    z-index: 0;
}
#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero {
    position: relative;
    overflow: hidden;
}