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

body {
    font-family: "Segoe UI", Arial, sans-serif;
    position: relative;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* NAVBAR */
.navbar {
    /* background: #efefef; */
    padding: 30px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.login-link {
    text-decoration: none;
    font-size: 20px;
    color: #4b1f5e;
    font-weight: 500;
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url("../images/hero-image.png") no-repeat right center;
    background-size: cover;
    overflow: hidden;
}

/* Schuin vlak */
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 60%;
    background: #dfe3df;
    clip-path: polygon(0 0, 85% 0, 65% 100%, 0% 100%);
    z-index: 1;
}

/* Paarse onderhoek */
.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background: #4b1f5e;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    max-width: 650px;
}

.hero-text h1 {
    font-size: 64px;
    color: #4b1f5e;
    line-height: 1.05;
    margin-bottom: 25px;
}

.hero-text p {
    font-size: 18px;
    color: #5e6b57;
    margin-bottom: 35px;
}

.btn-green {
    display: inline-block;
    background: #6ea100;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-green:hover {
    background: #5a8700;
    transform: translateY(-2px);
}

/* TABLET */
@media (max-width: 768px) {

    .hero-text h1 {
        font-size: 40px;
    }

    .hero-overlay {
        width: 75%;
    }

    .hero::after {
        height: 120px;
    }
}

/* MOBILE */
@media (max-width: 480px) {

    .container {
        width: 95%;
    }

    .navbar {
        padding: 15px 0;
    }

    .logo img {
        height: 35px;
    }

    .login-link {
        font-size: 16px;
    }

    .hero {
        background-position: center;
    }

    .hero-overlay {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
    }

    .hero-text h1 {
        font-size: 26px;
    }

    .hero-text p {
        font-size: 15px;
    }

    .btn-green {
        padding: 12px 24px;
        font-size: 16px;
    }

    .hero::after {
        height: 90px;
    }
}