/* ==========================================================================
   VOTUM BRAND DESIGN SYSTEM (Clean & minimalistisch zonder UI-vakken)
   ========================================================================== */

:root {
    --gold: #D4AF37;          /* Officiële Goudkleur Code */
    --bg-dark: #0B0B0B;       /* Ultra-dark hoofdachtergrond */
    --bg-alt: #121212;        /* Subtiele afwisseling voor secties */
    --bg-card: #181818;       /* Donkere diepte voor content kaarten */
    --text-main: #FFFFFF;
    --text-muted: #A5A5A5;
}

/* Basis Instellingen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Helpers */
.bg-alt { background-color: var(--bg-alt) !important; }

/* Hero Section met Logo Afbeelding */
.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 0;
    background: radial-gradient(circle at center, #1c1607 0%, var(--bg-dark) 80%);
    border-bottom: 1px solid #141414;
}

.logo-image-container {
    max-width: 550px;
    margin: 0 auto 30px auto;
}

.main-brand-logo {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0px 0px 30px rgba(212, 175, 55, 0.15));
}

.concept-description {
    max-width: 750px;
    margin: 0 auto 45px auto;
    color: var(--text-muted);
    font-size: 1.15rem;
    font-weight: 300;
}

/* Knoppen */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 14px 35px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: #f1c40f;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
}

.btn-secondary {
    border: 1px solid #333;
    color: var(--text-main);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Algemene Sectie Titels */
.section-title {
    font-size: 2.4rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.section-subtitle {
    text-align: center;
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 50px;
}

/* Morele Bedoeling Sectie */
.detailed-info {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.missie-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.body-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.8;
}

.highlight-text {
    color: var(--text-main);
    font-size: 1.25rem;
    font-weight: 300;
    border-left: 3px solid var(--gold);
    padding-left: 20px;
    text-align: left;
    margin-bottom: 35px;
}

/* Werking Sectie */
.werking {
    padding: 100px 0;
}

.werking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.werking-box {
    background-color: var(--bg-dark);
    border: 1px solid #1c1c1c;
    padding: 40px;
    border-radius: 8px;
}

.werking-box h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.werking-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Pijlers & Kaarten Structuur */
.pillars {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.pillar-card {
    background-color: var(--bg-card);
    padding: 45px 35px;
    border-radius: 8px;
    border: 1px solid #202020;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.pillar-card.highlighted {
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: linear-gradient(150deg, var(--bg-card) 0%, #19150d 100%);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.pillar-icon span {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.15rem;
}

.pillar-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.pillar-def {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.pillar-example {
    font-size: 0.88rem;
    color: var(--gold);
    border-top: 1px solid #282828;
    padding-top: 20px;
    font-style: italic;
    margin-top: auto;
    line-height: 1.6;
}

/* Contact & Team Section */
.contact-section {
    padding: 100px 0;
}

.contact-intro {
    text-align: center;
    max-width: 600px;
    margin: -20px auto 50px auto;
    color: var(--text-muted);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.team-card {
    background-color: var(--bg-card);
    border: 1px solid #202020;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.team-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.member-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: #111;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
}

.team-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.member-role {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.member-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.member-email {
    display: inline-block;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px dashed var(--gold);
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.member-email:hover {
    color: var(--gold);
}

/* Algemene Info Box */
.general-info-box {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    background-color: var(--bg-dark);
    border: 1px dashed #333;
    padding: 25px;
    border-radius: 6px;
}

.general-info-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.general-email {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
}

.general-email:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #161616;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Responsiviteit */
@media (max-width: 900px) {
    .logo-image-container { max-width: 90%; }
    .cta-buttons { flex-direction: column; gap: 12px; }
    .highlight-text { text-align: center; border-left: none; padding-left: 0; }
}