:root {
    --bg-light: rgb(244, 231, 166);
    --bg-dark: rgb(97, 15, 12);
    --bg-blue: rgb(181, 199, 225);
    --bg-green: rgb(107, 117, 52);
    --gold: #d4af37;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Times New Roman", Times, serif;
    background-color: var(--bg-blue);
    color: #333;
    line-height: 1.6;
}

/* ------------------------Layout ---------------------------------*/
.container {
    width: 100%;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* -------------------------Header & Nav------------------------------------ */
header {
    background-color: var(--bg-dark);
    padding: 60px 20px 120px;
    text-align: center;
}

.header-content h1 {
    color: var(--bg-light);
    font-size: clamp(32px, 6vw, 60px);
    margin: 0;
}

nav {
    position: absolute;
    top: 20px;
    left: 60px;
    display: flex;
    gap: 10px;
}

nav a {
    text-decoration: none;
    padding: 6px 16px;
    color: var(--bg-light);
    background-color: rgba(0,0,0,0.25);
    border-radius: 6px;
    font-weight: bold;
}

/* Admin controls */
.admin-controls {
    position: absolute;
    top: 15px;
    right: 20px;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    z-index: 1000;
    background-color: transparent;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: none;
}

.admin-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg-light);
    border: 1px solid rgba(244, 231, 166, 0.3);
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
}
.admin-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--bg-light);
}
#adminStatus {
    color: var(--bg-light);
    font-size: 12px;
    margin-left: 8px;
}

/* --------------------------Main content-------------------------------- */
main {
    padding: 40px 20px;
    background-color: var(--bg-blue);
}

section {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.192);
    border-radius: 10px;
}

section h2 {
    font-size: 36px;
    color: var(--bg-dark);
    margin-bottom: 20px;
}

section p {
    margin-bottom: 16px;
    font-size: 18px;
    color: var(--bg-dark);
}

/* FAQ specifieke styling */
.faq-section {
    max-width: 900px;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    text-align: left;
}

.faq-item h3 {
    color: var(--bg-dark);
    font-size: 22px;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

/* -------------------------------Footer----------------------------- */
footer {
    text-align: center;
    padding: 40px 0px;
    background-color: var(--bg-dark);
    color: var(--bg-light);
    min-height: fit-content;
    position: relative;
    bottom: 0px;
    width: 100%;
}

/* Responsive */
@media (max-width: 600px) {
    header {
        padding: 40px 16px 80px;
    }
    nav {
        position: relative;
        justify-content: center;
        left: auto;
        top: auto;
        margin: 8px auto 16px;
        flex-wrap: wrap;
    }
    .admin-controls {
        top: 10px;
        right: 10px;
        padding: 6px 10px;
        gap: 6px;
    }
    .admin-btn {
        font-size: 12px;
        padding: 6px 10px;
    }
    #adminStatus {
        font-size: 11px;
        margin-left: 4px;
    }
    section {
        padding: 20px 12px;
    }
    section h2 {
        font-size: 28px;
    }
    section p {
        font-size: 16px;
    }
    .faq-item h3 {
        font-size: 18px;
    }
    .faq-item p {
        font-size: 15px;
    }
}

@media (min-width: 601px) and (max-width: 1200px) {
    header {
        padding: 50px 20px 100px;
    }
    nav {
        left: 30px;
        top: 18px;
    }
    .admin-controls {
        top: 12px;
        right: 16px;
    }
    section h2 {
        font-size: 32px;
    }
    section p {
        font-size: 17px;
    }
    .faq-item h3 {
        font-size: 20px;
    }
    .faq-item p {
        font-size: 16px;
    }
}

@media (min-width: 1201px) {
    header {
        padding: 70px 24px 140px;
    }
    .admin-controls {
        top: 18px;
        right: 24px;
    }
    section h2 {
        font-size: 40px;
    }
    section p {
        font-size: 20px;
    }
    .faq-item h3 {
        font-size: 24px;
    }
    .faq-item p {
        font-size: 18px;
    }
}
