/*
Theme Name: GeneratePress Child
Template: generatepress
Version: 1.0
*/

/* Basis reset / startpunt */
body {
    margin: 0;
}

/* Container breedte (belangrijk voor jouw design) */
.site-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero basis */
.hero {
    position: relative;
    color: #fff;
    padding: 120px 20px;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 50, 0.6);
}

.hero-content {
    position: relative;
    max-width: 600px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #2f6df6;
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.site-header {
    position: absolute;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 100;
}
