/* ==========================================================================
   1. Basis & Reset Stijlen
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: #0B0F19;
    color: #E5E7EB;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}
/* ==========================================================================
   2. Algemene Typografie & Links
   ========================================================================== */
h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #ecd36f;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #1F2937;
}
h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #ece1b3;
}
p,
li {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}
a {
    color: #3B82F6;
    text-decoration: none;
    transition: color 0.3s;
}
a:hover {
    color: #FACC15;
}
ul,
ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}
.lead {
    font-size: 1.1rem;
    color: #a89f7a;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
/* ==========================================================================
   3. Layout Componenten (Header, Main, Footer)
   ========================================================================== */
header {
    background-color: #0B0F19;
    color: #E5E7EB;
    padding: 12px 15px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #1F2937;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-link {
    color: inherit;
    text-decoration: none;
    display: inline-block;
}
.header-link:visited,
.header-link:hover,
.header-link:active {
    color: #FACC15;
    text-decoration: none;
}
header h1 {
    font-size: 1.4rem;
    /* Mobiele start */
    color: #FACC15;
    text-align: left;
    animation: esportsGlow 4s infinite ease-in-out;
}
@keyframes esportsGlow {

    0%,
    100% {
        text-shadow: 0 0 4px rgba(250, 204, 21, 0.2), 0 0 10px rgba(250, 204, 21, 0.2);
        transform: scale(1);
    }

    50% {
        text-shadow: 0 0 15px rgba(250, 204, 21, 0.8), 0 0 30px rgba(234, 179, 8, 0.6);
        transform: scale(1);
    }
}
main {
    flex: 1;
    width: 100%;
    margin: 0 auto;
    padding: 1.5rem 1rem 3rem 1rem;
}
footer {
    background-color: #111827;
    color: #9CA3AF;
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
    border-top: 2px solid #1F2937;
    font-size: 0.9rem;
}
footer .disclaimer {
    font-size: 0.75rem;
    color: #6B7280;
    margin-top: 0.5rem;
    line-height: 1.3;
}
/* ==========================================================================
   4. Navigatiemenu
   ========================================================================== */
nav {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    padding: 0;
}
#menu-toggle {
    display: block;
    background: none;
    border: 1px solid #E5E7EB;
    color: #E5E7EB;
    padding: 0.25rem 0.5rem;
    font-size: 1.2rem;
    cursor: pointer;
}
nav ul {
    list-style: none;
    display: none;
    flex-direction: column;
    width: 100vw;
    text-align: center;
    position: absolute;
    top: 100%;
    right: -15px;
    background-color: #111827;
    padding: 1rem 0;
    border-bottom: 2px solid #1F2937;
    gap: 0.5rem;
}
nav ul.open {
    display: flex;
}
nav ul li a {
    color: #E5E7EB;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: block;
    transition: background 0.3s, color 0.3s;
}
nav ul li a:hover {
    background-color: #1F2937;
    color: #FACC15;
}
nav ul li a.active {
    color: #ededf1;
    background-color: #4B5563;
    font-weight: 600;
}
/* ==========================================================================
   5. Algemene Content Componenten & Media
   ========================================================================== */
img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
}
.hero {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.hero img {
    width: 100vw;
    height: auto;
    min-height: 250px;
    max-height: 400px;
    object-fit: cover;
    border-radius: 0;
}
.hero .fotobron {
    display: block;
    text-align: center;
    padding: 10px 15px;
    margin: 0 auto;
    font-size: 0.75rem;
}
aside {
    background-color: #1F2937;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #484ac4;
    margin: 1.5rem 0;
}
aside p {
    font-size: 1.1rem;
    color: #484ac4;
    line-height: 1.4;
    font-style: italic;
}
aside small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #9CA3AF;
    font-style: italic;
}
.fotobron {
    display: block;
    margin: 8px 10px;
    font-size: 0.65rem;
    color: #bd8816;
    text-align: center;
    white-space: normal;
    word-break: break-word;
}
.fotobron a {
    color: #bd8816;
    text-decoration: underline;
    display: inline;
}
/* ==========================================================================
   6. Regio's Grid
   ========================================================================== */
.global-hub-section {
    margin: 2rem 0;
}
.regions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
article.region-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #111827;
    border: 1px solid #1F2937;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}
