
img {
    background-color: transparent; /* Zorgt dat de afbeelding geen achtergrondkleur krijgt */
}

body {
    margin: 0;
    font-family: 'Playfair Display', serif;
    background: url("../images/hero-bg.jpg") center/cover no-repeat;
    color: #4a3523;
}

.hero {
    background: url("../images/hero-bg.jpg") center/cover no-repeat;
    padding: 10px 10px;
    text-align: center;
}

.hero h1 {
    font-size: 50px;
    letter-spacing: 4px;
}

.hero p {
    font-size: 30px;
}

.hero-buttons {
    margin-top: 30px;
}

.btn {
    background: #b08968;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    margin: 5px;
    display: inline-block;
    border-radius: 4px;
}

.btn.dark {
    background: url("../images/tropisch.jpg") center/cover no-repeat;
}

.section {
    background: url("../images/light-bg.png") center/cover no-repeat;
    padding: 20px 20px;
    margin: auto;
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px;
}

/* individuele kaart */
.card {
    background: rgba(244, 238, 231, 0.15); /* transparant per kaart */
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(1px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.card img {
    width: 100%;
    border-radius: 5px;
}

.btn.small {
    background: url("../images/grenen.jpg") center/cover no-repeat;
    margin-top: 10px;
    color: #3b371c;
    font-size: 15px;
}

.center {
    text-align: center;
    margin-top: 40px;
}

.light {
background: url("../images/light-bg.png") center/cover no-repeat;
    //background: #efe6da;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px,1fr));
    text-align: center;
    gap: 10px;
}

footer {
    background: url("../images/tropisch.jpg") center/cover no-repeat;
    color: #eed3b5;
    text-align: center;
    padding: 40px 20px;
}

footer a {
    color: #eed3b5;
    text-decoration: none;
    margin: 0 10px;
}


        :root {
            --primary-color: #2563eb;
            --text-main: #1f2937;
            --text-muted: #6b7280;
            --bg-card: #ffffff;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .project-grid {
            display: grid;
            /* Automatische kolommen: minimaal 280px breed */
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
            padding: 2rem;
            max-width: 1200px;
            margin: 0 auto;            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }


