/* Bloemetjesdag — kunstboeket stijl (v3) */
/* Resedagroen · botanisch · echte bloemen */

/* ── Reset & basis ─────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Nunito', Georgia, sans-serif;
    background: linear-gradient(135deg, #F8F5F0 0%, #F2EFE8 50%, #EBE6DE 100%);
    background-attachment: fixed;
    color: #3A3530;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 8% 15%, rgba(97, 134, 68, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 92% 85%, rgba(97, 134, 68, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 20% 70%, rgba(90, 122, 64, 0.03) 0%, transparent 35%);
    pointer-events: none;
    z-index: -1;
}

a {
    color: #618644;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

p {
    line-height: 1.75;
    margin-bottom: 0.9rem;
}

ul {
    padding-left: 1.4rem;
    margin-bottom: 0.9rem;
}

ul li {
    line-height: 1.75;
    margin-bottom: 0.3rem;
}

/* ── Header ────────────────────────────────────────────────── */
header {
    background: linear-gradient(150deg, #5A7A3A 0%, #6B8E4C 40%, #7A9A5C 100%);
    padding: 1.5rem 1rem 1.2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 6px 25px rgba(58, 53, 48, 0.25);
    overflow: hidden;
}

header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(97, 134, 68, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.header-bloemen {
    font-size: 1.3rem;
    letter-spacing: 0.3rem;
    margin-bottom: 0.4rem;
    opacity: 0.85;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

header h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #F5EFE0;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

header h1 a {
    color: inherit;
    text-decoration: none;
}

.header-ondertitel {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    color: rgba(245, 230, 200, 0.95);
    font-size: 1rem;
    margin-top: 0.3rem;
    margin-bottom: 0;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    position: relative;
    z-index: 1;
}

/* ── Navigatie ─────────────────────────────────────────────── */
.hoofdnav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 248, 244, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #C8D8B8;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.4rem 0.4rem;
    box-shadow: 0 2px 12px rgba(58, 53, 48, 0.1);
}

.hoofdnav a {
    color: #5A7A3A;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.4rem 0;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
    flex: 0 0 calc(33.33% - 0.2rem);
    text-align: center;
}

.hoofdnav a:hover {
    background: linear-gradient(135deg, rgba(97, 134, 68, 0.1), rgba(106, 158, 92, 0.1));
    color: #618644;
    text-decoration: none;
}

@media (min-width: 600px) {
    .hoofdnav {
        flex-wrap: nowrap;
        padding: 0.5rem 0.6rem;
    }

    .hoofdnav a {
        flex: 0 0 auto;
        padding: 0.4rem 0.65rem;
    }
}

/* ── Main ──────────────────────────────────────────────────── */
main {
    flex: 1;
    padding: 2rem 1rem;
    max-width: 740px;
    margin: 0 auto;
    width: 100%;
}

/* ── Bestellen ─────────────────────────────────────────────── */
.bestel-legend {
    font-weight: 700;
    color: #618644;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.bestel-optie {
    border: 2px solid #C8D8B8;
    border-radius: 14px;
    padding: 1.1rem 1.1rem 0.9rem;
    margin-bottom: 1.8rem;
    background: linear-gradient(135deg, #F9F7F2 0%, #F3F0E8 100%);
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.bestel-optie::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 0% 0%, rgba(97, 134, 68, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.bestel-scheiding {
    border: none;
    margin: 1.8rem 0;
}

@media (max-width: 600px) {
    .bestel-optie {
        margin-bottom: 3.5rem;
    }
    .bestel-totaal {
        margin-top: 2.5rem;
    }
}

.bestel-optie-actief {
    border-color: #618644;
    background: linear-gradient(135deg, #F5F3E8 0%, #EFF0D8 100%);
    box-shadow: 0 4px 12px rgba(97, 134, 68, 0.15);
}

.bestel-optie-header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    cursor: pointer;
    width: 100%;
    position: relative;
    z-index: 1;
}

.bestel-optie-header input[type="radio"] {
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
    accent-color: #618644;
    cursor: pointer;
}

.bestel-optie-icoon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.bestel-optie-tekst {
    display: flex;
    flex-direction: column;
    flex: 1;
    font-size: 0.93rem;
    color: #6A8A50;
    gap: 0.1rem;
}

.bestel-optie-tekst strong {
    color: #3A3530;
    font-size: 0.98rem;
}

.bestel-optie-prijs {
    font-weight: 700;
    color: #618644;
    font-size: 1rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.bestel-optie-aantal {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.7rem;
    padding-top: 0.6rem;
    border-top: 1px solid #C8D8B8;
    font-size: 0.9rem;
    color: #6A8A50;
    position: relative;
    z-index: 1;
}

.bestel-optie-aantal select {
    padding: 0.3rem 0.5rem;
    border: 2px solid #C8D8B8;
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    width: 4rem;
    background: linear-gradient(135deg, #F9F7F2, #F3F0E8);
}

.bestel-verzend-label {
    font-size: 0.82rem;
    color: #9AA880;
}

.bestel-intro-blok {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bestel-foto-wrapper {
    flex: 0 0 70px;
    width: 70px;
    height: 95px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(42, 24, 8, 0.2);
    align-self: flex-start;
}

.bestel-foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

@media (max-width: 600px) {
    .bestel-foto-wrapper {
        display: none;
    }
}

.bestel-foto-bijschrift {
    font-size: 0.8rem;
    color: #9AA880;
    margin-top: 0.3rem;
    margin-bottom: 0;
    font-style: italic;
}

.bestel-rij {
    display: flex;
    gap: 1rem;
}

.bestel-rij .formulier-groep {
    flex: 1;
}

.bestel-info-blok {
    font-size: 0.88rem;
    color: #5A5050;
    background: linear-gradient(135deg, #E8E5D8, #E0DDD0);
    border: 1px solid #D8B880;
    border-radius: 8px;
    padding: 0.5rem 0.8rem;
    margin-bottom: 1.2rem;
}

.bestel-sectie-titel {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    color: #618644;
    margin: 1.4rem 0 0.8rem;
}

.bestel-totaal {
    font-size: 1.1rem;
    color: #2A1808;
    text-align: right;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 2px solid #C8D8B8;
    font-weight: 700;
}

.bestel-samenvatting {
    background: linear-gradient(135deg, #E8E5D8, #E0DDD0);
    border: 1px solid #C8D8B8;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    margin-top: 1.2rem;
}

.samenvatting-rij {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    padding: 0.3rem 0;
    color: #6A8A50;
    border-bottom: 1px solid #C8D8B8;
}

.samenvatting-rij:last-child {
    border-bottom: none;
}

.samenvatting-totaal {
    font-weight: 700;
    color: #618644;
    font-size: 1.05rem;
    margin-top: 0.3rem;
}

/* ── Footer ────────────────────────────────────────────────── */
footer {
    background: linear-gradient(135deg, #EBE8DE, #EEE9E0);
    border-top: 2px solid #C8D8B8;
    text-align: center;
    padding: 1.2rem 1rem;
    font-size: 0.85rem;
    color: #9AA880;
}

.footer-bloemen {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.3rem;
}

.footer-links {
    margin-bottom: 0.4rem;
}

.footer-links a {
    color: #618644;
    font-weight: 600;
}

.footer-scheider {
    margin: 0 0.5rem;
    color: #B8C8A8;
}

.footer-tekst {
    font-style: italic;
    color: #A89880;
    font-size: 0.8rem;
    margin-bottom: 0;
}

/* ── Kaart ─────────────────────────────────────────────────── */
.kaart {
    background: linear-gradient(135deg, #F9F7F2 0%, #F3F0E8 100%);
    border: 2px solid #C8D8B8;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 6px 30px rgba(58, 53, 48, 0.1), inset 0 1px 0 rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

.kaart::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(97, 134, 68, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.kaart h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.7rem;
    color: #618644;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

/* ── Waarschuwing ──────────────────────────────────────────── */
.waarschuwing {
    border-radius: 10px;
    padding: 0.9rem 1.1rem;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.waarschuwing-privé {
    background: linear-gradient(135deg, #FBF5E0, #F5EDD0);
    border: 1px solid #D8B880;
    color: #5A4010;
}

.waarschuwing-publiek {
    background: linear-gradient(135deg, #EFF3E0, #E0E8D0);
    border: 1px solid #A8B880;
    color: #3A5010;
}

/* ── Formulieren ───────────────────────────────────────────── */
.formulier-groep {
    margin-bottom: 1.2rem;
}

.formulier-groep label {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #5A5050;
}

.formulier-groep input[type="text"],
.formulier-groep input[type="email"],
.formulier-groep input[type="number"],
.formulier-groep input[type="password"],
.formulier-groep textarea,
.formulier-groep select {
    width: 100%;
    padding: 0.65rem 1rem;
    border: 2px solid #C8D8B8;
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    background: linear-gradient(135deg, #F9F7F2, #F3F0E8);
    color: #3A3530;
    outline: none;
    transition: all 0.2s;
}

.formulier-groep input:focus,
.formulier-groep textarea:focus,
.formulier-groep select:focus {
    border-color: #618644;
    box-shadow: 0 0 0 3px rgba(97, 134, 68, 0.15);
}

.formulier-groep textarea {
    min-height: 130px;
    resize: vertical;
}

/* ── Infoblokje ────────────────────────────────────────────── */
.melding-info {
    background: linear-gradient(135deg, #F0EDDF, #E8E5D8);
    border: 2px solid #B8C8A8;
    border-radius: 10px;
    padding: 0.9rem 1.1rem;
    font-size: 0.92rem;
    color: #5A5050;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.melding-info a {
    color: #618644;
    font-weight: 600;
}

/* ── Foutmelding ───────────────────────────────────────────── */
.foutmelding {
    background: linear-gradient(135deg, #EFE8D8, #E8DCC8);
    border: 2px solid #B8A890;
    border-radius: 10px;
    padding: 0.8rem 1rem;
    margin-bottom: 1.2rem;
    color: #5A5050;
    font-size: 0.95rem;
    font-weight: 500;
}

/* ── Knoppen ───────────────────────────────────────────────── */
.knop-primair {
    display: inline-block;
    background: linear-gradient(135deg, #618644, #7A9A5C);
    color: #F5F3E8;
    padding: 0.7rem 1.6rem;
    border-radius: 50px;
    border: none;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(97, 134, 68, 0.35);
    transition: all 0.2s;
}

.knop-primair:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(97, 134, 68, 0.4);
    text-decoration: none;
    color: #F5F3E8;
}

.knop-secundair {
    display: inline-block;
    background: linear-gradient(135deg, #F9F7F2, #F3F0E8);
    color: #6A8A50;
    padding: 0.7rem 1.6rem;
    border-radius: 50px;
    border: 2px solid #C8D8B8;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.knop-secundair:hover {
    background: linear-gradient(135deg, #F0EDD8, #E8E5CC);
    border-color: #9AA880;
    text-decoration: none;
}

.knop-gevaar {
    background: linear-gradient(135deg, #618644, #7A9A5C);
    color: #F5F3E8;
    border: none;
    padding: 5px 12px;
    cursor: pointer;
    border-radius: 50px;
    font-size: 0.82rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    transition: opacity 0.15s;
}

.knop-gevaar:hover {
    opacity: 0.85;
}

/* ── Homepage ──────────────────────────────────────────────── */
.homepage {
    max-width: 580px;
    margin: 2rem auto;
    text-align: center;
    padding: 0 0.5rem;
}

.homepage-intro {
    font-size: 1.1rem;
    color: #6A8A50;
    margin-bottom: 2rem;
    line-height: 1.75;
    font-style: italic;
}

.homepage-knoppen {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.knop-homepage {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1.2rem;
    border-radius: 18px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 3px 15px rgba(42, 24, 8, 0.1);
    position: relative;
    overflow: hidden;
}

.knop-homepage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.knop-homepage:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(42, 24, 8, 0.15);
    text-decoration: none;
}

.knop-ontvanger {
    background: linear-gradient(135deg, #F0EDDF, #E8E5D8);
    border: 2px solid #C8D8B8;
    color: #6A8A50;
}

.knop-gever {
    background: linear-gradient(135deg, #E8E8D8, #E0E5CC);
    border: 2px solid #B8C8A8;
    color: #5A7A3A;
}

.knop-reacties {
    background: linear-gradient(135deg, #E8E8E0, #E0E0D8);
    border: 2px solid #B8B8B0;
    color: #5A5A50;
}

/* ── Bloem-illustraties (SVG waterverfstijl) ─────────────────── */

.icon-bloem-ontvanger::before {
    content: '';
    display: inline-block;
    width: 2.6rem;
    height: 2.6rem;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 140"><defs><linearGradient id="stem" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%25" style="stop-color:%235A7A3A;stop-opacity:0.8"/><stop offset="100%25" style="stop-color:%237A9A5A;stop-opacity:0.6"/></linearGradient><radialGradient id="petal" cx="30%25" cy="30%25"><stop offset="0%25" style="stop-color:%23E8B8C8;stop-opacity:0.9"/><stop offset="100%25" style="stop-color:%23D8808A;stop-opacity:0.7"/></radialGradient></defs><ellipse cx="50" cy="80" rx="3" ry="35" fill="url(%23stem)"/><ellipse cx="50" cy="30" rx="15" ry="12" fill="url(%23petal)" transform="rotate(-25 50 30)"/><ellipse cx="50" cy="25" rx="15" ry="12" fill="url(%23petal)" transform="rotate(0 50 25)"/><ellipse cx="50" cy="30" rx="15" ry="12" fill="url(%23petal)" transform="rotate(25 50 30)"/><ellipse cx="50" cy="20" rx="13" ry="10" fill="%23FED0D8"/><circle cx="50" cy="22" r="4" fill="%23D8705A"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 0.4rem;
    vertical-align: middle;
}

.icon-bloem-gever::before {
    content: '';
    display: inline-block;
    width: 2.6rem;
    height: 2.6rem;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 140"><defs><linearGradient id="stem2" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%25" style="stop-color:%235A7A3A;stop-opacity:0.8"/><stop offset="100%25" style="stop-color:%237A9A5A;stop-opacity:0.6"/></linearGradient><radialGradient id="flowr1" cx="30%25" cy="30%25"><stop offset="0%25" style="stop-color:%23E8C8A8"/><stop offset="100%25" style="stop-color:%23D89060"/></radialGradient><radialGradient id="flowr2" cx="30%25" cy="30%25"><stop offset="0%25" style="stop-color:%23E8B8C8"/><stop offset="100%25" style="stop-color:%23D8808A"/></radialGradient><radialGradient id="flowr3" cx="30%25" cy="30%25"><stop offset="0%25" style="stop-color:%23D8E8A8"/><stop offset="100%25" style="stop-color:%238AB868"/></radialGradient></defs><ellipse cx="60" cy="90" rx="2.5" ry="30" fill="url(%23stem2)"/><circle cx="45" cy="35" r="12" fill="url(%23flowr1)"/><circle cx="60" cy="25" r="12" fill="url(%23flowr2)"/><circle cx="75" cy="35" r="12" fill="url(%23flowr3)"/><circle cx="55" cy="28" r="8" fill="%23D8A050"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 0.4rem;
    vertical-align: middle;
}

.icon-bloem-reacties::before {
    content: '';
    display: inline-block;
    width: 2.6rem;
    height: 2.6rem;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 140"><defs><linearGradient id="stem3" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%25" style="stop-color:%235A7A3A;stop-opacity:0.8"/><stop offset="100%25" style="stop-color:%237A9A5A;stop-opacity:0.6"/></linearGradient><radialGradient id="daisy" cx="35%25" cy="35%25"><stop offset="0%25" style="stop-color:%23FFFED8"/><stop offset="100%25" style="stop-color:%23F8E8A0"/></radialGradient></defs><ellipse cx="50" cy="85" rx="2.5" ry="30" fill="url(%23stem3)"/><circle cx="50" cy="35" r="14" fill="url(%23daisy)"/><ellipse cx="28" cy="25" rx="6" ry="10" fill="%23F0DC90" transform="rotate(-30 28 25)"/><ellipse cx="36" cy="18" rx="6" ry="10" fill="%23F0DC90" transform="rotate(-10 36 18)"/><ellipse cx="50" cy="15" rx="6" ry="10" fill="%23F0DC90" transform="rotate(10 50 15)"/><ellipse cx="64" cy="18" rx="6" ry="10" fill="%23F0DC90" transform="rotate(30 64 18)"/><ellipse cx="72" cy="25" rx="6" ry="10" fill="%23F0DC90" transform="rotate(50 72 25)"/><circle cx="50" cy="35" r="6" fill="%23E8C850"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 0.4rem;
    vertical-align: middle;
}

.knop-icoon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
    position: relative;
    z-index: 1;
    width: 2.6rem;
    height: 2.6rem;
    margin: 0 auto 0.5rem;
}

.knop-icoon::before {
    width: 2.6rem;
    height: 2.6rem;
}

.stap-icoon {
    font-size: 2.8rem;
    margin-bottom: 0.6rem;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
    display: block;
    color: transparent;
}

.stap-icoon::before {
    display: block;
    width: 2.8rem;
    height: 2.8rem;
    margin: 0 auto 0.6rem;
}
    content: '';
    display: inline-block;
    width: 2.6rem;
    height: 2.6rem;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 140"><defs><linearGradient id="s1" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%25" style="stop-color:%235A7A3A;stop-opacity:0.8"/></linearGradient><radialGradient id="p1" cx="30%25" cy="30%25"><stop offset="0%25" style="stop-color:%23E8B8C8"/><stop offset="100%25" style="stop-color:%23D8808A"/></radialGradient></defs><ellipse cx="50" cy="80" rx="3" ry="35" fill="url(%23s1)"/><ellipse cx="50" cy="28" rx="15" ry="12" fill="url(%23p1)" transform="rotate(-25 50 28)"/><ellipse cx="50" cy="23" rx="15" ry="12" fill="url(%23p1)" transform="rotate(0 50 23)"/><ellipse cx="50" cy="28" rx="15" ry="12" fill="url(%23p1)" transform="rotate(25 50 28)"/><circle cx="50" cy="22" r="4" fill="%23D8705A"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
    font-size: 2.6rem;
}

.knop-gever .knop-icoon::before {
    content: '';
    display: inline-block;
    width: 2.6rem;
    height: 2.6rem;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 140"><defs><linearGradient id="s2" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%25" style="stop-color:%235A7A3A;stop-opacity:0.8"/></linearGradient><radialGradient id="f1" cx="30%25" cy="30%25"><stop offset="0%25" style="stop-color:%23E8C8A8"/><stop offset="100%25" style="stop-color:%23D89060"/></radialGradient><radialGradient id="f2" cx="30%25" cy="30%25"><stop offset="0%25" style="stop-color:%23E8B8C8"/><stop offset="100%25" style="stop-color:%23D8808A"/></radialGradient><radialGradient id="f3" cx="30%25" cy="30%25"><stop offset="0%25" style="stop-color:%23D8E8A8"/><stop offset="100%25" style="stop-color:%238AB868"/></radialGradient></defs><ellipse cx="60" cy="90" rx="2.5" ry="30" fill="url(%23s2)"/><circle cx="45" cy="35" r="12" fill="url(%23f1)"/><circle cx="60" cy="25" r="12" fill="url(%23f2)"/><circle cx="75" cy="35" r="12" fill="url(%23f3)"/><circle cx="60" cy="28" r="6" fill="%23D8A050"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
    font-size: 2.6rem;
}

.knop-reacties .knop-icoon::before {
    content: '';
    display: inline-block;
    width: 2.6rem;
    height: 2.6rem;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 140"><defs><linearGradient id="s3" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%25" style="stop-color:%235A7A3A;stop-opacity:0.8"/></linearGradient><radialGradient id="daisy2" cx="35%25" cy="35%25"><stop offset="0%25" style="stop-color:%23FFFED8"/><stop offset="100%25" style="stop-color:%23F8E8A0"/></radialGradient></defs><ellipse cx="50" cy="85" rx="2.5" ry="30" fill="url(%23s3)"/><circle cx="50" cy="35" r="14" fill="url(%23daisy2)"/><ellipse cx="28" cy="25" rx="6" ry="10" fill="%23F0DC90" transform="rotate(-30 28 25)"/><ellipse cx="36" cy="18" rx="6" ry="10" fill="%23F0DC90" transform="rotate(-10 36 18)"/><ellipse cx="50" cy="15" rx="6" ry="10" fill="%23F0DC90" transform="rotate(10 50 15)"/><ellipse cx="64" cy="18" rx="6" ry="10" fill="%23F0DC90" transform="rotate(30 64 18)"/><ellipse cx="72" cy="25" rx="6" ry="10" fill="%23F0DC90" transform="rotate(50 72 25)"/><circle cx="50" cy="35" r="6" fill="%23E8C850"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
    font-size: 2.6rem;
}

.stap-icoon::before {
    content: '';
    display: inline-block;
    width: 2.8rem;
    height: 2.8rem;
    margin-right: 0.4rem;
}

.uitleg-stap:nth-child(1) .stap-icoon::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 140"><defs><linearGradient id="st1" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%25" style="stop-color:%235A7A3A;stop-opacity:0.8"/></linearGradient><radialGradient id="pt1" cx="30%25" cy="30%25"><stop offset="0%25" style="stop-color:%23E8B8C8"/><stop offset="100%25" style="stop-color:%23D8808A"/></radialGradient></defs><ellipse cx="50" cy="80" rx="3" ry="35" fill="url(%23st1)"/><ellipse cx="50" cy="28" rx="15" ry="12" fill="url(%23pt1)" transform="rotate(-25 50 28)"/><ellipse cx="50" cy="23" rx="15" ry="12" fill="url(%23pt1)" transform="rotate(0 50 23)"/><ellipse cx="50" cy="28" rx="15" ry="12" fill="url(%23pt1)" transform="rotate(25 50 28)"/><circle cx="50" cy="22" r="4" fill="%23D8705A"/></svg>');
}

.uitleg-stap:nth-child(2) .stap-icoon::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 140"><defs><linearGradient id="st2" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%25" style="stop-color:%235A7A3A;stop-opacity:0.8"/></linearGradient><radialGradient id="f11" cx="30%25" cy="30%25"><stop offset="0%25" style="stop-color:%23E8C8A8"/><stop offset="100%25" style="stop-color:%23D89060"/></radialGradient><radialGradient id="f22" cx="30%25" cy="30%25"><stop offset="0%25" style="stop-color:%23E8B8C8"/><stop offset="100%25" style="stop-color:%23D8808A"/></radialGradient><radialGradient id="f33" cx="30%25" cy="30%25"><stop offset="0%25" style="stop-color:%23D8E8A8"/><stop offset="100%25" style="stop-color:%238AB868"/></radialGradient></defs><ellipse cx="60" cy="90" rx="2.5" ry="30" fill="url(%23st2)"/><circle cx="45" cy="35" r="12" fill="url(%23f11)"/><circle cx="60" cy="25" r="12" fill="url(%23f22)"/><circle cx="75" cy="35" r="12" fill="url(%23f33)"/><circle cx="60" cy="28" r="6" fill="%23D8A050"/></svg>');
}

.uitleg-stap:nth-child(3) .stap-icoon::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 140"><defs><linearGradient id="st3" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%25" style="stop-color:%235A7A3A;stop-opacity:0.8"/></linearGradient><radialGradient id="daisy3" cx="35%25" cy="35%25"><stop offset="0%25" style="stop-color:%23FFFED8"/><stop offset="100%25" style="stop-color:%23F8E8A0"/></radialGradient></defs><ellipse cx="50" cy="85" rx="2.5" ry="30" fill="url(%23st3)"/><circle cx="50" cy="35" r="14" fill="url(%23daisy3)"/><ellipse cx="28" cy="25" rx="6" ry="10" fill="%23F0DC90" transform="rotate(-30 28 25)"/><ellipse cx="36" cy="18" rx="6" ry="10" fill="%23F0DC90" transform="rotate(-10 36 18)"/><ellipse cx="50" cy="15" rx="6" ry="10" fill="%23F0DC90" transform="rotate(10 50 15)"/><ellipse cx="64" cy="18" rx="6" ry="10" fill="%23F0DC90" transform="rotate(30 64 18)"/><ellipse cx="72" cy="25" rx="6" ry="10" fill="%23F0DC90" transform="rotate(50 72 25)"/><circle cx="50" cy="35" r="6" fill="%23E8C850"/></svg>');
}

.uitleg-stap:nth-child(4) .stap-icoon::before {
    content: '💡';
    font-size: 2.8rem;
}

.uitleg-stap:nth-child(5) .stap-icoon::before {
    content: '🌱';
    font-size: 2.8rem;
}

.knop-label {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.knop-sub {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 0.25rem;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.homepage-knoppen-extra {
    margin-top: 1rem;
}

.homepage-meer {
    margin-top: 2rem;
    font-size: 0.9rem;
}

.homepage-meer a {
    color: #618644;
    font-weight: 600;
}

/* ── Teller ────────────────────────────────────────────────── */
.teller-sectie {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: linear-gradient(135deg, #F0EDDF, #E8E5D8);
    border: 2px solid #C8D8B8;
    border-radius: 16px;
    padding: 1.2rem 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(58, 53, 48, 0.08);
}

.teller-blok {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 0 1rem;
}

.teller-blok + .teller-blok {
    border-left: 2px solid #C8D8B8;
}

.teller-getal {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #618644;
    line-height: 1;
}

.teller-label {
    font-size: 0.82rem;
    color: #9AA880;
    margin-top: 0.3rem;
    text-align: center;
    font-weight: 600;
}

/* ── Tips pagina ───────────────────────────────────────────── */
.tips-intro {
    font-size: 1.05rem;
    color: #6A8A50;
    font-style: italic;
    margin-bottom: 1.8rem;
    line-height: 1.75;
}

/* ── Hero knoppen naast elkaar ─────────────────────────────── */
.hero-knoppen {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Recente reacties op homepage ──────────────────────────── */
.recente-sectie {
    margin-bottom: 2rem;
}

/* ── Homepage hero & secties ───────────────────────────────── */
.hero {
    text-align: center;
    padding: 2.5rem 1rem 2rem;
}

.hero-titel {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: #618644;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.hero-intro {
    font-size: 1.05rem;
    color: #6A8A50;
    max-width: 480px;
    margin: 0 auto 1.5rem;
    line-height: 1.75;
}

.sectie-titel {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    color: #618644;
    text-align: center;
    margin-bottom: 1.5rem;
}

.uitleg-veilig-blok {
    display: block;
    margin-top: 1.2rem;
    padding: 0.85rem 1.2rem;
    background: linear-gradient(135deg, #F0EDDF, #E8E5D8);
    border: 2px solid #B8C8A8;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #5A4A30;
    text-decoration: none;
    line-height: 1.6;
    font-weight: 500;
}

.uitleg-veilig-blok:hover {
    background: linear-gradient(135deg, #E8E5D8, #E0DCC8);
    text-decoration: none;
}

.uitleg-veilig-link {
    color: #618644;
    white-space: nowrap;
    font-weight: 700;
}

.uitleg-sectie {
    background: linear-gradient(135deg, #F7F5ED, #F0EDE5);
    border: 2px solid #C8D8B8;
    border-radius: 18px;
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(58, 53, 48, 0.08);
}

.uitleg-stappen {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.uitleg-stap {
    text-align: center;
    padding: 0 0.5rem;
    text-decoration: none;
    cursor: pointer;
}

.uitleg-stap:hover,
.uitleg-stap:active {
    text-decoration: none;
}

.stap-icoon {
    font-size: 2.8rem;
    margin-bottom: 0.6rem;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
}

.uitleg-stap h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    color: #5A7A3A;
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.uitleg-stap p {
    font-size: 0.95rem;
    color: #6A8A50;
    line-height: 1.65;
    margin-bottom: 0;
}

.actie-sectie {
    margin-bottom: 2rem;
}

.citaat-sectie {
    margin: 1rem 0 2rem;
}

.vertrouwen-balk {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 0.8rem;
    background: linear-gradient(135deg, #E8E5D8, #E0DDD0);
    border: 2px solid #C8D8B8;
    border-radius: 12px;
    padding: 0.8rem 1rem;
    margin-bottom: 2rem;
    font-size: 0.88rem;
    color: #5A5050;
    font-weight: 500;
}

.vertrouwen-scheider {
    color: #B0B8A0;
}

.veilig-melding {
    margin-top: 1rem;
    font-size: 0.88rem;
    color: #6A8A50;
    text-align: center;
}

.citaat {
    background: linear-gradient(135deg, #F0EDE5, #F0E8D8);
    border-left: 4px solid #7A9A5C;
    border-radius: 0 14px 14px 0;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 4px 15px rgba(42, 24, 8, 0.1);
}

.citaat p {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #5A7A3A;
    margin-bottom: 0.5rem;
    line-height: 1.65;
}

.citaat cite {
    font-size: 0.85rem;
    color: #A89880;
}

@media (min-width: 600px) {
    .uitleg-stappen {
        flex-direction: row;
    }

    .uitleg-stap {
        flex: 1;
    }

    .hero-titel {
        font-size: 2.4rem;
    }
}

/* ── Reactiepagina ─────────────────────────────────────────── */
.reacties-pagina {
    max-width: 640px;
    margin: 0 auto;
}

.reacties-header {
    text-align: center;
    margin-bottom: 2rem;
}

.reacties-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.7rem;
    color: #618644;
    margin-bottom: 0.5rem;
}

.reacties-intro {
    color: #9AA880;
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.reacties-lijst {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.reactie-kaart {
    background: linear-gradient(135deg, #F9F7F2, #F3F0E8);
    border: 2px solid #C8D8B8;
    border-radius: 16px;
    padding: 1.3rem 1.5rem;
    box-shadow: 0 3px 12px rgba(58, 53, 48, 0.08);
    transition: all 0.2s;
}

.reactie-kaart:hover {
    box-shadow: 0 6px 20px rgba(58, 53, 48, 0.12);
}

.reactie-bericht {
    font-size: 1rem;
    line-height: 1.75;
    color: #3A3530;
    margin-bottom: 0.8rem;
}

.reactie-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.reactie-naam {
    font-size: 0.88rem;
    font-weight: 700;
    color: #7A8A60;
}

.reactie-email {
    font-size: 0.82rem;
    color: #8A9870;
    margin-top: 0.2rem;
}

.reactie-datum {
    font-size: 0.8rem;
    color: #B8C8A8;
}

.reacties-actie {
    text-align: center;
    margin-top: 1rem;
}

.reacties-leeg {
    text-align: center;
    padding: 3rem 1rem;
}

.leeg-icoon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.leeg-sub {
    color: #A89880;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* ── Over-pagina ───────────────────────────────────────────── */
.over-pagina h2 {
    margin-bottom: 1.8rem;
}

.over-sectie {
    margin-bottom: 2rem;
}

.over-sectie h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    color: #618644;
    margin-bottom: 0.8rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid #C8D8B8;
    font-weight: 700;
}

.over-terug {
    margin-top: 2rem;
}

.tussenpagina-actie {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #C8D8B8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
}

.tussenpagina-uitnodiging {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    color: #6A8A50;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

/* ── Reactie privé ─────────────────────────────────────────── */
.reactie-prive {
    border-color: #D8A880;
    background: linear-gradient(135deg, #FBF5E8, #F5EDD8);
}

.prive-label {
    display: inline-block;
    font-size: 0.75rem;
    background: #E8D8B0;
    color: #5A4010;
    border-radius: 50px;
    padding: 0.15rem 0.6rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

/* ── Keuze-optie (zichtbaarheid) ───────────────────────────── */
.keuze-optie {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
}

.keuze-optie input[type="radio"] {
    accent-color: #618644;
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
}

/* ── Hulptekst ─────────────────────────────────────────────── */
.hulptekst {
    display: block;
    font-size: 0.82rem;
    color: #9AA880;
    margin-top: 0.3rem;
}

.verplicht {
    color: #618644;
    font-weight: 700;
}

.optioneel {
    color: #A89880;
    font-weight: 400;
}

.intro {
    color: #6A8A50;
    font-size: 1rem;
}

/* ── Teller (tekens over) ──────────────────────────────────── */
.teller {
    display: block;
    font-size: 0.8rem;
    color: #A89880;
    text-align: right;
    margin-top: 0.3rem;
}

/* ── Admin-tabel ───────────────────────────────────────────── */
.admin-sectie {
    margin-bottom: 2.5rem;
}

.admin-sectie h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    color: #618644;
    margin-bottom: 1rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid #C8D8B8;
}

.admin-tabel {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.admin-tabel th {
    background: linear-gradient(135deg, #E8E5D8, #E0DDD0);
    color: #5A5A50;
    text-align: left;
    padding: 0.55rem 0.8rem;
    border-bottom: 2px solid #C8D8B8;
    font-weight: 700;
}

.admin-tabel td {
    padding: 0.55rem 0.8rem;
    border-bottom: 1px solid #E8E0D0;
    vertical-align: middle;
}

.admin-tabel tr:last-child td {
    border-bottom: none;
}

.admin-tabel tr:hover td {
    background: linear-gradient(135deg, #F5EDD8, #F0EBD0);
}

.admin-acties {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

/* ── Bevestigingspagina ────────────────────────────────────── */
.kaart-centraal {
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}

.bedankt-icoon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.kaart-centraal .intro {
    font-size: 1.05rem;
    color: #6A8A50;
    margin-bottom: 1.5rem;
}

/* ── Utility ───────────────────────────────────────────────── */
.verborgen {
    display: none;
}

.terug-link {
    margin-top: 1.5rem;
    text-align: center;
}

/* ── Responsief ────────────────────────────────────────────── */
@media (min-width: 500px) {
    .homepage-knoppen {
        flex-direction: row;
    }

    .knop-homepage {
        flex: 1;
    }
}
