:root {
    --green: #2d7a3a;
    --lime: #a8e63d;
    --yellow: #ffe54c;
    --orange: #ff7b2f;
    --brown: #7a3e1a;
    --cream: #fdf6e3;
    --dark: #1a2e0f;
    --red: #e63946;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

.bannermobile {
    display: none !important;
}

/* Fix the images so they don't have gaps */
.banner img {
    display: block;
    width: 100%;
    height: auto;
}

/* ---- HERO ---- */
.hero {
    background: var(--green);
    position: relative;
    overflow: hidden;
    padding: 60px 40px 80px;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 90%, var(--lime) 0%, transparent 30%),
        radial-gradient(circle at 90% 10%, var(--yellow) 0%, transparent 25%),
        radial-gradient(
            circle at 50% 50%,
            rgba(255, 255, 255, 0.03) 0%,
            transparent 70%
        );
}

/* floating emojis background */
.hero-bg-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-bg-icons span {
    position: absolute;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    opacity: 0.18;
    animation: floatUp 12s linear infinite;
}
.hero-bg-icons span:nth-child(1) {
    left: 5%;
    animation-delay: 0s;
    animation-duration: 10s;
}
.hero-bg-icons span:nth-child(2) {
    left: 15%;
    animation-delay: 1.5s;
    animation-duration: 14s;
}
.hero-bg-icons span:nth-child(3) {
    left: 28%;
    animation-delay: 3s;
    animation-duration: 11s;
}
.hero-bg-icons span:nth-child(4) {
    left: 42%;
    animation-delay: 5s;
    animation-duration: 13s;
}
.hero-bg-icons span:nth-child(5) {
    left: 57%;
    animation-delay: 2s;
    animation-duration: 9s;
}
.hero-bg-icons span:nth-child(6) {
    left: 70%;
    animation-delay: 4s;
    animation-duration: 15s;
}
.hero-bg-icons span:nth-child(7) {
    left: 82%;
    animation-delay: 0.5s;
    animation-duration: 12s;
}
.hero-bg-icons span:nth-child(8) {
    left: 93%;
    animation-delay: 6s;
    animation-duration: 10s;
}
.hero-bg-icons span:nth-child(9) {
    left: 36%;
    animation-delay: 7s;
    animation-duration: 16s;
}
.hero-bg-icons span:nth-child(10) {
    left: 62%;
    animation-delay: 8s;
    animation-duration: 11s;
}

