/* ===== GENERAL ===== */
body {
    margin: 0;
    padding: 0;
    background-color: #0d0d0d;
    color: #fff;
    font-family: 'Cinzel', serif;
}

a { color: #fff; text-decoration: none; }

/* ===== TOPBAR ===== */
.topbar {
    background-color: #000;
    color: #ccc;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-bottom: 1px solid #222;
}

.topbar-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar a { color: #fff; }
.topbar a:hover { text-decoration: underline; }

/* ===== NAVBAR ===== */
.navbar {
    background-color: #0d0d0d;
    border-bottom: 1px solid #222;
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 15px 20px;
}

.navbar a {
    color: #ddd;
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.navbar a:hover { color: #fff; text-decoration: underline; }

/* ===== HERO ===== */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero img {
    width: 100%;   /* volledig breed */
    height: auto;  /* proportioneel */
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    opacity: 0;
    animation: fadeInText 2s ease forwards;
    animation-delay: 1s;
}

.hero-overlay h1 { font-size: 3rem; margin-bottom: 10px; }
.hero-overlay .tagline { font-size: 1.5rem; }

@keyframes fadeInText {
    from {opacity:0; transform: translate(-50%, -60%);}
    to {opacity:1; transform: translate(-50%, -50%);}
}

@media screen and (max-width: 768px) {
    .hero-overlay h1 { font-size: 2rem; }
    .hero-overlay .tagline { font-size: 1rem; }
}

/* ===== GAME TEASER ===== */
#game-teaser-section {
    width: 100%;
    padding: 40px 0;      /* ruimte boven en onder */
    text-align: center;
    background-color: #0d0d0d;
}

#game-teaser-section .game-teaser {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: #fff;
    opacity: 0;
    animation: fadeInTeaser 2s ease forwards;
    animation-delay: 4s;   /* verschijnt 4s na laden, na hero fade-in */
}

#game-teaser-section .game-teaser a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
}

#game-teaser-section .game-teaser a:hover {
    text-decoration: underline;
}

@keyframes fadeInTeaser {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
}

.content-wrapper h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 20px;
    text-align: center;
}

.content-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
}
#leader-video {
    width: 100%;
    padding: 60px 0;
    text-align: center;
    background-color: #0d0d0d;
}

#leader-video .video-container {
    position: relative;
    width: 90%;             /* breedte van iframe */
    max-width: 1200px;      /* optioneel, zodat het niet gigantisch wordt */
    padding-bottom: 56.25%; /* 16:9 ratio (9/16 = 0.5625) */
    height: 0;
    margin: 0 auto;
}

#leader-video .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
body {
    margin: 0;
    padding: 0;
    background-color: #0d0d0d;
    color: #fff;
    font-family: 'Cinzel', serif; /* Hero / headings standaard */
}

/* Neutralere font voor topbar en content */
.topbar, 
.page-content, 
.page-content p, 
.page-content li {
    font-family: Arial, Helvetica, sans-serif; /* neutraal en goed leesbaar */
    color: #ddd;  /* subtiele kleur voor leesbaarheid */
}

.page-content h1 {
    font-family: 'Cinzel', serif; /* behoud hero/headings stijl */
}
/* ===== TEXT BOX ===== */
.text-box {
    background-color: #1a1a1a;   /* donkergrijze achtergrond */
    border: 1px solid #333;      /* subtiele rand */
    padding: 30px;
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.text-box h1 {
    font-family: 'Cinzel', serif; /* behoud stijl voor headings */
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.text-box p {
    font-family: Arial, Helvetica, sans-serif; /* neutrale tekst */
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 15px;
}