
.hero-section {
    background: #aad3a8;
    padding: 100px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.hero-container {
    max-width: 900px;
    margin: auto;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 500;
    color: #1c1c1c;
    line-height: 1.3;
}

.highlight {
    color: #c07a5c;
    font-style: italic;
}

.highlight-light {
    color: #c07a5c;
    font-style: italic;
    font-weight: 400;
}

.hero-sub {
    margin-top: 20px;
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-card {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    padding: 14px 22px;
    border-radius: 14px;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.hero-btn {
    margin-top: 40px;
    background: #4c6b4f;
    color: #fff;
    padding: 16px 34px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #3b5640;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 32px;
    }

    .feature-boxes {
        flex-direction: column;
        align-items: center;
    }
}

/* STICKY NAVBAR */
.elarisse-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Add shadow on scroll */
.elarisse-nav.scrolled {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Space below navbar */
body {
    padding-top: 90px;
}


html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 100px;
}
 