/* --- GLOBAL --- */
body {
    margin: 0;
    font-family: 'Advent Pro', sans-serif;
    background: #f5f5f5;
    color: #222;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 4rem;
    margin: 0;
    font-weight: 600;
}

.hero-content p {
    font-size: 1.6rem;
    margin: 10px 0 25px;
}

.cta-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #ffcc00;
    color: #222;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.2s;
}

.cta-btn:hover {
    background: #e6b800;
}

/* --- INTRO --- */
.intro {
    padding: 60px 20px;
    text-align: center;
}

.intro h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

/* --- DIENSTEN --- */
.diensten {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 20px;
}

.dienst {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 280px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.dienst h3 {
    margin-top: 0;
    font-size: 1.6rem;
}
