* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ABE0F0; /* licht turquoise/blauw – perfect strandgevoel */
    color: #2d2d2d;
    line-height: 1.6;
    min-height: 100vh;
}

.hero-header {
    height: 60vh;
    min-height: 450px;
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.15)),
                 url('../image0011041.jpg')
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.header-overlay {
    background: rgba(171, 224, 240, 0.5); /* semi-transparant #ABE0F0 */
    padding: 2.5rem 3rem;
    border-radius: 30px;
    backdrop-filter: blur(6px);
    max-width: 90%;
}

h1 {
    font-family: 'Comic Neue', cursive;
    font-size: 4.5rem;
    margin-bottom: 0.8rem;
    text-shadow: 3px 3px 12px rgba(0,0,0,0.6);
    letter-spacing: 2px;
}

.hero-header p {
    font-size: 1.6rem;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
}

.main-nav {
    background: rgba(255, 238, 145, 0.92); /* zacht geel/crème */
    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: 3rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: #E2852E; /* koraal */
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: #F5C857; /* fel geel */
}

.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: 3.2rem;
    color: #E2852E;
    margin-bottom: 2.5rem;
}

/* Bubble stijl – ook voor vacature cards */
.bubble,
.job-bubble {
    background: rgba(255, 238, 145, 0.94);
    border-radius: 999px; /* of 2.5rem voor minder extreem rond */
    padding: 2.2rem 2.8rem;
    margin: 2rem auto;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1),
                inset 0 0 15px rgba(255,255,255,0.7);
    backdrop-filter: blur(4px);
    border: 2px solid #ABE0F0;
    position: relative;
    transition: all 0.3s ease;
}

.bubble::before,
.bubble::after,
.job-bubble::before,
.job-bubble::after {
    content: '';
    position: absolute;
    background: white;
    border-radius: 50%;
}

.bubble::before, .job-bubble::before { width: 28px; height: 28px; bottom: -12px; left: 18%; opacity: 0.7; }
.bubble::after, .job-bubble::after  { width: 18px; height: 18px; bottom: -8px; left: 14%; opacity: 0.5; }

.big-bubble {
    max-width: 780px;
    padding: 3rem 3.5rem;
    font-size: 1.3rem;
}

/* Vacature grid – hier komen de job-bubbles in */
.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.job-bubble {
    max-width: none;
    height: 100%;
    cursor: pointer;
}

.job-bubble:hover {
    transform: translateY(-12px) scale(1.04);
    box-shadow: 0 20px 40px rgba(245,200,87,0.25);
}

.job-bubble h3 {
    color: #E2852E;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

/* Footer */
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 ease;
}

.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;
}

/* Animaties */
@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)); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 3.5rem; }
    .header-overlay { padding: 2rem; }
    .main-nav ul { 
        flex-direction: column; 
        gap: 1.2rem; 
    }
    .job-grid {
        grid-template-columns: 1fr;
    }
}