/* ── Rozen Gelegenheden — Frontend ───────────────────── */

.rzng-sectie {
    width: 100%;
    padding: 48px 0 56px;
    background: #fdf8f3;
}

/* Sectietitel — zelfde stijl als "VEEL GEKOZEN" */
.rzng-heading {
    text-align: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #3a2a2a;
    margin: 0 0 32px;
    text-transform: uppercase;
    position: relative;
}

.rzng-heading::before,
.rzng-heading::after {
    content: '';
    display: inline-block;
    width: 48px;
    height: 1px;
    background: #c5a882;
    vertical-align: middle;
    margin: 0 14px;
}

/* Grid — 4 kolommen, 2 rijen */
.rzng-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Elke tegel */
.rzng-tegel {
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    background-color: #e8d8cc;
    background-size: cover;
    background-position: center;
    height: 220px;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rzng-tegel:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

/* Gradient overlay */
.rzng-tegel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 30%,
        rgba(0,0,0,0.6) 100%
    );
    transition: opacity 0.3s ease;
}

.rzng-tegel:hover::before {
    opacity: 0.8;
}

/* Naam label */
.rzng-label {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 14px 16px;
    color: #ffffff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.3;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Fallback kleuren per tegel */
.rzng-tegel:nth-child(1) { background-color: #b83050; }
.rzng-tegel:nth-child(2) { background-color: #d4868a; }
.rzng-tegel:nth-child(3) { background-color: #c4889c; }
.rzng-tegel:nth-child(4) { background-color: #c8b89a; }
.rzng-tegel:nth-child(5) { background-color: #7a9e72; }
.rzng-tegel:nth-child(6) { background-color: #9ec49a; }
.rzng-tegel:nth-child(7) { background-color: #6a7a8a; }
.rzng-tegel:nth-child(8) { background-color: #8a7a6a; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
    .rzng-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    .rzng-tegel { height: 180px; }
}

@media (max-width: 600px) {
    .rzng-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 12px;
    }
    .rzng-tegel { height: 150px; }
    .rzng-sectie { padding: 32px 0 40px; }
}
