* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'ZalandoSansLight', sans-serif;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,210,0,0.06), transparent 40%),
        radial-gradient(circle at 80% 10%, rgba(255,210,0,0.05), transparent 45%),
        #ffffff;
}

@font-face {
    font-family: 'ZalandoSansBold';
    src: url('assets/fonts/zalandosans/ZalandoSans-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'ZalandoSansLight';
    src: url('assets/fonts/zalandosans/ZalandoSans-Light.woff2') format('woff2');
}

@font-face {
    font-family: 'QuantixExtraBold';
    src: url('assets/fonts/quantix/QuantixExtrabold.woff2') format('woff2');
}

h1, h2, h3 {
    margin: 0;
}

h1 {
    font-family: 'QuantixExtraBold', sans-serif;
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #fff;
    width: 50%;
}

h2 {
    font-family: 'QuantixExtraBold', sans-serif;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #181818;
    margin:0 0 40px 0;
}

.featureCard h3 {
    font-family: 'ZalandoSansLight', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #333;
}

p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin:0;
}

p.bold {
    font-family: 'ZalandoSansBold', sans-serif;
    margin:20px 0 0 0;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    background: #181818;
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo img {
    width: 200px;
}

.navItems {
    display: flex;
    align-items: center;
    gap: 20px;
}

button {
    background: #ffd200;
    color: #181818;
    padding: 14px 20px;
    border-radius: 10px;
    border: none;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.hero {
    padding: 100px 0 0 170px;
    width: 100%;
    min-height: 100vh;
    background-image: url('assets/garagebook-motorcyle-owner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 20% 40%,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.45) 25%,
        rgba(0,0,0,0.15) 50%,
        rgba(0,0,0,0) 70%
    );
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2;
}

.heroSubtitle {
    font-family: 'ZalandoSansBold', sans-serif;
    font-size: 30px;
    color: rgba(255,255,255,0.9);
    margin: 30px 0 20px;
    text-transform: none;
}

.heroPoints {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 500px;
}

.heroPoints li {
    font-family: 'ZalandoSansLight', sans-serif;
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    position: relative;
    padding-left: 18px;
}

.heroPoints li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: #ffd200;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255,210,0,0.8);
}

.features {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 20px 80px;
}

.featureGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.featureCard {
    background: white;
    padding: 30px 30px 30px 40px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.25s ease;
}

.featureCard::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 20px;
    width: 8px;
    height: 8px;
    background: #ffd200;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255,210,0,0.7);
}

.featureCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.section {
    padding: 4p0px 20px 140px;
}

.textBlock {
    max-width: 720px;
    margin: 0 auto;
}

.textBlock .lead {
    font-family: 'ZalandoSansBold', sans-serif;
    font-size: 22px;
    color: #181818;
    margin-bottom: 20px;
}

.fullWidthImage {
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.fullWidthImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 900px) {
    .featureGrid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
        width: 100%;
    }

    .hero {
        padding: 80px 20px;
    }

    .navigation {
        padding: 20px;
    }

    .logo img {
        width: 140px;
    }
}

.staggeredImages {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 0 0 100px 0;
}

/* Kolommen */
.imageColumn {
    width: 400px;
}

/* Afbeeldingen */
.imageColumn img {
    width: 100%;
    height: auto;
    border-radius: 50px; /* flinke radius */
    display: block;
    object-fit: cover;
}

/* stagger effect */
.imageColumn.right {
    margin-top: 180px;
}

@media (max-width: 768px) {
    .staggeredImages {
        flex-direction: column;
        align-items: center;
    }

    .imageColumn.right {
        margin-top: 0;
    }
}