/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --yellow:  #FFD93D;
    --orange:  #FF6B35;
    --pink:    #FF6EB4;
    --teal:    #4ECDC4;
    --blue:    #45B7D1;
    --green:   #6BCB77;
    --purple:  #C77DFF;
    --bg:      #FFFBF0;
    --text:    #3A3A3A;
    --white:   #FFFFFF;
    --radius:  18px;
    --shadow:  0 4px 18px rgba(0,0,0,.10);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== RAINBOW TOP STRIPE ===== */
.rainbow-stripe {
    height: 7px;
    background: linear-gradient(to right,
        var(--yellow) 0%, var(--orange) 17%,
        var(--pink) 34%, var(--teal) 51%,
        var(--blue) 68%, var(--green) 85%,
        var(--purple) 100%);
}

/* ===== HEADER ===== */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
}

.logo-icon {
    font-size: 2.6rem;
    line-height: 1;
}

.logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.35rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.logo-text span {
    font-size: .78rem;
    color: #888;
    font-weight: 500;
}

/* ===== NAV ===== */
nav ul {
    display: flex;
    gap: 6px;
    padding: 10px 0;
}

nav ul li a {
    display: block;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .93rem;
    transition: transform .15s, box-shadow .15s;
}

nav ul li a:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

nav ul li:nth-child(1) a { background: var(--yellow);  color: #333; }
nav ul li:nth-child(2) a { background: var(--orange);  color: var(--white); }
nav ul li:nth-child(3) a { background: var(--teal);    color: var(--white); }
nav ul li:nth-child(4) a { background: var(--pink);    color: var(--white); }

nav ul li a.active {
    outline: 3px solid #333;
    outline-offset: 2px;
}

/* ===== MAIN ===== */
main { flex: 1; }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #FFF3B0 0%, #FFD6E0 50%, #C5F0FF 100%);
    text-align: center;
    padding: 72px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '🌟 ⭐ 🌈 ⭐ 🌟';
    position: absolute;
    top: 14px; left: 0; right: 0;
    font-size: 1.2rem;
    opacity: .35;
    letter-spacing: 1.5rem;
    text-align: center;
}

.hero-emoji { font-size: 5rem; margin-bottom: 18px; line-height: 1; }

.hero h2 {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--orange);
    text-shadow: 2px 2px 0 rgba(0,0,0,.07);
    margin-bottom: 14px;
}

.hero p {
    max-width: 580px;
    margin: 0 auto 28px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.btn {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
    border: none;
}

.btn:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }

.btn-primary   { background: var(--orange); color: var(--white); }
.btn-secondary { background: var(--teal);   color: var(--white); margin-left: 10px; }
.btn-yellow    { background: var(--yellow); color: #333; }

/* ===== SECTION BASE ===== */
section { padding: 60px 24px; }

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-title {
    text-align: center;
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 40px;
    position: relative;
}

.section-title span {
    display: inline-block;
    padding: 4px 18px;
    border-radius: 50px;
}

/* ===== CARDS GRID ===== */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 24px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform .2s;
}

.card:hover { transform: translateY(-5px); }

