/* 
   Kleurenpalet Optie 1:
   #1A2F4B - Deep Blue (Header BG / Koppen)
   #3E5C76 - Blue (Accenten)
   #D4A373 - Sand (Knoppen/Details)
   #F8F5F2 - BG (Body)
   #E9E2D8 - Cream (Nav/Footer)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@400;600&display=swap');

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

body {
    background-color: #F8F5F2;
    color: #2B2B2B;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

/* Achtergrond details (Blobs) */
body::before, body::after {
    content: "";
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    z-index: -1;
    filter: blur(100px);
    opacity: 0.1;
    pointer-events: none;
}

body::before {
    background-color: #D4A373;
    top: -200px;
    left: -200px;
}

body::after {
    background-color: #3E5C76;
    bottom: -200px;
    right: -200px;
}

/* Header & Nav */
.main-header {
    background-color: #1A2F4B; 
    border-bottom: 4px solid #D4A373;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #F8F5F2; 
    line-height: 1.1;
}

.logo-sub {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #D4A373; 
    font-weight: 600;
    margin-top: 4px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: rgba(248, 245, 242, 0.8); 
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover, .nav-links a.active {
    color: #F8F5F2; 
    border-bottom-color: #D4A373;
}

/* Main Content */
.content-wrapper {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 1.5rem;
    flex-grow: 1;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    color: #1A2F4B;
}

h1 { font-size: 46px; margin-bottom: 2rem; text-align: center; }
h2 { font-size: 32px; margin-bottom: 1.5rem; color: #3E5C76; display: flex; align-items: center; }
h2::before { content: ""; width: 40px; height: 2px; background: #D4A373; margin-right: 15px; }

p { margin-bottom: 1.5rem; }

strong {
    color: #1A2F4B;
    font-weight: 700;
}

/* Images */
.image-wrapper {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.home-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.service-image {
    max-width: 450px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.hero { text-align: center; }

.highlight {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1A2F4B;
}

.quote {
    background: white;
    padding: 2.5rem;
    border-left: 6px solid #D4A373;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    margin: 3rem 0;
    text-align: left;
    color: #3E5C76;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

.quote strong {
    color: #3E5C76;
}

/* Buttons */
.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn {
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #3E5C76;
    color: white;
}

.btn-primary:hover {
    background-color: #1A2F4B;
}

.btn-secondary {
    border: 2px solid #D4A373;
    color: #1A2F4B;
}

.btn-secondary:hover {
    background-color: #D4A373;
    color: white;
}

/* Service Page */
.page-title { margin-bottom: 4rem; }

.service-section {
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.service-section:last-of-type { border-bottom: none; }

.bullet-list {
    list-style: none;
    margin: 1.5rem 0 1.5rem 2rem;
}

.bullet-list li {
    margin-bottom: 0.8rem;
    position: relative;
}

.bullet-list li::before {
    content: "•";
    color: #D4A373;
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

.final-cta {
    background: #3E5C76;
    color: white;
    padding: 4rem;
    text-align: center;
    border-radius: 20px;
    margin-top: 4rem;
}

.final-cta p {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-card {
    background: white;
    padding: 3rem 2rem; /* Iets minder padding */
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.03);
    text-align: center;
}

.contact-intro { font-style: italic; margin-bottom: 3rem; color: #5E5E5E; }

.contact-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem; /* Minder gap */
    margin-bottom: 3rem;
    max-width: 700px; /* Beperk breedte */
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    background: #F8F5F2;
    padding: 1.5rem; /* Ongeveer 40% kleiner dan de eerdere 2.5rem */
    border-radius: 20px;
    text-decoration: none;
    transition: transform 0.3s;
    border: 1px solid transparent;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: #D4A373;
}

.contact-item .icon { font-size: 1.8rem; display: block; margin-bottom: 0.5rem; }
.contact-item .label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 2px; color: #BDC4CA; display: block; }
.contact-item .value { font-weight: 600; color: #1A2F4B; font-size: 0.95rem; word-break: break-all; }

.contact-footer { border-top: 1px solid #F0F0F0; padding-top: 2rem; font-size: 0.8rem; color: #BDC4CA; }

/* Footer */
.main-footer {
    background-color: #E9E2D8;
    padding: 3rem 1.5rem;
    text-align: center;
    margin-top: auto;
}

.footer-container p { margin: 0; font-size: 0.8rem; color: #5E5E5E; }
.footer-sub { color: #BDC4CA !important; font-style: italic; margin-top: 5px !important; }

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fadeIn {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Mobiel */
@media (max-width: 768px) {
    .nav-container { flex-direction: column; gap: 1rem; }
    .nav-links { gap: 1rem; flex-wrap: wrap; justify-content: center; }
    .contact-links { 
        grid-template-columns: 1fr; 
        width: 100%;
        max-width: 100%;
    }
    .contact-item {
        padding: 1.25rem;
    }
    h1 { font-size: 28px; }
    .home-image, .service-image { max-width: 240px; }
    .btn { padding: 0.8rem 1.2rem; font-size: 0.75rem; }
}