/* HERO */
.glazen-hero {
    background: url('glazen-schuifwand-hero.jpg') center/cover no-repeat;
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed; /* subtiele parallax op desktop */
}

.glazen-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.40);
    z-index: 1;
}

.glazen-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.glazen-hero h1 {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 14px;
}

.glazen-hero h2 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.95;
}

.glazen-hero p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.92;
}

/* HERO BUTTONS */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.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-secondary {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.4);
}

.hero-btn-secondary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

/* CTA */
.cta-footer {
    background: #FF7A00;
    padding: 100px 5%;
    text-align: center;
    color: #fff;
}

.cta-footer h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-footer p {
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-btn {
    padding: 14px 34px;
    background: #fff;
    color: #FF7A00;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}

.cta-btn:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .glazen-hero {
        height: 70vh;
        background-attachment: scroll;
    }

    .glazen-hero h1 {
        font-size: 42px;
    }

    .glazen-hero h2 {
        font-size: 20px;
    }

    .glazen-hero p {
        font-size: 15px;
    }
}

@media (max-width: 500px) {
    .glazen-hero h1 {
        font-size: 32px;
    }

    .glazen-hero h2 {
        font-size: 16px;
    }

    .glazen-hero p {
        font-size: 14px;
    }
}