p.region-tag {
    display: inline-block;
    width: max-content;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    background-color: #1F2937;
    color: #9CA3AF;
}
article.region-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #E5E7EB;
    border-bottom: none;
    padding-bottom: 0;
}
article.region-card p {
    font-size: 0.95rem;
    color: #9CA3AF;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.lec-card {
    border-color: #00ffaa;
    box-shadow: 0 4px 12px rgba(0, 255, 170, 0.15);
}
.lec-card h3 {
    color: #00ffaa;
}
.lck-card {
    border-color: #00bfff;
    box-shadow: 0 4px 12px rgba(0, 191, 255, 0.15);
}
.lck-card h3 {
    color: #00bfff;
}
.lcs-card {
    border-color: #facc15;
    box-shadow: 0 4px 12px rgba(250, 204, 21, 0.15);
}
.lcs-card h3 {
    color: #facc15;
}
.lpl-card {
    border-color: #ff4655;
    box-shadow: 0 4px 12px rgba(255, 70, 85, 0.15);
}
.lpl-card h3 {
    color: #ff4655;
}
.card-logo-link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    width: 100%;
    margin-top: auto;
}
.card-logo-link img {
    max-width: 200px;
    max-height: 100%;
    object-fit: contain;
}
/* ==========================================================================
   7. Officiële Platformen
   ========================================================================== */
.platform-logos-section {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #1F2937;
    text-align: center;
}
.platform-logos-section h4 {
    font-size: 1rem;
    color: #9CA3AF;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.platform-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}
.platform-grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}
.platform-grid img {
    max-width: 120px;
    height: 100%;
    object-fit: contain;
}
/* ==========================================================================
   8. Video
   ========================================================================== */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    margin: 1.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #1F2937;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video-fallback {
    font-size: 0.85rem;
    color: #a0a0a0;
    text-align: center;
    margin-top: 10px;
}
.video-fallback a {
    color: #c19c53;
    font-weight: 600;
}
/* ==========================================================================
   9. Formulier Styling
   ========================================================================== */
form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
fieldset {
    border: 1px solid #374151;
    border-radius: 6px;
    padding: 1.25rem;
}
legend {
    padding: 0 0.5rem;
    font-weight: 600;
    color: #FACC15;
}
label {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.35rem;
    border-radius: 4px;
    border: 1px solid #4B5563;
    background-color: #111827;
    color: #E5E7EB;
}
textarea {
    min-height: 100px;
    resize: vertical;
}
input[type="range"] {
    width: 100%;
    margin-top: 0.5rem;
}
.radio-group,
.checkbox-group {
    margin-top: 0.5rem;
}
.radio-group label,
.checkbox-group label {
    display: inline-block;
    margin-right: 1rem;
    cursor: pointer;
}
.verzenden-knop {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    color: #0A0A0F;
    background-color: #3B82F6;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 33.33%;
    display: block;
    margin: 20px auto;
}
input:user-invalid,
textarea:invalid {
    border: 2px solid #EF4444;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
input:user-valid,
textarea:user-valid {
    border: 2px solid #10B981;
}

/* ==========================================================================
   10. Fotogalerij Magazine Layouts
   ========================================================================== */
.magazine-gallery {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}
.magazine-gallery figure {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    border: 1px solid #E5E7EB;
    margin-bottom: 20px;
    border-radius: 0;
    overflow: visible;
}
.magazine-gallery figure a {
    display: block;
    width: 100%;
    border-radius: 0;
}
.magazine-gallery figure picture,
.magazine-gallery figure img {
    width: 100%;
    height: auto;
    object-fit: normal;
    display: block;
    border-radius: 0;
}
.magazine-gallery figcaption {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
}
.magazine-gallery figcaption h3 {
    font-weight: 600;
    font-size: 1.3rem;
    color: #111827;
    margin-bottom: 8px;
}
.magazine-gallery figcaption p {
    color: #4B5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   11. Carrousel Component
   ========================================================================== */
.carousel-container {
    position: relative;
    max-width: 95%;
    /* Vult mooi het scherm op mobiel */
    margin: 20px auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    background-color: #111827;
    display: flex;
    flex-direction: column;
}
.carousel-container h2 {
    text-align: center;
    padding-top: 15px;
    margin: 0;
    color: #fafbfc;
}
.carousel-container input[type="radio"] {
    display: none;
}
.carousel-controls {
    position: absolute;
    top: 25%;
    /* Perfect over de kortere mobiele foto's */
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 5px;
    box-sizing: border-box;
    pointer-events: none;
    z-index: 10;
    height: 0;
}
.carousel-controls label {
    background-color: rgba(11, 15, 25, 0.7);
    color: #E5E7EB;
    font-size: 1.1rem;
    padding: 5px 10px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    user-select: none;
    border: 1px solid #1F2937;
}
.slides-wrapper {
    display: flex;
    flex-direction: row;
    width: 500%;
    transition: transform 0.5s ease-in-out;
    flex-shrink: 0;
}
.slide-item {
    width: 20%;
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.slide-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background-color: transparent;
    border-radius: 0;
}
.slide-item figcaption {
    width: 100%;
    padding: 15px 15px 25px 15px;
    background-color: #111827;
    text-align: center;
    box-sizing: border-box;
}
.slide-item figcaption h3 {
    color: #c19c53;
    font-size: 1.2rem;
}
.slide-item figcaption p {
    margin: 0;
    color: #a0a0a0;
    font-size: 0.9rem;
}
.carousel-dots {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    background-color: #111827;
    padding: 15px 0;
    border-top: 1px solid #1F2937;
    box-sizing: border-box;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}
#slide1:checked~.slides-wrapper {
    transform: translateX(0%);
}
#slide2:checked~.slides-wrapper {
    transform: translateX(-20%);
}
#slide3:checked~.slides-wrapper {
    transform: translateX(-40%);
}
#slide4:checked~.slides-wrapper {
    transform: translateX(-60%);
}
#slide5:checked~.slides-wrapper {
    transform: translateX(-80%);
}
#slide1:checked~.carousel-dots .dot:nth-child(1),
#slide2:checked~.carousel-dots .dot:nth-child(2),
#slide3:checked~.carousel-dots .dot:nth-child(3),
#slide4:checked~.carousel-dots .dot:nth-child(4),
#slide5:checked~.carousel-dots .dot:nth-child(5) {
    background-color: #c19c53;
    width: 20px;
    border-radius: 6px;
}

