/* --- Premium Basis & Variabelen --- */
:root {
    --primary-blue: #122b46;
    --accent-gold: #cfa85e;
    --text-dark: #2c3e50;
    --text-grey: #6c7a89;
    --white: #ffffff;
    --bg-main: #ffffff;
    --bg-light: #f4f7f6;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
    --slider-duration: 18s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.8;
    background-color: var(--bg-main);
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* --- Header & Navigatie (Nu met wit kadertje!) --- */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* DIT IS DE WIJZIGING: Een subtiel, chique wit kadertje */
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    /* Maakt achtergrond wazig voor extra leesbaarheid */
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Zachte schaduw */
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    max-width: 180px;
    height: auto;
    transition: transform 0.3s ease;
    /* Geen schaduw meer nodig op de logo-img zelf door de witte achtergrond */
}

.logo-img:hover {
    transform: scale(1.03);
}

/* Hamburger knop (Verstopt op PC, zichtbaar op mobiel) */
.hamburger {
    display: none;
    font-size: 1.8rem;
    color: var(--primary-blue);
    /* Nu altijd blauw op wit kadertje */
    cursor: pointer;
    z-index: 2000;
}

.navbar {
    padding-top: 0;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links>li>a {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    /* Links zijn nu altijd donkerblauw op het witte kadertje */
    color: var(--primary-blue);
    padding: 10px 0;
    position: relative;
    display: flex;
    align-items: center;
    text-shadow: none;
    /* Geen schaduw meer nodig voor leesbaarheid */
}

.nav-links i {
    font-size: 9px;
    margin-left: 6px;
    color: var(--accent-gold);
}

/* Subtiel gouden lijntje onder de link bij hover */
.nav-links>li:not(:last-child)>a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 0;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links>li>a:hover::after,
.nav-links>li>a.active::after {
    width: 100%;
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
    color: var(--accent-gold);
    /* Goud bij hover */
}

/* --- Dropdown Menu Styling (Blijft hetzelfde) --- */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 6px 6px;
    border-top: 3px solid var(--accent-gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark) !important;
    font-size: 13px !important;
    text-transform: none !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
    text-shadow: none !important;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-blue) !important;
    padding-left: 25px;
}

/* --- Contact Knop in Navigatie --- */
.nav-btn-contact {
    background-color: var(--primary-blue);
    color: var(--white) !important;
    padding: 10px 25px !important;
    border-radius: 30px;
    text-shadow: none !important;
    transition: background-color 0.3s ease;
}

.nav-btn-contact:hover {
    background-color: var(--accent-gold);
    color: var(--white) !important;
}

/* --- Hero Sectie (Slider Achtergrond) --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--primary-blue);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 1;
    animation: imageSlider var(--slider-duration) linear infinite;
}

.slide-1 {
    animation-delay: 0s;
}

.slide-2 {
    animation-delay: 6s;
}

.slide-3 {
    animation-delay: 12s;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(18, 43, 70, 0.4), rgba(18, 43, 70, 0.85));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 20px;
}

.main-title {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 4.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    color: #e0e5eb;
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.btn-hero {
    display: inline-block;
    background-color: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    padding: 16px 40px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: var(--accent-gold);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* --- Wie zijn wij --- */
.about-section {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    z-index: 5;
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 80px;
    position: relative;
    color: var(--white);
}

.section-title::after {
    content: '';
    width: 60px;
    height: 2px;
    background-color: var(--accent-gold);
    display: block;
    margin: 25px auto 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    /* DIT IS DE WIJZIGING: Foto en tekst lijn nu bovenaan perfect gelijk uit */
    align-items: start;
}

.about-image {
    position: relative;
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
    color: var(--accent-gold);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
}

.about-text .text-link {
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: underline;
}

.about-text .text-link:hover {
    color: var(--white);
}

/* --- Contact Sectie (Blijft hetzelfde) --- */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--white);
    padding: 70px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.07);
}

.form-title {
    color: var(--primary-blue);
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 40px;
    font-size: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-grey);
    margin-bottom: 8px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #e1e5e8;
    border-radius: 8px;
    background-color: #fafbfc;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(18, 43, 70, 0.05);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-grey);
}

.btn-submit {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 16px 35px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    align-self: flex-start;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: var(--accent-gold);
    transform: translateY(-2px);
}

/* Rechterkant Contact Info */
.contact-info-container {
    padding-top: 20px;
}

.address-block p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.social-buttons {
    display: flex;
    gap: 15px;
    margin: 40px 0;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-social:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.btn-facebook {
    background-color: #1877f2;
}

.btn-whatsapp {
    background-color: #25d366;
}

.btn-share {
    background-color: var(--primary-blue);
    border-radius: 25px;
    width: auto;
    padding: 0 25px;
    font-size: 0.95rem;
}

.btn-share i {
    margin-right: 8px;
}

.contact-details p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.contact-details a {
    color: var(--primary-blue);
    font-weight: 600;
}

/* --- Footer --- */
.bottom-footer {
    padding: 30px 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-grey);
    background-color: var(--white);
    border-top: 1px solid #eaeaea;
}

.bottom-footer .container {
    display: flex;
    justify-content: space-between;
}

/* --- Animatie Keyframes voor de Slider (Cross-fade effect) --- */
@keyframes imageSlider {
    0% {
        opacity: 0;
        z-index: 1;
        transform: scale(1);
    }

    5% {
        opacity: 1;
        z-index: 2;
    }

    33.33% {
        opacity: 1;
    }

    38.33% {
        opacity: 0;
        z-index: 1;
        transform: scale(1.05);
    }

    100% {
        opacity: 0;
        z-index: 1;
    }
}

/* --- Animaties voor Scrollen (Fade-up) --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsief (Mobiel) --- */
@media (max-width: 900px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .main-header {
        position: relative;
        /* Terug naar normale positie op mobiel */
        background: var(--white);
        padding: 15px 0;
    }

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

    .nav-links>li>a {
        color: var(--primary-blue);
        /* Donkerblauw op wit kadertje */
        text-shadow: none;
    }

    .nav-links>li>a:hover {
        color: var(--accent-gold);
    }

    .logo-img {
        filter: none;
    }

    .hero-section {
        height: 80vh;
        padding-top: 50px;
    }

    .main-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: center;
        /* Alles centreren op mobiel */
    }

    .contact-grid {
        padding: 40px 25px;
    }

    .bottom-footer .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* --- Nieuwe Toevoegingen: Kaart & Socials --- */
.contact-details-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.map-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border: 1px solid #e1e5e8;
}

.social-links-small {
    display: flex;
    gap: 15px;
}

.social-links-small a {
    color: var(--primary-blue);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links-small a:hover {
    color: var(--accent-gold);
    transform: translateY(-3px);
}

.contact-footer-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-footer-info i {
    color: var(--accent-gold);
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

/* --- Nieuwe Toevoegingen: Gepersonaliseerde Footer --- */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.designer-link {
    font-weight: 700;
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 2px;
}

.designer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.designer-link:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-details-top {
        flex-direction: column;
        gap: 15px;
    }
}