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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f0ea;
    color: #1f1f1f;
    line-height: 1.6;
}

/* HEADER */

.header {
    width: 100%;
    background-color: #111111;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 0;

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

.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 50%;
}

.logo-text {
    color: #ffffff;
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
    color: #c89b3c;
}

/* BUTTONS */

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary {
    background-color: #c89b3c;
    color: #ffffff;
    border: 2px solid #c89b3c;
}

.btn-primary:hover {
    background-color: #a77d2f;
    border-color: #a77d2f;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #111111;
}

/* SECTION TITLE - KAN OP MEERDERE PAGINA'S GEBRUIKT WORDEN */

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title p {
    color: #c89b3c;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 38px;
    color: #111111;
}

/* FOOTER */

.footer {
    background-color: #050505;
    color: #ffffff;
    padding: 55px 0 25px;
}

.footer-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 35px;

    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 35px;
}

.footer h2 {
    color: #c89b3c;
    font-size: 28px;
    margin-bottom: 15px;
}

.footer h3 {
    color: #c89b3c;
    margin-bottom: 15px;
}

.footer p {
    color: #dddddd;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333333;
    font-size: 14px;
}

/* RESPONSIVE ALGEMEEN */

@media screen and (max-width: 900px) {
    .navbar {
        flex-direction: column;
        gap: 18px;
    }

    .nav-links {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media screen and (max-width: 600px) {
    .logo-text {
        font-size: 22px;
    }

    .logo-img {
        width: 45px;
        height: 45px;
    }

    .section-title h2 {
        font-size: 30px;
    }
}