:root {
    --lego-red: #E3000B;
    --lego-yellow: #FFD700;
    --lego-blue: #0055BF;
    --lego-green: #10B981;
    --lego-orange: #FF8C00;
    --minecraft-grass: #7CB342;
    --minecraft-sky: #87CEEB;
    --anime-pink: #FF69B4;
    --anime-purple: #9D4EDD;
    --soft-cream: #FFF8E7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--soft-cream);
    overflow-x: hidden;
    font-size: 18px;
    line-height: 1.7;
    color: #1f1f1f;
}

p, li {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #1f1f1f;
    font-weight: 500;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 800;
    letter-spacing: 0.5px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
}

/* LEGO Brick Button Style */
.lego-btn {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.2s;
    box-sizing: border-box;
    
    /* LEGO brick dimensions - responsive */
    min-width: 280px;
    max-width: 95vw;
    height: 70px;
    padding: 0 1.5rem;
    
    /* LEGO brick base - exact same as particles.css */
    background-color: currentColor;
    box-shadow: inset -1px -1px 0 rgba(0,0,0,0.2), 
                inset 1px 1px 0 rgba(255,255,255,0.2);
    filter: drop-shadow(6px 6px 4px rgba(0,0,0,0.6)) drop-shadow(0 0 6px rgba(0,0,0,0.5));
}

/* LEGO brick peg pattern - exact same as particles.css */
.lego-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle, currentColor 7.5px, transparent 8px),
        radial-gradient(circle, rgba(255,255,255,0.6) 7.5px, transparent 8px),
        radial-gradient(circle, rgba(0,0,0,0.2) 7.5px, transparent 9px),
        radial-gradient(circle, rgba(0,0,0,0.2) 7.5px, transparent 9px);
    background-size: 27px 27px;
    background-position: 0px 0px, -0.5px -0.5px, 0px 0px, 3px 3px;
    background-repeat: repeat;
    pointer-events: none;
}

/* Button text needs to be above the pegs */
.lego-btn span {
    position: relative;
    z-index: 1;
}

.lego-btn:hover {
    transform: translateY(-3px);
    filter: drop-shadow(8px 8px 6px rgba(0,0,0,0.7)) drop-shadow(0 0 8px rgba(0,0,0,0.6));
}

.lego-btn:active {
    transform: translateY(2px);
    filter: drop-shadow(3px 3px 2px rgba(0,0,0,0.5)) drop-shadow(0 0 4px rgba(0,0,0,0.4));
}

.lego-btn-primary {
    color: #e53935; /* Same red as .b-red from particles.css */
}

.lego-btn-primary span {
    color: white;
}

.lego-btn-secondary {
    color: #fdd835; /* Same yellow as .b-yellow from particles.css */
}

.lego-btn-secondary span {
    color: #000;
}

/* Hero Section */
/* Hero Section */
.hero-section {
    min-height: 100vh;

    /* Fallback kleur */
    background-color: var(--lego-yellow);

    /* Hero image + overlay */
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url('../img/hero12.png');

    background-size: cover;          /* standaard hero gedrag */
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 4rem 2rem;
}



@media (max-width: 768px) {
    .hero-section {
        /* Terug naar cover, maar met focus op het midden */
        background-size: cover;
        background-position: center center;
        /* Verlaag de hoogte iets zodat de foto minder hoeft in te zoomen */
        min-height: 70vh; 
        padding: 6rem 1.5rem 4rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        /* GEBRUIK GEEN CONTAIN: dit maakt de foto klein */
        background-size: cover; 
        
        /* Focus op het belangrijkste deel van je foto (pas aan naar 'center top' indien nodig) */
        background-position: center center; 
        
        /* Op hele kleine schermen is 100vh vaak te veel 'zoom' voor een liggende foto */
        min-height: 60vh;
        padding: 4rem 1rem;
    }

    /* Optioneel: Als je een specifiek mobiele afbeelding hebt, gebruik deze hieronder */
    /* .hero-section {
        background-image:
            linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
            url('../img/hero12-mobile.png');
    } 
    */
}

/* Logo Container */

.hero-logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
    transition: transform 0.3s;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    animation: fadeInUp 1s ease-out;
    margin-top: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    color: white;
    text-shadow: 
        6px 6px 0 var(--lego-red),
        8px 8px 0 #000;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: white;
    text-shadow: 3px 3px 0 #000;
    margin-bottom: 1rem;
}

.hero-date {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    color: var(--lego-yellow);
    text-shadow: 2px 2px 0 #000;
    margin-bottom: 3rem;
    font-weight: 600;
}