@keyframes floatUp {
    0% {
        transform: translateY(110vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.18;
    }
    90% {
        opacity: 0.18;
    }
    100% {
        transform: translateY(-20vh) rotate(360deg);
        opacity: 0;
    }
}

.badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--brown);
    font-family: "Fredoka One", sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 999px;
    border: 3px solid var(--brown);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    box-shadow: 3px 3px 0 var(--brown);
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.hero h1 {
    font-family: "Boogaloo", cursive;
    font-size: clamp(2.8rem, 8vw, 6.5rem);
    color: #fff;
    line-height: 1;
    position: relative;
    z-index: 1;
    text-shadow:
        4px 4px 0 var(--dark),
        6px 6px 0 var(--lime);
    animation: popIn 0.7s 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.hero h1 .accent {
    color: var(--yellow);
}

.hero .year-tag {
    display: inline-block;
    font-family: "Fredoka One", sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--lime);
    position: relative;
    z-index: 1;
    text-shadow: 3px 3px 0 var(--dark);
    animation: popIn 0.7s 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.hero-sub {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    max-width: 680px;
    margin: 18px auto 30px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    animation: slideUp 0.7s 0.4s both;
}

.hero-dates {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    animation: slideUp 0.7s 0.55s both;
}

.date-pill {
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    padding: 8px 20px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 6px;
}

.date-pill.hot {
    background: var(--red);
    border-color: var(--red);
}

/* wavy divider */
.wave-divider {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.wave-divider svg {
    display: block;
}

/* ---- MAIN CONTENT ---- */
.containerjb {
    max-width: 90%;
    margin: 0 auto;
}

/* ---- INTRO SECTION ---- */
.intro-section {
    background: #fff;
    padding: 60px 0;
    width: 60%;
    margin: 0 auto;
}

.section-label {
    font-family: "Fredoka One", sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.section-label::before {
    content: "";
    display: block;
    width: 28px;
    height: 3px;
    background: var(--lime);
    border-radius: 2px;
}

.intro-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #3a3a3a;
    max-width: 720px;
}

/* ---- WHAT IS A JEUGBOER ---- */
.jeugboer-section {
    background: var(--dark);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.jeugboer-section::before {
    content: "🌱";
    position: absolute;
    right: -20px;
    top: 20px;
    font-size: 12rem;
    opacity: 0.06;
    transform: rotate(-15deg);
}

.jeugboer-section h2 {
    font-family: "Boogaloo", cursive;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--lime);
    margin-bottom: 8px;
}

.jeugboer-section .sub {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 36px;
    font-size: 1rem;
}

.cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.card {
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px 22px;
    position: relative;
    transition:
        transform 0.25s,
        border-color 0.25s;
}
.card:hover {
    transform: translateY(-6px);
    border-color: var(--lime);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 14px;
    display: block;
}
.card h3 {
    font-family: "Fredoka One", sans-serif;
    font-size: 1.15rem;
    color: var(--yellow);
    margin-bottom: 8px;
}
.card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ---- PROJECTS ---- */
.projects-section {
    background: var(--lime);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.projects-section::after {
    content: "";
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: var(--yellow);
    opacity: 0.35;
}

.projects-section h2 {
    font-family: "Boogaloo", cursive;
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    color: var(--dark);
    margin-bottom: 28px;
}

.project-bubbles {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.bubble {
    background: #fff;
    border: 3px solid var(--dark);
    border-radius: 999px;
    padding: 10px 22px;
    font-family: "Fredoka One", sans-serif;
    font-size: 1rem;
    color: var(--dark);
    box-shadow: 4px 4px 0 var(--dark);
    transition:
        transform 0.18s,
        box-shadow 0.18s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.bubble:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--dark);
    background: var(--yellow);
}

/* ---- HOW TO PARTICIPATE ---- */
.how-section {
    background: #fff;
    padding: 60px 0;
    width: 50%;
    margin: 0 auto;
}

.how-section h2 {
    font-family: "Boogaloo", cursive;
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    color: var(--green);
    margin-bottom: 36px;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
.steps::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: repeating-linear-gradient(
        to bottom,
        var(--lime) 0,
        var(--lime) 8px,
        transparent 8px,
        transparent 14px
    );
}

.step {
    display: flex;
    gap: 24px;
    padding: 22px 0 22px 0;
    position: relative;
}

.step-num {
    width: 62px;
    height: 62px;
    min-width: 62px;
    background: var(--orange);
    border: 3px solid var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Boogaloo", cursive;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 3px 3px 0 var(--dark);
    position: relative;
    z-index: 1;
}

.step-body h3 {
    font-family: "Fredoka One", sans-serif;
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 6px;
    margin-top: 10px;
}
.step-body p,
.step-body ul {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
}
.step-body ul {
    padding-left: 20px;
    margin-top: 6px;
}
.step-body ul li {
    margin-bottom: 4px;
}

/* ---- CRITERIA ---- */
.criteria-section {
    background: var(--yellow);
    padding: 60px 0;
}
.criteria-section h2 {
    font-family: "Boogaloo", cursive;
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    color: var(--dark);
    margin-bottom: 32px;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
}

.crit-card {
    background: #fff;
    border: 3px solid var(--dark);
    border-radius: 18px;
    padding: 24px 18px;
    box-shadow: 5px 5px 0 var(--dark);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.crit-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 var(--dark);
}
.crit-card .crit-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
    display: block;
}
.crit-card h4 {
    font-family: "Fredoka One", sans-serif;
    font-size: 1.05rem;
    color: var(--green);
    margin-bottom: 4px;
}
.crit-card p {
    font-size: 0.86rem;
    color: #666;
    line-height: 1.5;
}

/* ---- CTA / REGISTER ---- */
.cta-section {
    background: var(--orange);
    padding: 70px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: "🏆";
    position: absolute;
    left: -30px;
    top: -30px;
    font-size: 10rem;
    opacity: 0.1;
    transform: rotate(-20deg);
}
.cta-section::after {
    content: "🌾";
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 9rem;
    opacity: 0.1;
    transform: rotate(15deg);
}

.cta-section h2 {
    font-family: "Boogaloo", cursive;
    font-size: clamp(2rem, 5vw, 4rem);
    color: #fff;
    text-shadow: 3px 3px 0 var(--brown);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.cta-section p,
.cta-section ul,
#frm_field_863_container {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.frm_style_formidable-style.with_frm_style
    .frm-show-form
    .frm_section_heading
    h3[class*="frm_pos_"] {
    border-top: none;
}

.cta-section ul {
    margin-left: 40px;
}

#frm_form_96_container h3,
#frm_form_98_container h3 {
    font-family: "Boogaloo", cursive;
    font-size: clamp(2rem, 5vw, 2rem);
    color: #fff;
    text-shadow: 3px 3px 0 var(--brown);
    font-weight: 500;
    letter-spacing: 3px;
}

.btn-register,
#form_jeugboer-2026 .frm_button_submit {
    display: inline-block;
    background: var(--dark);
    color: var(--lime);
    font-family: "Boogaloo", cursive;
    font-size: 1.5rem;
    padding: 16px 44px;
    border-radius: 999px;
    border: 3px solid var(--dark);
    box-shadow: 5px 5px 0 var(--brown);
    text-decoration: none;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    position: relative;
    z-index: 1;
    cursor: pointer;
    letter-spacing: 0.04em;
}
.btn-register:hover,
#form_jeugboer-2026 .frm_button_submit:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 var(--brown);
    background: var(--lime);
    color: var(--dark);
}

