/* ===== Globale Instellingen & Variabelen ===== */
:root {
    --background-color: #101224;
    --text-color: #F6F4F0;
    --accent-color: #FFD700;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--font-body);
    margin: 0;
    line-height: 1.7;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    width: 100%;
    overflow-x: hidden;
}

section {
    padding: 100px 5%;
    max-width: 900px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(246, 244, 240, 0.1);
}

section:last-child {
    border-bottom: none;
}

h1, h2 {
    font-family: var(--font-heading);
    text-align: center;
    font-weight: 700;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
}

p {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Sectie 1: Hero ===== */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('../img/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    padding: 0;
    border-bottom: none;
}

.hero-content {
    text-align: center;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

#hero h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    margin: 0;
}

#hero .mantra {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-style: italic;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* ===== Sectie 3: Story ===== */
.story-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.story-image {
    flex: 1;
    min-width: 280px;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.story-text {
    flex: 2;
    min-width: 300px;
}

.story-text p {
    margin: 0;
}

/* ===== Sectie 4: Connect ===== */
#connect {
    text-align: center;
}

.social-links a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 20px;
    font-size: 1.2rem;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.social-links a:hover {
    border-bottom: 2px solid var(--accent-color);
    color: var(--accent-color);
}

/* ===== Animaties ===== */
.fade-in, .fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible, .fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