.hero-actions {
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .hero-actions {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .hero-actions .lego-btn {
        width: 100%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styling */
.section {
    padding: 5rem 0;
    position: relative;
}

.info-banner {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--lego-blue);
    text-shadow: 4px 4px 0 var(--lego-yellow), 6px 6px 10px rgba(0,0,0,0.15);
}

@media (max-width: 576px) {
    .hero-logo {
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1.1rem, 4vw, 1.5rem);
    }
    
    .hero-date {
        font-size: clamp(1rem, 3.5vw, 1.3rem);
        margin-bottom: 2rem;
    }

    .hero-actions {
        margin-bottom: 2rem;
    }
    
    .lego-btn {
        min-width: 100%;
        max-width: 100%;
        height: 60px;
        font-size: 1.1rem;
        letter-spacing: 1px;
        padding: 0 1rem;
    }

    .info-banner h2 {
        margin-top: 0 !important;
        margin-bottom: 0.5rem !important;
    }

    .info-banner p {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
}

/* Block Card Style */
.block-card {
    background: white;
    border: 5px solid #000;
    border-radius: 20px;
    padding: 0;
    margin-bottom: 2rem;
    box-shadow: 10px 10px 0 rgba(0,0,0,0.1);
    transition: all 0.3s;
    overflow: hidden;
}

.block-card-red {
    border-color: var(--lego-red);
}

.block-card-blue {
    border-color: var(--lego-blue);
}

.block-card > *:not(.block-card-header-full) {
    padding-left: 1rem;
    padding-right: 1rem;
}

.block-card > p:first-of-type,
.block-card > ul:first-of-type {
    padding-top: 1rem;
}

.block-card > *:last-child:not(img) {
    padding-bottom: 1rem;
}

.block-card p,
.block-card li {
    font-weight: 650;
}

.block-card:hover {
    transform: translateY(-10px);
    box-shadow: 10px 20px 0 rgba(0,0,0,0.2);
}

.block-card-header {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    box-sizing: border-box;
    
    /* LEGO brick dimensions - 6x2 or larger */
    min-width: 216px;
    height: 54px;
    padding: 0 1.5rem;
    
    /* LEGO brick base - same as particles.css */
    background-color: currentColor;
    box-shadow: inset -1px -1px 0 rgba(0,0,0,0.2), 
                inset 1px 1px 0 rgba(255,255,255,0.2);
    filter: drop-shadow(6px 6px 4px rgba(0,0,0,0.6)) drop-shadow(0 0 6px rgba(0,0,0,0.5));
}

.block-card-header-full {
    width: 100%;
    min-width: 100%;
    height: 65px;
    font-size: 1.8rem;
    margin-bottom: 0;
    border-radius: 15px 15px 0 0;
    gap: 0.8rem;
}

.block-card-header-full .block-icon {
    font-size: 2.5rem;
}

/* LEGO brick peg pattern for card headers */
.block-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle, currentColor 7.5px, transparent 8px),
        radial-gradient(circle, rgba(255,255,255,0.6) 7.5px, transparent 8px),
        radial-gradient(circle, rgba(0,0,0,0.2) 7.5px, transparent 9px),
        radial-gradient(circle, rgba(0,0,0,0.2) 7.5px, transparent 9px);
    background-size: 27px 27px;
    background-position: 0px 0px, -0.5px -0.5px, 0px 0px, 3px 3px;
    background-repeat: repeat;
    pointer-events: none;
}

.block-card-header span {
    position: relative;
    z-index: 1;
    color: white;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}

.block-icon {
    position: relative;
    z-index: 1;
    font-size: 1.8rem;
    margin-right: 0.5rem;
}

/* Activities Section */
.activities-section {
    background: linear-gradient(to bottom, var(--soft-cream), #FFF);
}

/* Tickets Section */
.tickets-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/schouwburglego.jpg') center/cover no-repeat;
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
}

.tickets-section .container {
    position: relative;
    z-index: 10;
    padding-top: 8rem;
}

#tickets-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.tickets-section .container {
    position: relative;
    z-index: 1;
}

.tickets-section .section-title {
    color: #000;
    text-shadow: 4px 4px 0 white;
}

/* Good Cause Section */
.good-cause-section {
    background: linear-gradient(135deg, var(--anime-purple) 0%, var(--anime-pink) 100%);
    color: white;
}

.good-cause-section .section-title {
    color: white;
    text-shadow: 4px 4px 0 var(--lego-blue);
}

.good-cause-card {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    border: 5px solid white;
    padding: 2.5rem;
    margin: 2rem auto;
    max-width: 900px;
    box-shadow: 12px 12px 0 rgba(0,0,0,0.3);
}

.good-cause-logo {
    max-width: 150px;
    margin: 1rem auto;
    display: block;
}

/* Sponsors Section */
.sponsors-section {
    background: var(--minecraft-grass);
    text-align: center;
}

.sponsors-section .section-title {
    color: white;
    text-shadow: 4px 4px 0 #000;
}

.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sponsor-box {
    background: white;
    border: 5px solid #000;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    box-shadow: 8px 8px 0 rgba(0,0,0,0.2);
}

.sponsor-box a {
    display: block;
    width: 100%;
    height: 100%;
}

.sponsor-box img {
    max-width: 100%;
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: #222;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 1.5rem;
}

.footer a {
    color: var(--lego-yellow);
    text-decoration: none;
    font-weight: 600;
}

.footer a:hover {
    text-decoration: underline;
}

/* Gallery Images */
.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 5px solid #000;
    box-shadow: 8px 8px 0 rgba(0,0,0,0.2);
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        margin-top: 60px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .lego-btn {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
}