/* ---- CONSENT ---- */

.jbform {
    width: 70%;
    margin: 28px auto;
}

#file867_dropzone p,
#file868_dropzone p {
    color: #000;
}

.frm_form_field:not(.frm_compact) .frm_dropzone {
    max-width: 100% !important;
}

.consent-box {
    background: rgba(255, 255, 255, 0.2);
    border: 2px dashed rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 20px 24px;
    width: 100%;
    margin: 28px auto 0;
    text-align: left;
    position: relative;
    z-index: 1;
}
.consent-box label,
#frm_field_867_container label,
#frm_field_868_container label,
#frm_desc_field_f0jbh {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: #fff;
    font-size: 0.92rem;
    line-height: 1.6;
    font-weight: 600;
}
.consent-box input[type="checkbox"] {
    width: 22px;
    height: 22px;
    min-width: 22px;
    margin-top: 2px;
    accent-color: var(--lime);
    cursor: pointer;
}

/* ---- FOOTER ---- */
/*footer {
    background: var(--dark);
    padding: 30px 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
}
footer .footer-logo {
    font-family: "Boogaloo", cursive;
    font-size: 1.4rem;
    color: var(--lime);
    margin-bottom: 6px;
}
*/
/* ---- PANEL PLACEHOLDER ---- */
.panel-section {
    background: #f4f0e8;
    padding: 50px 0;
    border-top: 3px dashed #ccc;
}
.panel-section h2 {
    font-family: "Boogaloo", cursive;
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    color: var(--brown);
    margin-bottom: 10px;
}
.panel-placeholder {
    background: #fff;
    border: 3px dashed #ccc;
    border-radius: 18px;
    padding: 40px;
    text-align: center;
    color: #aaa;
    font-size: 1rem;
    margin-top: 24px;
    font-style: italic;
}
.panel-placeholder span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

/* ---- ANIMATIONS ---- */
@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.7) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* scroll reveal utility */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 600px) {
    .steps::before {
        left: 24px;
    }
    .step-num {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.5rem;
    }

    .bannerweb {
        display: none !important;
    }

    .bannermobile {
        display: block !important;
    }

    .intro-section,
    .how-section {
        width: 90% !important;
    }

    .intro-section {
        padding: 0px 0 40px;
    }
    .bubble {
        width: 100%;
    }
    .jbform {
        width: 100%;
    }

    #frm_form_96_container h3,
    #frm_form_98_container h3 {
        font-size: 1.5rem;
    }
}

#judges {
    width: 90%;
    margin: 0 auto;
    background-color: transparent;
}

.judges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 22px;
    margin-top: 30px;
}
.judge-card {
    background: #fff;
    border: 3px solid var(--dark);
    border-radius: 20px;
    padding: 24px 16px 20px;
    text-align: center;
    box-shadow: 5px 5px 0 var(--brown);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    position: relative;
}
.judge-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 var(--brown);
}
.judge-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid var(--dark);
    background: linear-gradient(135deg, #d4e8c2, #a8c48a);
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    overflow: hidden;
}
.judge-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.judge-role {
    display: inline-block;
    background: var(--lime);
    color: var(--dark);
    font-family: "Fredoka One", sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 999px;
    border: 2px solid var(--dark);
    margin-bottom: 8px;
}
.judge-card h4 {
    font-family: "Fredoka One", sans-serif;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 4px;
    line-height: 1.3;
}
.judge-age {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 6px;
}
.judge-badge {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    border: 2px solid var(--dark);
    margin-top: 6px;
    line-height: 1.4;
}
.judge-card.voorsitter .judge-photo {
    background: linear-gradient(135deg, #2d7a3a, #a8e63d);
}
.judge-card.ondervoorsitter .judge-photo {
    background: linear-gradient(135deg, #ff7b2f, #ffe54c);
}
.judge-card.sekretaresse .judge-photo {
    background: linear-gradient(135deg, #7a3e1a, #e6b87a);
}
.judge-card.komiteelid .judge-photo {
    background: linear-gradient(135deg, #3a7aaa, #a8d4e6);
}
.judge-card.addisioneel .judge-photo {
    background: linear-gradient(135deg, #aa3a7a, #e6a8d4);
}
