/* ============================================================
   RadioDJ Help Wiki – Responsive Neon Dark UI
   Clean, modern, mobile‑first layout
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Inter:wght@400;600&display=swap');

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.04em;
}

/* RESET */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background: #050509;
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.04em;
}
/* Container voor wiki content */
.wiki_container {
    top: 80px; /* vrij van boven kant */
    max-width: 600px;        /* breedte van de content */
   /* margin: 0 auto; */         /* horizontaal centreren */
    padding: 20px 25px;
    background: #0d0d12;
    border: 1px solid #222;
    border-radius: 8px;
    box-shadow: 0 0 10px #00eaff22;
    color: #ddd;
   position: absolute;
   left: 50%;
   transform: translate(-50%);

}

   padding-top: 80px; /* zelfde hoogte als jouw header */
}

.welcome-button {
    display: inline-block;
    padding: 14px 26px;
    background: #00eaff;
    color: #000;
    font-weight: bold;
    font-size: 16px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 25px;
    transition: 0.2s ease;
}

.welcome-button:hover {
    background: #00ffaa;
    transform: translateY(-2px);
}

/* WRAPPER */
.wrapper {
    display: flex;
    min-height: 100vh;
}

/* SIDEBAR */
.sidebar {
    width: 320px;
    background: #0d0d15;
    border-right: 2px solid #1f1f2b;
    padding: 20px;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.sidebar h2, h3, h4 {
    color: #00eaff;
    margin: 0 0 20px 0;
    font-size: 22px;
    letter-spacing: 0.04em;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin-bottom: 6px;
}

.sidebar-nav a {
    display: block;
    padding: 10px 8px;
    color: #FFCC66;
    text-decoration: none;
    font-size: 15px;
    border-radius: 4px;
    transition: 0.2s ease;
}

.sidebar-nav a:hover {
    background: rgba(0, 234, 255, 0.12);
    color: #00eaff;
    transform: translateX(3px);
}
/* ============================
   SIDEBAR DROPDOWN
   ============================ */

.dropdown {
    margin-bottom: 12px;
}

.dropdown-btn {
    width: 100%;
    background: #14141f;
    color: #00eaff;
    padding: 10px;
    border: 1px solid #1f1f2b;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    text-align: left;
    transition: 0.2s ease;
}

.dropdown-btn:hover {
    background: #1a1a28;
    color: #00ffaa;
}

.dropdown-content {
    display: none;
    flex-direction: column;
    background: #0d0d15;
    border-left: 2px solid #00eaff;
    margin-top: 6px;
    padding-left: 8px;
}

.dropdown-content a {
    padding: 8px 6px;
    color: #FFCC66;
    text-decoration: none;
    font-size: 14px;
    border-radius: 4px;
    transition: 0.2s ease;
}

.dropdown-content a:hover {
    background: rgba(0, 234, 255, 0.12);
    color: #00eaff;
    transform: translateX(3px);
}

/* CONTENT */
.content {
    flex: 1;
    padding: 30px;
    max-width: 1100px;
}

h1, h2, h3, h4,h5 {
    color: #00eaff;
    margin-top: 0;
}

p {
    color: #d4d4e0;
}

/* LINKS */
.content a {
    color: #00eaff;
    text-decoration: none;
    border-bottom: 1px dotted rgba(0, 234, 255, 0.5);
}

.content a:hover {
    color: #00ffaa;
    border-color: rgba(0, 255, 170, 0.7);
}

/* BUTTONS */
.welcome-button,
.rdj-button {
    display: inline-block;
}
#footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111;
    color: #ccc;
    padding: 12px 20px;
    text-align: center;
    border-top: 1px solid #333;
    z-index: 999;
}


/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Kleine telefoons (max 400px) */
@media (max-width: 400px) {
    .wrapper {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        border-right: none;
        border-bottom: 2px solid #1f1f2b;
    }

    .content {
        padding: 20px;
    }

    .sidebar h2 {
        font-size: 18px;
    }

    .sidebar-nav a {
        font-size: 14px;
        padding: 8px 6px;
    }

    .welcome-button {
        width: 100%;
        text-align: center;
        font-size: 14px;
        padding: 12px 0;
    }
}

/* Smartphones (max 600px) */
@media (max-width: 600px) {
    .wrapper {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }
    .sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .content {
        padding: 22px;
    }

    .sidebar-nav a {
        font-size: 15px;
    }
}

/* Tablets (max-width 900px) */
@media (max-width: 900px) {
    .sidebar {
        width: 240px;
    }
.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}
    .content {
        padding: 26px;
    }
}

/* Laptops (max-width 1200px) */
@media (max-width: 1200px) {
    .sidebar {
        width: 260px;
    }

    .content {
        padding: 28px;
    }
}

/* Desktops (1200px+) */
/* Geen extra regels nodig — volledige layout blijft behouden */

/* ============================================================
   GLOBAL STICKY PAGE HEADER – FULL WIDTH + CENTERED H2
   ============================================================ */

.page-header {
    position: fixed;          /* blijft bovenaan */
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;

    background: linear-gradient(180deg, #0d0d15, #14141f);
    border-bottom: 1px solid #154a7f;
    box-shadow: 0 2px 4px rgba(0,0,0,0.25);

    display: flex;
    align-items: center;
    justify-content: center;  /* H2 blijft exact in het midden */
    padding: 0 20px;
    z-index: 9999;
}

.page-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
}

/* Back to Start button */
.back-start {
    position: absolute;
    left: 20px;
    padding: 8px 14px;
    background: #ffffff22;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    border: 1px solid #ffffff55;
    transition: 0.2s;
}

.back-start:hover {
    background: #ffffff33;
    border-color: #ffffff88;
}

/* voorkom overlap met content */
body {
    padding-top: 70px; /* zelfde hoogte als header */
}

/* Mobile */
@media (max-width: 600px) {
    .page-header {
        height: auto;
        padding: 12px 15px 18px;
        flex-direction: column;
    }

    .back-start {
        position: relative;
        left: 0;
        width: 100%;
        text-align: center;
        margin-bottom: 8px;
    }

    .page-header h2 {
        font-size: 20px;
        text-align: center;
    }

    body {
        padding-top: 100px; /* extra ruimte voor mobile layout */
    }
}


/* Mobile */
@media (max-width: 600px) {
    .page-header {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 12px 15px;
    }

    .back-start {
        position: relative;
        left: 0;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .page-header h2 {
        font-size: 18px;
        text-align: center;
        width: 100%;
    }
}


/* Responsive */
@media (max-width: 600px) {
    .page-header {
        padding: 14px 15px;
    }

    .page-header h2 {
        font-size: 20px;
    }
}

