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

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #393b3b;
}

/* NAVBAR */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 40px;
    background: #ececec;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 60px;
}

/* NAV LINKS */
nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #393b3b;
    font-weight: 500;
    position: relative;
}

/* underline */
nav a:not(.no-underline)::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: #b0cb08;
    transition: 0.3s;
}

nav a:not(.no-underline):hover::after {
    width: 100%;
}

/* BUTTON */
.btn {
    padding: 10px 18px;
    border-radius: 999px;
}

.primary {
    background: #b0cb08;
    color: white;
    font-weight: 600;
    transition: 0.2s;
}

.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(176,203,8,0.4);
}

/* HERO */
.hero {
    margin-top: 20px;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 700px;
}

/* ANIMATIE */
.fade-in {
    animation: fadeUp 1s ease forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* HERO TEXT */
.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 21px;
    color: #555;
    margin-bottom: 40px;
}

/* SEARCH */
.search-box {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.search-box input {
    padding: 14px 18px;
    width: 300px;
    border-radius: 999px;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.search-box button {
    width: 50px;
    border-radius: 999px;
    border: none;
    background: #b0cb08;
    color: white;
    cursor: pointer;
    transition: 0.2s;
}

.search-box button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(176,203,8,0.4);
}

/* FOOTER */
.footer {
    background: #393b3b;
    color: #ececec;
    padding: 70px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 220px;
    transition: 0.3s;
}

.footer-column:hover {
    transform: translateY(-5px);
}

.footer a {
    color: #ececec;
    text-decoration: none;
    transition: 0.2s;
}

.footer a:hover {
    color: #b0cb08;
    transform: translateX(4px);
}

.spacer {
    margin-top: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    font-size: 13px;
    opacity: 0.7;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

/* MOBILE */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    nav {
        display: none;
        position: absolute;
        top: 70px;
        right: 20px;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-radius: 15px;
    }

    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .search-box {
        flex-direction: column;
    }

    .search-box input {
        width: 100%;
    }
}