﻿html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-family: "Mulish", sans-serif;
    background-color: #fff;
    line-height: 1.6;
}

main {
    flex: 1;
    padding-top: 64px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.over-container {
    width: 90%;
    max-width: 1200px;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 1rem auto;
}

.diensten-container {
    width: 90%;
    max-width: 1200px;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 1rem auto;
}

.error-container {
    width: 90%;
    max-width: 1200px;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 1rem auto;
}

.main-header {
    background: #333;
    color: white;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.main-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

 .nav-list a:hover {
     color: #ffb100;
 }

.hero {
    padding-bottom: 2rem;
}

.hero-banner {
    width: 100%;
    overflow: hidden;
}

.hero-banner .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.hero-banner p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 1rem 0;
}

.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: center;
    font-size: 1rem;
}

.service-item {
    display: block;
    background: #f2f2f2;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;
    color: inherit;
}

.service-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-item h3 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.service-icon {
    width: 64px;
    height: auto;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.service-link-text {
    display: block;
    margin-top: 1rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}

.service-link-text:hover {
    color: #ffb100;
}

a.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.25rem;
    background-color: #ffb100;
    color: #000000;
    text-decoration: none;
    border-radius: 32px;
    font-size: 1rem;
    line-height: 1;
    transition: background-color 0.3s ease;
    transition: color 0.3s ease;
}

a.btn:hover {
    background-color: #333;
    color: #ffb100;
}

.testimonial {
    background: #f2f2f2;
    padding: 4rem 0;
    text-align: center;
}

.testimonial .container {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 1rem 0;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1100;
    transition: color 0.3s;
}

.menu-toggle:hover {
    color: #ffb100;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.contact-container {
    width: 100%;
    max-width: 400px;
}

.intro-section {
    background-color: #fff;
    padding: 0 1rem 4rem;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 1rem 0;
}

.contact-section {
    background-color: #f2f2f2;
    padding: 4rem 1rem;
    display: flex;
    justify-content: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    max-width: 400px;
    margin: 2rem auto;
}

.contact-form label {
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: none;
}

.contact-form button {
    background-color: #ffb100;
    color: black;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    border-radius: 32px;
    width: 100%;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
    transition: color 0.3s ease;
}

.contact-form button:hover {
    background-color: #333;
    color: #ffb100;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.form-message {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
}

.form-message.success {
    background-color: #e6ffed;
    color: #0f5132;
    border: 1px solid #badbcc;
}

.form-message.error {
    background-color: #ffe6e6;
    color: #842029;
    border: 1px solid #f5c2c7;
}

.site-footer {
    background: #333;
    color: #fff;
    padding: 2rem 0rem;
    padding-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 1.5rem;
}

.footer-column {
    flex: 1 1 200px;
}

.footer-column strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.footer-column p {
    margin: 0.25rem 0;
    line-height: 1.4;
}

.social-icons a {
    margin-right: 0.5rem;
    display: inline-block;
}

.social-icons img {
    width: 24px;
    height: 24px;
    transition: filter 0.3s;
}

.social-icons a:hover img {
    filter: brightness(1.5);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #555;
    padding-top: 1rem;
    font-size: 0.85rem;
    flex-wrap: wrap;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
    text-align: center;
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
}

.footer-right a {
    color: inherit;
    text-decoration: none;
}

.footer-right a:hover {
    color: #ffb100;
}

.email-link {
    text-decoration: none;
    color: inherit;
}

.email-link:hover {
    color: #ffb100;
}

@media (max-width: 900px) {
    .services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        flex: unset;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100%;
        width: 250px;
        background: #333;
        flex-direction: column;
        gap: 2rem;
        padding: 4rem 2rem;
        transition: right 0.3s ease-in-out;
    }

    .nav-list.active {
        right: 0;
    }

    .menu-toggle {
        display: block;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 1rem;
        font-size: 1.1rem;
    }

    .contact-form button {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }
}