/* =========================================
   Basis Instellingen
   ========================================= */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #003366; /* Het donkerblauw uit je logo */
    line-height: 1.6;
    background-color: #ffffff;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   Header & Logo (De Fix voor het grote logo)
   ========================================= */
header {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 280px; /* Forceert het logo naar een normaal formaat */
    height: auto;
    display: block;
}

/* =========================================
   Taalschakelaar Styling
   ========================================= */
.lang-switch {
    font-weight: bold;
    cursor: pointer;
    color: #003366;
    font-size: 16px;
    user-select: none;
}

.lang-switch span {
    padding: 5px 10px;
    opacity: 0.4;
    transition: 0.3s ease;
}

.lang-switch span.active {
    opacity: 1;
    color: #FF6600; /* De oranje accentkleur */
}

.lang-switch span:hover {
    opacity: 1;
}

/* Taal-logica: Verbergt de taal die niet actief is */
.lang {
    display: none;
}

body.lang-nl .lang.nl {
    display: block;
}

body.lang-en .lang.en {
    display: block;
}

/* =========================================
   Hero Sectie
   ========================================= */
.hero {
    background-color: #f4f7f6;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #003366;
}

.hero p {
    font-size: 20px;
    max-width: 750px;
    margin: 0 auto;
    color: #445566;
}

/* =========================================
   Content & Features
   ========================================= */
.content {
    padding: 80px 0;
    text-align: center;
}

.content h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.features {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.feature-item {
    flex: 1;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-item h3 {
    color: #003366;
    margin-bottom: 15px;
}

/* =========================================
   Footer
   ========================================= */
footer {
    background-color: #003366;
    color: #fff;
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
}

footer a {
    color: #FF6600;
    text-decoration: none;
}

/* =========================================
   Mobiel Vriendelijkheid
   ========================================= */
@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
        gap: 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .features {
        flex-direction: column;
    }

    .logo {
        max-width: 200px;
    }
}
/* Extra voor Login en Admin */
input[type="text"], input[type="password"], input[type="email"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

table {
    margin-top: 20px;
    background: white;
}

table th, table td {
    border: 1px solid #ddd;
    text-align: left;
}

.lesson-list li:hover {
    background: #e0e0e0;
}
/* Verbeterde Dark Theme */
body.dark-theme {
    background-color: #121212 !important;
    color: #e0e0e0 !important;
}

body.dark-theme header {
    background-color: #1f1f1f !important;
    border-bottom: 1px solid #333;
}

body.dark-theme .sidebar {
    background-color: #1f1f1f !important;
    border-right: 2px solid #FF6600; /* Oranje accent ipv blauw in dark mode */
}

body.dark-theme .module-header {
    background-color: #FF6600 !important;
    color: #000 !important;
}

body.dark-theme .lesson-list li {
    border-bottom: 1px solid #333;
}

body.dark-theme .lesson-list li a {
    color: #e0e0e0 !important;
}

body.dark-theme .content-area, 
body.dark-theme .profile-container {
    background-color: #181818 !important;
    color: #e0e0e0 !important;
}

body.dark-theme input, 
body.dark-theme select {
    background-color: #252525 !important;
    border: 1px solid #444 !important;
    color: #fff !important;
}

body.dark-theme .hero {
    background-color: #181818 !important;
}
body.dark-theme .paywall {
    background: #252525 !important;
    border-color: #444;
}
body.dark-theme .paywall h2 {
    color: #FF6600;
}
/* Dark Mode Pricing Cards */
body.dark-theme .price-card {
    background: #1f1f1f;
    border-color: #333;
    color: #fff;
}
body.dark-theme .price-amount {
    color: #FF6600;
}
body.dark-theme .feature-list li {
    color: #ccc;
}
body.dark-theme .price-card.featured {
    border-color: #FF6600;
}
/* Voorkom tekstselectie in de trainingsomgeving */
.academy-layout {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Voorkom dat afbeeldingen/video's versleept kunnen worden */
img, video {
    -webkit-user-drag: none;
    user-drag: none;
}
.banner-action {
    background: rgba(255, 102, 0, 0.1); /* Zacht oranje gloed */
    border: 2px solid #FF6600;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.banner-action h2 {
    color: #003366;
    margin-bottom: 0;
    font-size: 28px;
}

/* Voor Dark Mode */
body.dark-theme .banner-action {
    background: rgba(255, 102, 0, 0.05);
    border-color: #FF6600;
}
body.dark-theme .banner-action h2 {
    color: #FF6600;
}