/* =========================
   BASE
========================= */

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #111;
}

/* =========================
   HERO (FIXED IMAGE PATH)
========================= */

.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background-image: url("/images/hero.png"); /* ← HIER PNG */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    max-width: 820px;
    padding: 24px;
    color: #fff;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.hero-lead {
    margin-bottom: 25px;
}

/* =========================
   BUTTONS
========================= */

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-primary {
    background: #1e5eff;
    color: #fff;
    padding: 12px 22px;
    text-decoration: none;
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 12px 22px;
    text-decoration: none;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 90%;
    }

}