/* Variabelen voor kleuren */
:root {
    --primary: #d4af37; /* Gouden kleur */
    --secondary: #1e2a38; /* Donkerblauw */
    --background: #0e1a2b; /* Donkerblauw */
    --accent: #f1f1f1; /* Lichtkleurig accent */
    --text: #f1f1f1;
    --highlight: #4CAF50; /* Groene highlight voor knoppen */
}

/* Algemene Stijlen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
    padding-top: 80px; /* Voeg ruimte boven toe vanwege de vaste header */
}

header {
    background-color: var(--secondary);
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

header .logo-container {
    display: flex;
    align-items: center;
}

header .logo {
    width: 40px;
    height: auto;
    margin-right: 10px;
}

header .logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
}

.menu-toggle {
    width: 40px;
    height: 30px;
    position: relative;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-toggle span {
    position: absolute;
    height: 4px;
    width: 100%;
    background: var(--primary);
    left: 0;
    transition: 0.3s;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 12px; }
.menu-toggle span:nth-child(3) { top: 24px; }

nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 250px;
    background-color: var(--secondary);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -2px 0px 10px rgba(0, 0, 0, 0.3);
    padding-top: 80px;
}

nav.open {
    transform: translateX(0);
}

nav ul {
    list-style: none;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: var(--accent);
    padding: 1rem 2rem;
    display: block;
    transition: background 0.3s, transform 0.3s ease;
}

nav a:hover {
    background-color: var(--primary);
    color: #000;
    transform: translateX(10px);
}

footer {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--secondary);
    color: var(--accent);
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.3);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

.login-form {
    margin: 100px auto;
    padding: 2rem;
    background: var(--secondary);
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    color: var(--accent);
    text-align: center;
}

.login-form h2 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.input-container {
    margin-bottom: 1rem;
    text-align: left;
}

.input-container label {
    display: block;
    margin-bottom: 0.5rem;
}

.input-container input {
    width: 100%;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid var(--primary);
    background: var(--background);
    color: var(--text);
}

.login-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--highlight);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: #45a049;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    .logo-text {
        font-size: 1.2rem;
    }
}