/* ==========================================================================
   12. Galerij -> Lightbox (openklikken foto)
   ========================================================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 10, 15, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.lightbox:target {
    display: flex;
}
.lightbox-sluit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.lightbox-content {
    position: relative;
    width: 100%;
    background-color: #111827;
    padding: 1rem;
    border-radius: 12px;
    border: 2px solid #1F2937;
}
.lightbox-content img {
    max-height: 60vh;
    width: 100%;
    object-fit: contain;
}
.lightbox-content figcaption {
    margin-top: 1rem;
    color: #E5E7EB;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}
.sluit-knop {
    background-color: #3B82F6;
    color: #0A0A0F;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-weight: 600;
}

/* ==========================================================================
   13. Countdown Timers
   ========================================================================== */
.timers-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1.5rem 0;
}
.timer-kaart {
    background-color: #111827;
    border: 1px solid #1F2937;
    padding: 1.5rem;
    text-align: center;
}
.timer-kaart h3 {
    color: #FACC15;
    margin-bottom: 1rem;
}
time.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
data.tijd-blok {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}
.tijd-blok span {
    font-size: 2rem;
    font-weight: 600;
}
.tijd-blok small {
    color: #9CA3AF;
    font-size: 0.75rem;
}

/* ==========================================================================
   14. Responsiveness mobile --> desktop, tablet, etc (min-width: 641px)
   ========================================================================== */
