/* Exacte header-, hamburger- en footerlaag uit index.php.html. */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 9999;
    padding: 20px 0;
    border-bottom: 1px solid rgba(45, 56, 53, 0.05);
    box-shadow: 0 2px 20px rgba(0,0,0,0.02);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    color: #2d3835;
}

.logo-dot {
    color: #d99675;
}

.nav-links {
    display: flex;
    list-style: none !important;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    list-style: none !important;
}

.nav-links a {
    text-decoration: none;
    color: #5a6662;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 10000;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #2d3835;
    transition: all 0.3s ease-in-out;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.site-footer {
    background-color: #e0d8cd;
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(45, 56, 53, 0.05);
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #2d3835;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-info {
    max-width: 700px;
    margin: 0 auto;
}

.footer-info h2,
.footer-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    color: #2d3835;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 400;
}

.footer-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5a6662;
    margin: 0;
}

.footer-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links h3,
.footer-links h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    color: #2d3835 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    margin-top: 0;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none !important;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}

.footer-links li {
    list-style: none !important;
}

.footer-links a {
    text-decoration: none;
    color: #5a6662;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d99675;
}

.footer-bottom {
    border-top: 1px solid rgba(45, 56, 53, 0.08);
    padding: 30px 24px 0 24px;
    text-align: center;
    color: #5a6662;
    width: 100%;
    box-sizing: border-box;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .hamburger {
        display: block;
    }

    .main-nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #ffffff;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        border-bottom: 1px solid #f0e9df;
    }

    .main-nav.active {
        display: block;
    }

    .nav-links {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 10px 24px !important;
        text-align: left;
        list-style: none !important;
    }

    .nav-links li {
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

    .nav-links a {
        display: block;
        padding: 14px 0 !important;
        font-size: 1.05rem !important;
        width: 100%;
        text-decoration: none !important;
    }

    .site-footer {
        padding: 60px 0 30px 0 !important;
    }

    .footer-content {
        gap: 35px !important;
        margin-bottom: 35px !important;
    }

    .footer-info h2,
    .footer-info h3 {
        font-size: 1.75rem !important;
    }

    .footer-info p {
        font-size: 0.95rem !important;
    }

    .footer-bottom {
        padding-top: 25px !important;
    }

    .footer-bottom p {
        font-size: 12px !important;
    }
}
