/* Basis Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1A1A1A;
    --primary-light: #333333;
    --bg-color: #FAFAFA;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--primary);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Navigatie (Chique en subtiel) */
nav {
    position: fixed; /* Blijft nu bovenaan staan bij scrollen */
    top: 0;
    width: 100%;
    padding: 2.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: all 0.4s ease;
}

nav.scrolled {
    padding: 1.5rem 5%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #888;
}

/* Hero Sectie - Gecentreerd en Premium */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center; /* Centreert horizontaal */
    padding: 0 5%;
    background-image: url('../images/hero-bg.webp'); 
    background-size: cover;
    background-position: center bottom;
    position: relative;
    text-align: center; /* Centreert de tekst */
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin-top: -5vh; /* Trekt het geheel ietsjes omhoog voor de balans */
}

/* De 'Eyebrow' toevoeging */
.eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    color: var(--primary-light);
    opacity: 0.7;
}

/* Dramatischere kop */
.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 9vw, 6.5rem); /* Maakt hem gigantisch op grote schermen */
    line-height: 1;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    color: #111; /* Nog net iets dieper donker */
}

.hero p {
    font-size: 1rem;
    font-weight: 300;
    max-width: 480px;
    margin-bottom: 2.5rem;
    line-height: 1.9;
    color: var(--primary-light);
}

/* De Premium Knop (Verfijnd) */
.btn-premium {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #111;
    text-decoration: none;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(17, 17, 17, 0.3); /* Veel zachtere rand */
    border-radius: 50px; 
    transition: all 0.4s ease;
}

.btn-premium:hover {
    background: #111;
    color: #fff;
    border-color: #111;
    transform: translateY(-3px);
}

/* Scroll Indicator (Extra detail) */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.scroll-indicator span {
    font-family: var(--font-body);
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-light);
    opacity: 0.6;
}

.scroll-indicator .line {
    width: 1px;
    height: 40px;
    background-color: var(--primary);
    opacity: 0.4;
    animation: scrollLine 2s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
    50% { transform: scaleY(1); transform-origin: top; opacity: 0.4; }
    50.1% { transform: scaleY(1); transform-origin: bottom; opacity: 0.4; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* Chique Laad-Animaties */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpAnim 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }

@keyframes fadeUpAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
