/* HERO */
.veranda-zelfbouw-hero {
    background: url('veranda-zelfbouw-hero.jpg') center/cover no-repeat;
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.veranda-zelfbouw-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.veranda-zelfbouw-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 750px;
    padding: 0 20px;
}

.veranda-zelfbouw-hero h1 {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 14px;
}

.veranda-zelfbouw-hero h2 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.95;
}

.veranda-zelfbouw-hero p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.92;
}

/* MATERIALEN */
.materiaal-overzicht {
    padding: 100px 5%;
    text-align: center;
    background: #fff;
}

.materiaal-overzicht h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
}

.mo-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.materiaal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.materiaal-item {
    background: #fff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    text-align: left;
}

.materiaal-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.materiaal-item img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 18px;
}

.materiaal-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.materiaal-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* ZELFBOUWPAKKETTEN */
.zelfbouw-pakketten {
    padding: 100px 5%;
    background: #f7f7f7;
    text-align: center;
}

.zelfbouw-pakketten h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
}

.zp-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.pakket-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.pakket-item {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.pakket-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.pakket-item h3 {
    font-size: 22px;
    margin-bottom: 18px;
    font-weight: 700;
}

.pakket-item ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.pakket-item ul li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #444;
}

.pakket-btn {
    display: inline-block;
    padding: 14px 26px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.pakket-btn:hover {
    background: #ff6600;
    transform: translateY(-2px);
}

/* HANDLEIDING */
.zelfbouw-handleiding {
    padding: 100px 5%;
    text-align: center;
    background: #fff;
}

.zelfbouw-handleiding h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
}

.zelfbouw-handleiding p {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
}

.handleiding-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.handleiding-btn:hover {
    background: #ff6600;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .materiaal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pakket-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .materiaal-grid,
    .pakket-grid {
        grid-template-columns: 1fr;
    }

    .veranda-zelfbouw-hero h1 {
        font-size: 40px;
    }

    .veranda-zelfbouw-hero h2 {
        font-size: 20px;
    }

    .veranda-zelfbouw-hero p {
        font-size: 15px;
    }
}
