/* =========================
   HEADER / NAVIGATIE
   ========================= */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: center; /* NIET space-between */
    gap: 4rem;
    min-height: 96px;
}

.logo {
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 0.4px;
    color: #1f3a5f;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: #1b1b1b;
    font-weight: 500;
    font-size: 1.05rem;
    cursor: pointer;
}

.main-nav a.active,
.main-nav a:hover {
    color: #1f3a5f;
}

/* =========================
   MOBILE HEADER
   ========================= */

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.2rem 0;
    }

    .main-nav {
        gap: 1.2rem;
    }

    .logo {
        font-size: 1.25rem;
    }
}


/* =========================
   HERO MET ACHTERGRONDBEELD
   ========================= */

.hero-with-image {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    color: #ffffff;
    overflow: hidden;
    padding: 0 2rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.15rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
}

/* =========================
   HERO BUTTON HOVERS
   ========================= */

.hero-actions .btn {
    transition: 
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

/* Primaire knop */
.hero-actions .btn-primary:hover {
    background-color: #b8923f; /* iets donkerder goud */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.hero-actions .btn-secondary:hover {
    background-color: rgba(201, 162, 77, 0.25);
    color: #c9a24d;
    transform: translateY(-1px);
}


/* =========================
   OVER ONS
   ========================= */

.about-section {
    padding: 5.5rem 0;
    background: #ffffff;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 8px;
}

.about-text h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.2rem;
    color: #374151;
}

/* Mobile */
@media (max-width: 768px) {
    .about-inner {
        grid-template-columns: 1fr;
    }

    .about-image img {
        height: 300px;
    }
}


/* =========================
   DIENSTEN
   ========================= */

   .service-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1.2rem;
}

.services-section {
    background: #f9fafb;
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.service-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.service-item h3 {
    margin-top: 0;
    color: #1f3a5f;
}

/* =========================
   PROJECTEN
   ========================= */

.projects-section {
    padding: 5rem 0;
}

.projects-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.projects-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.projects-images img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
}

/* Mobile */
@media (max-width: 768px) {
    .projects-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .projects-images {
        grid-template-columns: 1fr;
    }

    .projects-images img {
        height: 200px;
    }
}


/* =========================
   CONTACT CTA
   ========================= */

.contact-cta {
    position: relative;
    padding: 5rem 0;
    color: #ffffff;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 0 2rem;
}

.cta-text h2 {
    margin-top: 0;
    margin-bottom: 1.2rem;
}

.cta-text p {
    color: #e5e7eb;
    margin-bottom: 2rem;
}

/* =========================
   CTA BUTTON HOVER
   ========================= */

.contact-cta .btn-primary {
    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
        cursor: pointer;
}

.contact-cta .btn-primary:hover {
    background-color: #b8923f;
    transform: translateY(-2px);
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
    background: #0f172a;
    color: #e5e7eb;
    padding: 4rem 0 2rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 0 2rem;
}


.footer-brand strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.footer-brand span {
    color: #9ca3af;
    font-size: 0.95rem;
}

.footer-block a {
    display: inline-block;
    color: #e5e7eb;
    text-decoration: none;
    margin: 0.25rem 0;
}


.footer-block a:hover {
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: #9ca3af;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem; /* 👈 duidelijke scheiding */
}


/* Mobile */
@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* =========================
   OVER ONS – DETAIL
   ========================= */

.about-detail {
    padding: 5.5rem 0;
    background: #f9fafb;
}

.about-detail-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.about-detail-text h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.about-detail-text p {
    margin-bottom: 1.2rem;
    color: #374151;
}

.about-detail-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 8px;
}

/* Mobile */
@media (max-width: 768px) {
    .about-detail-inner {
        grid-template-columns: 1fr;
    }

    .about-detail-image img {
        height: 300px;
    }
}
/* =========================
   ONZE AANPAK (HTML)
   ========================= */

.approach-section {
    padding: 5.5rem 0;
    background: #ffffff;
}

.approach-header {
    max-width: 720px;
    margin-bottom: 3.5rem;
}

.approach-header h2 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.approach-header p {
    color: #374151;
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.approach-step {
    background: #f9fafb;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1f3a5f;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.approach-step h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.approach-step p {
    color: #374151;
}

/* Mobile */
@media (max-width: 768px) {
    .approach-steps {
        grid-template-columns: 1fr;
    }
}
/* =========================
   WAAROM VOOR ONS KIEZEN
   ========================= */

.why-us-section {
    padding: 5.5rem 0;
    background: #f9fafb;
}

.why-us-section h2 {
    margin-top: 0;
    margin-bottom: 3rem;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.why-us-item h3 {
    margin-top: 0;
    margin-bottom: 0.6rem;
}

.why-us-item p {
    color: #374151;
}

/* Mobile */
@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   OVER ONS – CTA
   ========================= */

.about-cta {
    padding: 5rem 0;
    background: #ffffff;
}

.about-cta-inner {
    max-width: 720px;
    padding: 0 2rem;
}

.about-cta-inner h2 {
    margin-top: 0;
    margin-bottom: 1.2rem;
}

.about-cta-inner p {
    color: #374151;
    margin-bottom: 2rem;
}

/* =========================
   CONTACT FORM TABS
   ========================= */

.form-tabs {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 2.5rem;
}

.form-tab {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 500;
    cursor: pointer;
    color: #6b7280;
    border-bottom: 2px solid transparent;
}

.form-tab.active {
    color: #1f3a5f;
    border-bottom-color: #1f3a5f;
}

.form-panel {
    display: none;
}

.form-panel.active {
    display: block;
}

.contact-form-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 2rem;
}

.form-group input,
.form-group textarea,
.form-fieldset select {
    width: 100%;
    padding: 0.85rem 0.9rem;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-fieldset select:focus {
    outline: none;
    border-color: #1f3a5f;
    box-shadow: 0 0 0 3px rgba(31, 58, 95, 0.08);
}
.form-fieldset label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    font-weight: 400;
}

.form-fieldset input[type="checkbox"],
.form-fieldset input[type="radio"] {
    accent-color: #1f3a5f;
}

.form-fieldset {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    background: #fafafa;
}

.form-fieldset legend {
    font-weight: 600;
    padding: 0 0.6rem;
    color: #1f3a5f;
}

.contact-form .btn {
    margin-top: 2rem;
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 999px;
    transition: all 0.2s ease;
    margin-bottom: 1.5rem;
}

.contact-form .btn-primary {
    background: #c9a24d;
    color: #111;
}

.contact-form .btn-primary:hover {
    background: #b8923f;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.form-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    border-bottom: none;
}

.form-tab {
    background: #f3f4f6;
    border: none;
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    font-weight: 500;
    color: #374151;
    transition: all 0.2s ease;
}

.form-tab.active {
    background: #1f3a5f;
    color: #ffffff;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .form-tab {
        text-align: center;
    }
}

/* =========================
   BUTTONS
   ========================= */

.btn {
    display: inline-block;
    padding: 0.75rem 1.4rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background: #c9a24d;
    color: #111111;
    cursor: pointer;
}

.btn-secondary {
    border: 2px solid #c9a24d;
    color: #c9a24d;
    cursor: pointer;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 768px) {
    .about-inner,
    .projects-inner {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2.1rem;
    }
}
