/* BASIS – hetzelfde 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.55;
    min-height: 100vh;
}

/* Hero ─ unchanged except slightly tighter overlay */
.hero-header {
    height: 50vh;
    min-height: 380px;
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.15)),
                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: 2rem 2.5rem;
    border-radius: 28px;
    backdrop-filter: blur(7px);
    max-width: 90%;
}

h1 {
    font-family: 'Comic Neue', cursive;
    font-size: 4rem;
    margin-bottom: 0.7rem;
    text-shadow: 3px 3px 12px rgba(0,0,0,0.55);
}

.hero-header p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

/* Nav ─ unchanged */
.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: 2.5rem;
    flex-wrap: wrap;
}

.main-nav a {
    color: #E2852E;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    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%;
}

/* Main content */
section {
    padding: 4rem 1rem;
    text-align: center;
}

h2 {
    font-family: 'Comic Neue', cursive;
    font-size: 2.8rem;
    color: #E2852E;
    margin-bottom: 2.2rem;
}

/* ────────────────────────
   New compact bubble system
───────────────────────── */
.bubble {
    background: rgba(255, 238, 145, 0.95);
    border: 2px solid #a8d8e8;
    border-radius: 1.8rem;
    padding: 1.6rem 2rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08),
                inset 0 1px 6px rgba(255,255,255,0.7);
    backdrop-filter: blur(5px);
    position: relative;
}

.big-bubble {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    padding: 2rem 2.6rem;
    font-size: 1.12rem;
    line-height: 1.6;
}

/* Steps grid ─ now forces centered + limited width cards */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 420px)); /* narrower max per card */
    gap: 1.8rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
    justify-content: center;          /* centers the cards nicely */
}

.step-bubble {
    padding: 3.4rem 1.5rem 1.6rem;    /* space only for the number badge */
    max-width: 420px;                 /* hard cap — prevents stretching */
    width: 100%;
    margin: 0 auto;                   /* extra centering safety */
}

.step-number {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background: #F5C857;
    color: #2d2d2d;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 5px 14px rgba(245, 200, 87, 0.45);
    font-size: 1.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.step-bubble h3 {
    color: #E2852E;
    font-size: 1.38rem;
    margin-bottom: 0.9rem;
    line-height: 1.3;
}

.step-bubble p {
    font-size: 1.03rem;               /* smaller → less height & width needed */
    margin: 0.4rem 0;
}

.step-bubble a {
    color: #E2852E;
    font-weight: 600;
    text-decoration: underline;
}

/* Example mail box */
.example-mail {
    background: rgba(255,255,255,0.65);
    border: 1px dashed #a8d8e8;
    border-radius: 14px;
    padding: 1.1rem 1.3rem;
    margin: 1.1rem 0;
    text-align: left;
    font-size: 0.98rem;
    line-height: 1.5;
}

/* Footer ─ unchanged */
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)); }
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 3.2rem; }
    .main-nav ul { gap: 1.6rem; }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }
    .step-bubble {
        max-width: 90%;               /* mobile friendly */
    }
}