/* Alternatieve stijl – alleen layout en fonts wijzigen, kleuren via thema */
body.alt-mode {
    --font-body: 'Courier New', Courier, monospace;
    --font-heading: 'Impact', 'Arial Black', sans-serif;
}

body.alt-mode h1,
body.alt-mode h2,
body.alt-mode h3,
body.alt-mode .logo a {
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
}

body.alt-mode .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Vaste zijbalk links */
body.alt-mode header {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100vh;
    background: var(--header-bg);
    padding: 30px 20px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 30px;
    overflow-y: auto;
}

body.alt-mode .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

body.alt-mode .logo a {
    font-size: 1.5rem;
    color: var(--secondary);
    text-decoration: none;
    text-align: center;
}

body.alt-mode .logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

body.alt-mode .main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

body.alt-mode .main-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 10px;
    border-radius: 4px;
    transition: background 0.3s;
}

body.alt-mode .main-nav a:hover {
    background: var(--overlay);
    color: var(--primary);
}

body.alt-mode .main-nav i {
    width: 24px;
    text-align: center;
    color: var(--primary);
}

/* Header tools gestapeld */
body.alt-mode .header-tools {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

body.alt-mode .lang-switcher {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

body.alt-mode .theme-tools {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

body.alt-mode .lang-btn,
body.alt-mode .theme-btn,
body.alt-mode .color-btn,
body.alt-mode .alt-mode-btn {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 12px;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-align: center;
}

body.alt-mode .lang-btn:hover,
body.alt-mode .theme-btn:hover,
body.alt-mode .color-btn:hover,
body.alt-mode .alt-mode-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* Main content schuift rechts */
body.alt-mode main {
    margin-left: 250px;
    padding: 40px;
    width: calc(100% - 250px);
}

/* Knoppen in de content */
body.alt-mode .btn,
body.alt-mode .button {
    background: var(--btn-bg);
    color: var(--btn-text);
    border: none;
    padding: 10px 25px;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    font-family: var(--font-body);
    box-shadow: none;
}

body.alt-mode .btn:hover,
body.alt-mode .button:hover {
    background: var(--btn-hover);
    transform: translateY(-2px);
}

/* Services en andere containers */
body.alt-mode .services,
body.alt-mode .contact-teaser {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: none;
}

/* Footer – gewoon onder de main */
body.alt-mode footer {
    margin-left: 250px;
    background: var(--footer-bg);
    border-top: 1px solid var(--primary);
    padding: 20px 40px;
    text-align: left;
    color: var(--text-color);
}

/* Responsive: op kleine schermen wordt de zijbalk bovenaan */
@media (max-width: 768px) {
    body.alt-mode header {
        position: static;
        width: 100%;
        height: auto;
        padding: 20px;
    }
    body.alt-mode .main-nav ul {
        flex-direction: row;           /* Zet navigatie horizontaal */
        justify-content: center;
        flex-wrap: wrap;
    }
    body.alt-mode .main-nav a {
        padding: 8px 15px;              /* Iets kleinere padding */
        font-size: 1rem;
    }
    body.alt-mode .main-nav i {
        margin-right: 5px;
    }
    body.alt-mode .header-tools {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    body.alt-mode .lang-switcher,
    body.alt-mode .theme-tools {
        flex-direction: row;
    }
    body.alt-mode main,
    body.alt-mode footer {
        margin-left: 0;
        width: 100%;
        padding: 20px;
    }
    /* Titels kleiner op mobiel */
    body.alt-mode h1 {
        font-size: 2.2rem;
    }
    body.alt-mode h2 {
        font-size: 1.5rem;
    }
    body.alt-mode h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    body.alt-mode h1 {
        font-size: 1.8rem;
    }
    body.alt-mode h2 {
        font-size: 1.3rem;
    }
    body.alt-mode h3 {
        font-size: 1.2rem;
    }
}

