/* HERO */
.hero-full.overkappingen-hero {
    background-image: url('overkapping-header.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (min-width: 1200px) {
    .hero-full.overkappingen-hero {
        background-size: 115%;
    }
}

.hero-full.overkappingen-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.hero-full.overkappingen-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 750px;
    padding: 0 20px;
}

.hero-full.overkappingen-hero h1 {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 14px;
}

.hero-full.overkappingen-hero h2 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-full.overkappingen-hero p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.92;
}

/* KNOPPEN */
.hero-buttons {
    display: flex;
    gap: 22px;
    justify-content: center;
}

.hero-btn {
    padding: 14px 32px;
    background: #FF7A00;
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    font-size: 17px;
    transition: 0.3s ease;
    box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.45);
}

.hero-btn.hero-btn-secondary {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.4);
}

.hero-btn.hero-btn-secondary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-full.overkappingen-hero {
        height: 75vh;
    }

    .hero-full.overkappingen-hero h1 {
        font-size: 42px;
    }

    .hero-full.overkappingen-hero h2 {
        font-size: 20px;
    }

    .hero-full.overkappingen-hero p {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .hero-full.overkappingen-hero {
        height: 65vh;
        padding-top: 18vh;
    }

    .hero-full.overkappingen-hero h1 {
        font-size: 32px;
    }

    .hero-full.overkappingen-hero h2 {
        font-size: 16px;
    }

    .hero-full.overkappingen-hero p {
        font-size: 14px;
    }
}
