/* =========================
   RESET / BASIS
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: #2c3e50;
    color: #ecf0f1;
    line-height: 1.6;
}

/* =========================
   CONTAINER
========================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================
   HEADER
========================= */
/* HEADER */
.site-header {
    background: #2c3e50;
    padding: 10px 0;
    position: relative;
    z-index: 10;
}

/* FLEX */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO WRAPPER */
.logo-wrapper {
    position: relative;
}

/* 🔥 GROOT LOGO + OVERLAP */
.custom-logo {
    max-height: 140px;   /* 2x zo groot */
    width: auto;

    position: relative;
    top: 10px;           /* 👈 laat logo onder header uitsteken */
}

/* voorkomt layout issues */
.custom-logo-link {
    display: block;
}

/* NAV */
.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

/* MENU LINKS */
.nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

/* hover lijn */
.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #f1c40f;
    transition: 0.3s;
}

.nav a:hover::after {
    width: 100%;
}

/* =========================
   HERO
========================= */
.hero {
    padding: 120px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero p {
    color: #bdc3c7;
    margin-bottom: 20px;
}

/* =========================
   BUTTONS
========================= */
.btn-primary {
    display: inline-block;
    background: #e74c3c;
    padding: 12px 28px;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #c0392b;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    border: 2px solid #f1c40f;
    color: #f1c40f;
    padding: 10px 25px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #f1c40f;
    color: #2c3e50;
}

/* =========================
   SERVICES
========================= */
.services {
    padding: 60px 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service {
    background: #34495e;
    padding: 30px;
    border-radius: 6px;
    transition: 0.3s;
}

.service:hover {
    transform: translateY(-5px);
}

.service h3 {
    margin-bottom: 10px;
    color: #f1c40f;
}

/* =========================
   CTA
========================= */
.cta {
    background: #1f2a36;
    padding: 50px 0;
    text-align: center;
}

.cta h2 {
    margin-bottom: 20px;
}

/* =========================
   PAGINA CONTENT
========================= */
.page-content {
    padding: 60px 0;
    max-width: 800px;
}

.page-content h1 {
    margin-bottom: 20px;
    color: #f1c40f;
}

/* =========================
   FOOTER
========================= */
.site-footer {
    background: #1a252f;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    color: #bdc3c7;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .custom-logo {
        max-height: 70px;
        top: 0;
    }

    .header-inner {
        flex-direction: column;
        gap: 10px;
    }

    .nav ul {
        flex-direction: column;
        align-items: center;
    }

    .hero {
        padding: 80px 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .grid {
        grid-template-columns: 1fr;
    }
}