/* ================== BASIS (zelfde als andere pagina's) ================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ABE0F0;
    color: #2d2d2d;
    line-height: 1.6;
    min-height: 100vh;
}

.hero-header {
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2)),
                 url('../image0011041.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.header-overlay {
    background: rgba(171, 224, 240, 0.55);
    padding: 2.5rem 3rem;
    border-radius: 30px;
    backdrop-filter: blur(8px);
    max-width: 90%;
}

h1 {
    font-family: 'Comic Neue', cursive;
    font-size: 4rem;
    margin-bottom: 0.8rem;
    text-shadow: 3px 3px 12px rgba(0,0,0,0.6);
}

.hero-header p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
}

.main-nav {
    background: rgba(255, 238, 145, 0.92);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    margin: 0;
}

.main-nav a {
    color: #E2852E;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;
    transition: all 0.3s;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: #F5C857;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -6px;
    left: 0;
    background: #F5C857;
    transition: width 0.3s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

section {
    padding: 5rem 1rem;
    text-align: center;
}

h2 {
    font-family: 'Comic Neue', cursive;
    font-size: 3rem;
    color: #E2852E;
    margin-bottom: 2.5rem;
}

.bubble {
    background: rgba(255, 238, 145, 0.94);
    border-radius: 2.5rem; /* iets minder extreem rond voor form */
    padding: 2.5rem 3rem;
    margin: 2rem auto;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12),
                inset 0 0 15px rgba(255,255,255,0.6);
    backdrop-filter: blur(5px);
    border: 2px solid #ABE0F0;
}

.big-bubble {
    max-width: 900px;
    font-size: 1.2rem;
}

footer {
    background: linear-gradient(to right, #E2852E, #F5C857);
    color: white;
    text-align: center;
    padding: 2.5rem 1rem;
    margin-top: 5rem;
}

.footer-image {
    width: 90px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(245, 200, 87, 0.5));
    animation: gentle-glow 4s ease-in-out infinite;
    transition: all 0.4s;
}

.footer-image:hover {
    transform: scale(1.15) rotate(10deg);
    filter: drop-shadow(0 12px 32px rgba(245, 200, 87, 1)) brightness(1.2);
    animation: none;
}

@keyframes gentle-glow {
    0%, 100% { filter: drop-shadow(0 4px 12px rgba(245, 200, 87, 0.5)); }
    50% { filter: drop-shadow(0 8px 20px rgba(245, 200, 87, 0.85)); }
}

/* ================== FORM SPECIFIEKE STIJLEN ================== */
.form-control.bubble-input {
    background: rgba(255,255,255,0.75);
    border: 2px solid #ABE0F0;
    border-radius: 15px;
    padding: 0.75rem 1.2rem;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.form-control.bubble-input:focus {
    border-color: #F5C857;
    box-shadow: 0 0 0 0.25rem rgba(245,200,87,0.25);
    background: white;
}

.btn-send {
    background: #E2852E;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(226,133,46,0.3);
}

.btn-send:hover {
    background: #F5C857;
    color: #2d2d2d;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(245,200,87,0.5);
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 3.2rem; }
    .main-nav ul { flex-direction: column; gap: 1.5rem; }
    .bubble { padding: 2rem 1.8rem; }
}