/* Globale Variabelen */
:root {
    --aimorgen-blauw: #3c377c;
    --aimorgen-goud: #b27b12;
    --aimorgen-grijs: #f3f4f6;
    --aimorgen-tekst: #111827;
}

/* Algemene Stijlen */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--aimorgen-tekst);
    margin: 0;
    background-color: #fff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    color: var(--aimorgen-blauw);
    line-height: 1.2;
}

h1 { font-size: 36px; margin-bottom: 20px; }
h2 { font-size: 32px; margin-bottom: 15px; }
h3 { font-size: 24px; margin-bottom: 10px; }
p { margin-bottom: 15px; }

a {
    color: var(--aimorgen-goud);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    text-decoration: underline;
}

section {
    padding: 60px 0;
}

/* --- Menu Stijlen --- */
.menu-header {
    background-color: var(--aimorgen-blauw);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu-logo img {
    height: 40px;
    width: auto;
}
.menu-nav a {
    color: white;
    margin-left: 25px;
    font-weight: 500;
}
.menu-nav a.cta-button {
    background-color: var(--aimorgen-goud);
    padding: 10px 18px;
    border-radius: 8px;
    margin-left: 25px;
}
.menu-nav a.cta-button:hover {
    background-color: #c98914;
    text-decoration: none;
}

/* --- Index Pagina Stijlen --- */

/* Hero Sectie */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    color: white;
    text-align: center;
    padding: 60px 20px;
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('static/teamstrategiesessie2.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--aimorgen-blauw);
    opacity: 0.85;
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}
.hero-content h1 {
    color: white;
    font-size: 48px;
}
.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}
.hero-buttons a {
    color: white;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 8px;
    margin: 5px;
    display: inline-block;
    border: 2px solid transparent;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.hero-buttons a:hover { text-decoration: none; }
.hero-buttons .scan-button {
    background-color: var(--aimorgen-goud);
}
.hero-buttons .scan-button:hover {
    background-color: #c98914;
}
.hero-buttons .checklist-button {
    background-color: white;
    color: var(--aimorgen-blauw);
    border-color: white;
}
.hero-buttons .checklist-button:hover {
    background-color: transparent;
    color: white;
}

/* Algemene Sectie Stijlen */
.text-center { text-align: center; }
.section-intro { max-width: 800px; margin: 0 auto 40px auto; font-size: 18px; color: #555; }
.bg-gray { background-color: var(--aimorgen-grijs); }

/* Over Mij Sectie (Index) */
.over-mij-box {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.over-mij-foto img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}


/* --- NIEUWE STIJLEN HIERONDER --- */

/* 1. Logo Sectie */
.logos-section {
    padding: 40px 0;
    text-align: center;
}
.logos-section h3 {
    font-size: 14px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}
.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
.logo-grid img {
    height: 32px;
    opacity: 0.6;
    filter: grayscale(100%);
}

/* 2. Pijlers sectie */
.pijlers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.pijler-item {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.pijler-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.pijler-icon {
    margin-bottom: 20px;
}
.pijler-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--aimorgen-goud); /* Gebruikt de goud-kleur */
    margin: 0 auto;
}

/* 3. Gratis Tools Sectie */
.tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}
.tool-item {
    background-color: var(--aimorgen-grijs);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.tool-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}
.tool-item a.button {
    display: inline-block;
    background-color: var(--aimorgen-goud);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
}
.tool-item a.button:hover {
    background-color: #c98914;
    text-decoration: none;
}
/* Media query voor kleinere schermen */
@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
    .over-mij-box {
        flex-direction: column;
        text-align: center;
    }
}