.card-icon { font-size: 2.8rem; margin-bottom: 14px; }
.card h3   { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.card p    { font-size: .93rem; line-height: 1.65; color: #666; }

.card:nth-child(1) { border-top: 5px solid var(--yellow); }
.card:nth-child(2) { border-top: 5px solid var(--orange); }
.card:nth-child(3) { border-top: 5px solid var(--teal); }
.card:nth-child(4) { border-top: 5px solid var(--pink); }
.card:nth-child(5) { border-top: 5px solid var(--blue); }
.card:nth-child(6) { border-top: 5px solid var(--green); }

/* ===== INTRO SECTION ===== */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 700px) { .intro-grid { grid-template-columns: 1fr; } }

.intro-img {
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    border-radius: var(--radius);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
}

.intro-text h2 { font-size: 1.7rem; font-weight: 800; margin-bottom: 16px; color: var(--orange); }
.intro-text p  { font-size: 1rem; line-height: 1.8; color: #555; margin-bottom: 14px; }

/* ===== HIGHLIGHT BAND ===== */
.highlight-band {
    background: linear-gradient(135deg, var(--teal), var(--blue));
    color: var(--white);
    text-align: center;
    padding: 48px 24px;
}

.highlight-band h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.highlight-band p  { font-size: 1.05rem; opacity: .9; max-width: 560px; margin: 0 auto 24px; }

/* ===== OVER ONS ===== */
.over-hero {
    background: linear-gradient(135deg, #D4F5D4, #FFF3B0);
    padding: 60px 24px;
    text-align: center;
}

.over-hero h2 { font-size: 2.2rem; font-weight: 900; color: var(--green); margin-bottom: 12px; }
.over-hero p  { max-width: 600px; margin: 0 auto; font-size: 1.1rem; color: #555; line-height: 1.7; }

.profile-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 32px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    flex-shrink: 0;
}

.profile-info h3  { font-size: 1.4rem; font-weight: 800; color: var(--orange); margin-bottom: 6px; }
.profile-info .subtitle { color: #888; font-size: .9rem; margin-bottom: 14px; }
.profile-info p   { font-size: .97rem; line-height: 1.75; color: #555; margin-bottom: 10px; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.value-item {
    text-align: center;
    padding: 24px 16px;
    border-radius: var(--radius);
    background: var(--bg);
}

.value-item .icon { font-size: 2.2rem; margin-bottom: 10px; }
.value-item h4    { font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.value-item p     { font-size: .87rem; color: #666; line-height: 1.6; }

/* ===== AANBOD ===== */
.aanbod-hero {
    background: linear-gradient(135deg, #FFE4F0, #E4F0FF);
    padding: 60px 24px;
    text-align: center;
}

.aanbod-hero h2 { font-size: 2.2rem; font-weight: 900; color: var(--pink); margin-bottom: 12px; }
.aanbod-hero p  { max-width: 600px; margin: 0 auto; font-size: 1.1rem; color: #555; line-height: 1.7; }

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.info-table th {
    background: var(--orange);
    color: var(--white);
    padding: 14px 20px;
    text-align: left;
    font-weight: 700;
}

.info-table td {
    padding: 13px 20px;
    border-bottom: 1px solid #F0F0F0;
    font-size: .95rem;
}

.info-table tr:last-child td { border-bottom: none; }
.info-table tr:nth-child(even) td { background: #FAFAFA; }

.badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 700;
}

.badge-green  { background: #D4EDDA; color: #1A7A3C; }
.badge-yellow { background: #FFF3B0; color: #856404; }

/* ===== CONTACT ===== */
.contact-hero {
    background: linear-gradient(135deg, #E4F0FF, #F0E4FF);
    padding: 60px 24px;
    text-align: center;
}

.contact-hero h2 { font-size: 2.2rem; font-weight: 900; color: var(--blue); margin-bottom: 12px; }
.contact-hero p  { max-width: 600px; margin: 0 auto; font-size: 1.1rem; color: #555; line-height: 1.7; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 32px;
    align-items: start;
}

@media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.contact-info-card h3  { font-size: 1.2rem; font-weight: 800; margin-bottom: 20px; color: var(--blue); }

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.contact-item .ci-icon {
    font-size: 1.6rem;
    min-width: 36px;
}

.contact-item p { font-size: .93rem; color: #555; line-height: 1.5; }
.contact-item strong { color: var(--text); display: block; font-size: .97rem; }

/* ===== FORM ===== */
.form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow);
}

.form-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 22px; color: var(--pink); }

.form-group { margin-bottom: 18px; }

.form-group label {
    display: block;
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: 6px;
    color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 15px;
    border: 2px solid #E8E8E8;
    border-radius: 10px;
    font-size: .95rem;
    font-family: inherit;
    transition: border-color .15s;
    background: var(--bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: .95rem;
    font-weight: 600;
}

.alert-success { background: #D4EDDA; color: #1A7A3C; border-left: 4px solid var(--green); }
.alert-error   { background: #FFE0E0; color: #C0392B; border-left: 4px solid #E74C3C; }

/* ===== FOOTER ===== */
footer {
    background: #2D2D2D;
    color: #CCC;
    text-align: center;
    padding: 32px 24px;
    font-size: .88rem;
    line-height: 1.9;
}

footer strong { color: var(--yellow); }

footer .footer-rainbow {
    height: 5px;
    background: linear-gradient(to right,
        var(--yellow) 0%, var(--orange) 17%,
        var(--pink) 34%, var(--teal) 51%,
        var(--blue) 68%, var(--green) 85%,
        var(--purple) 100%);
    margin-bottom: 24px;
    border-radius: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    .hero h2    { font-size: 1.7rem; }
    .header-inner { justify-content: center; }
    nav ul { flex-wrap: wrap; justify-content: center; }
    .cards[style*="repeat(3"] { grid-template-columns: 1fr !important; }
}

@media (min-width: 601px) and (max-width: 900px) {
    .cards[style*="repeat(3"] { grid-template-columns: repeat(2, 1fr) !important; }
}