@media (min-width: 641px) {
    h3 {
        font-size: 1.3rem;
    }
    .lead {
        font-size: 1.2rem;
    }
    header {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-top: 5px;
        padding-bottom: 0px;
    }
    header h1 {
        font-size: 3rem;
        text-align: center;
        margin: 0;
    }
    header nav ul {
        margin: 0;
        padding: 0;
    }
    main {
        max-width: 1000px;
        padding: 2rem 1.5rem 4rem 1.5rem;
    }
    footer {
        margin-top: 4rem;
    }
    /* Hoofdmenu --> horizontale balk */
    #menu-toggle {
        display: none;
    }
    nav {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 0;
    }
    nav ul {
        display: flex;
        flex-direction: row;
        position: static;
        background: none;
        border: none;
        padding: 0;
        width: auto;
        gap: 1rem;
    }
    nav ul li a {
        padding: 0.4rem 0.75rem;
    }
    /* Img Hover effecten */
    img {
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    img:hover {
        transform: scale(1.03);
        box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
    }
    /* Hero */
    .hero img {
        min-height: 400px;
        max-height: 600px;
    }
    .hero img:hover {
        transform: none;
        box-shadow: none;
    }
    .hero .fotobron {
        font-size: 0.85rem;
        padding: 15px 20px;
    }
    /* Fotobron */
    .fotobron {
        font-size: 0.75rem;
        margin: 12px 0;
        text-align: left;
    }
    /* Asides quotes */
    aside {
        padding: 1.25rem;
        margin: 2rem 0;
    }
    aside p {
        font-size: 1.25rem;
    }
    /* Regions Grid */
    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    article.region-card {
        border-color: #1F2937;
        box-shadow: none;
    }
    article.region-card h3 {
        color: #E5E7EB;
    }
    article.region-card:hover {
        transform: translateY(-5px);
    }
    .card-logo-link {
        height: 150px;
        transition: transform 0.2s ease;
    }
    .card-logo-link img {
        max-width: 250px;
    }
    .card-logo-link:hover {
        transform: scale(1.05);
    }

    /* Card Glows hover */
    .lec-card:hover {
        border-color: #00ffaa;
        box-shadow: 0 10px 20px rgba(0, 255, 170, 0.15);
    }
    .lec-card:hover h3 {
        color: #00ffaa;
    }
    .lck-card:hover {
        border-color: #00bfff;
        box-shadow: 0 10px 20px rgba(0, 191, 255, 0.15);
    }
    .lck-card:hover h3 {
        color: #00bfff;
    }
    .lcs-card:hover {
        border-color: #facc15;
        box-shadow: 0 10px 20px rgba(250, 204, 21, 0.15);
    }
    .lcs-card:hover h3 {
        color: #facc15;
    }
    .lpl-card:hover {
        border-color: #ff4655;
        box-shadow: 0 10px 20px rgba(255, 70, 85, 0.15);
    }
    .lpl-card:hover h3 {
        color: #ff4655;
    }
    /* Platform */
    .platform-grid {
        flex-direction: row;
        gap: 40px;
    }
    .platform-grid a {
        height: 120px;
        transition: transform 0.3s ease;
    }
    .platform-grid a:hover {
        transform: scale(1.08);
    }
    .platform-grid img {
        max-width: 140px;
    }
    /* Video */
    .video-container {
        margin: 2rem 0;
    }
    /* Formulier knop styling */
    .verzenden-knop:hover {
    color: #3B82F6;
    background-color: #FACC15;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(250, 204, 21, 0.4);
    transform: translateY(-2px);
    }
    /* Fotogalerij */
    .magazine-gallery {
        max-width: 1200px;
        margin: 0 auto;
    }
    .magazine-gallery figure {
        display: flex;
        flex-direction: row;
        gap: 0;
        margin-bottom: 40px;
        background-color: #ffffff;
        height: auto;
    }
    .magazine-gallery figure:nth-child(even) {
        flex-direction: row-reverse;
    }
    .magazine-gallery figure a:first-of-type,
    .magazine-gallery figure picture {
        display: block;
        width: 100%;
        max-width: 500px;
        height: auto;
    }
    .magazine-gallery figure img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: normal;
    }
    .magazine-gallery figcaption {
        flex: 1;
        padding: clamp(20px, 3vw, 40px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        box-sizing: border-box;
    }
    .magazine-gallery figcaption h3 {
        font-size: 1.5rem;
        margin-top: 0;
        margin-bottom: 8px;
        color: #111827;
        line-clamp: 1;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .magazine-gallery figcaption p {
        color: #4B5563;
        line-height: 1.5;
        margin-bottom: 0;
        font-size: 0.95rem;
        line-clamp: 5;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    /* Carrousel */
    .carousel-container {
        max-width: 800px;
        margin: 40px auto;
        height: auto;
    }
    .slide-item {
        height: auto;
        display: flex;
        flex-direction: column;
    }
    .carousel-controls {
        top: 35%;
        padding: 0 15px;
        flex-direction: row;
    }
    .carousel-controls label {
        font-size: 1.5rem;
        padding: 8px 14px;
        transition: background-color 0.2s ease, transform 0.2s ease;
    }
    .carousel-controls label:hover {
        background-color: #c19c53;
        color: #0B0F19;
        transform: scale(1.1);
    }
    .carousel-dots {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
        width: 100%;
        background-color: #111827;
        padding: 25px 0;
        border-top: 1px solid #1F2937;
        box-sizing: border-box;
    }
    .slide-item img {
        height: 500px;
    }
    .slide-item img:hover {
        transform: none;
        box-shadow: none;
    }
    .slide-item figcaption {
        padding: 25px;
        height: auto;
    }
    .slide-item figcaption h3 {
        font-size: 1.5rem;
    }
    .dot:hover {
        background-color: rgba(255, 255, 255, 0.8);
    }
    /* Lightbox */
    .lightbox {
        padding: 2rem;
    }
    .lightbox-content {
        max-width: 800px;
    }
    .lightbox-content img {
        max-height: 70vh;
    }
    .lightbox-content figcaption {
        flex-direction: row;
        justify-content: space-between;
    }
    /* Timers */
    .timers-container {
    flex-direction: row;
    gap: 2rem;
    }
    .timer-kaart {
        flex: 1;
    }
}