/* --- 1. Variabelen & Reset --- */
:root {
    --color-cream: #F6F1E8;
    --color-espresso: #2A1F1B;
    --color-terracotta: #C96A4A;
    --color-terracotta-dark: #b05a3c;
    --color-sage: #7C907A;
    --color-sage-light: #E8EDE8; /* Nieuwe lichte kleur voor favorieten */
    --color-charcoal: #1F1F1F;
    --color-border: #E6DED3;
    --color-white: #FFFFFF;
    --color-water: #D4E3E8; /* Voor de kaart */

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --radius-md: 8px;
    --radius-xl: 24px;
    --shadow-soft: 0px 4px 20px rgba(42, 31, 27, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--color-cream);
    color: var(--color-charcoal);
    font-family: var(--font-body);
    line-height: 1.6;
    font-size: 16px;
}

/* --- 2. Typografie --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-espresso);
    line-height: 1.2;
    margin-top: 0; /* Belangrijk voor uitlijning! */
}
h1 { font-size: 3rem; margin-bottom: 1rem; }
h2 { font-size: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; color: #4a4a4a; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* --- 3. Layout Utilities --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.text-center { text-align: center; }
.bg-white { background-color: var(--color-white); }
.bg-sage { background-color: var(--color-sage); color: white; }
.bg-sage-light { background-color: var(--color-sage-light); }
.mb-large { margin-bottom: 3rem; }
.mt-large { margin-top: 3rem; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* Belangrijk voor jouw feedback: Uitlijning aan de bovenkant */
.align-start { align-items: start; } 

/* --- 4. Componenten --- */
.btn {
    display: inline-block; padding: 12px 28px; border-radius: 50px;
    font-weight: 600; cursor: pointer; border: 2px solid transparent;
}
.btn-primary { background-color: var(--color-terracotta); color: white; }
.btn-primary:hover { background-color: var(--color-terracotta-dark); }
.btn-outline { border-color: var(--color-espresso); color: var(--color-espresso); }
.btn-outline:hover { background-color: var(--color-espresso); color: white; }

/* --- 5. Header --- */
header {
    background-color: var(--color-cream); padding: 20px 0;
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid var(--color-border);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem; }
.desktop-nav a { margin-left: 25px; font-weight: 500; font-size: 0.95rem; }
.desktop-nav a:hover { color: var(--color-terracotta); }
.hamburger { display: none; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 25px; height: 3px; background: var(--color-espresso); margin: 5px 0; transition: 0.3s; }

/* Mobile Nav */
.mobile-nav {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--color-cream);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transform: translateX(100%); transition: transform 0.3s ease-in-out; z-index: 999;
}
.mobile-nav.active { transform: translateX(0); }
.mobile-link { font-size: 2rem; margin: 15px 0; font-family: var(--font-heading); }

/* --- 6. Sections --- */
/* Hero */
.hero { padding: 60px 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.tagline { color: var(--color-sage); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; display: block; margin-bottom: 10px; }
.subhead { font-size: 1.1rem; margin-bottom: 2rem; max-width: 450px; }
.hero-image img { width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow-soft); }
.cta-group { display: flex; gap: 15px; }

/* USP's (Nieuw) */
.usp-row { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); /* Forceer 3 gelijke kolommen */
    gap: 30px; 
    text-align: center; 
    align-items: start; /* Zorgt dat tekst bovenin begint */
}
.usp-item .icon { font-size: 2.5rem; margin-bottom: 15px; }

/* Menu */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 40px; }
.menu-category h3 { border-bottom: 2px solid var(--color-terracotta); display: inline-block; margin-bottom: 20px; padding-bottom: 5px; }
.menu-list { list-style: none; }
.menu-list li { display: flex; justify-content: space-between; margin-bottom: 12px; font-weight: 500; border-bottom: 1px dotted #ddd; padding-bottom: 5px; }

/* Favorites Cards */
.card {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform 0.3s;
    height: 100%; /* Zorgt dat kaarten even hoog zijn */
}
.card:hover { transform: translateY(-5px); }

/* Testimonial */
.testimonial blockquote { font-family: var(--font-heading); font-size: 1.5rem; text-align: center; max-width: 800px; margin: 0 auto; }
.testimonial cite { display: block; font-family: var(--font-body); font-size: 1rem; margin-top: 20px; font-style: normal; opacity: 0.8; }

/* About */
.about-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-xl); }
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.tag { background: #e8e0d5; padding: 5px 15px; border-radius: 20px; font-size: 0.85rem; color: var(--color-espresso); }

/* --- LOCATIE & CUSTOM MAP (Nieuw) --- */
.hours-block { background: #fff; padding: 20px; border-radius: var(--radius-md); margin: 20px 0; border: 1px solid var(--color-border); }
.hours-block ul { list-style: none; }
.hours-block li { display: flex; justify-content: space-between; margin-bottom: 5px; }

.map-visual {
    width: 100%;
    height: 400px; /* Vaste hoogte */
    background-color: #E6EAEB; /* Land kleur */
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.05);
}

/* De Piushaven (water) */
.map-water {
    position: absolute;
    bottom: 20px; right: 0; left: 20%;
    height: 80px;
    background-color: var(--color-water);
    border-radius: 100px 0 0 100px;
}

/* De Havenstraat (weg) */
.map-road {
    position: absolute;
    top: 50%; left: 0; width: 100%;
    height: 15px;
    background-color: #fff;
    transform: translateY(-50%);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* De Pin */
.map-pin-container {
    position: absolute;
    top: 50%; left: 45%;
    transform: translate(-50%, -100%); /* Zet punt van pin op de weg */
    display: flex; flex-direction: column; align-items: center;
}

.pin {
    width: 30px; height: 30px;
    background-color: var(--color-terracotta);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}
.pin::after {
    content: ''; width: 10px; height: 10px; background: white;
    border-radius: 50%; position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.pin-label {
    background: white; padding: 4px 10px; border-radius: 4px;
    font-size: 0.8rem; font-weight: 700; margin-top: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    white-space: nowrap; z-index: 3;
}
.pulse {
    width: 10px; height: 10px; background: rgba(201, 106, 74, 0.5);
    border-radius: 50%; position: absolute; top: 25px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

/* --- Contact Form --- */
.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 500; }
.form-group input, .form-group textarea {
    width: 100%; padding: 12px; border: 1px solid #ccc;
    border-radius: var(--radius-md); font-family: inherit;
    background: #f9f9f9;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none; border-color: var(--color-terracotta); background: white;
}
.accordion details { margin-bottom: 10px; border-bottom: 1px solid var(--color-border); padding-bottom: 10px; }
.accordion summary { cursor: pointer; font-weight: 600; list-style: none; }
.accordion summary:hover { color: var(--color-terracotta); }

/* Footer */
footer { background: var(--color-espresso); color: var(--color-cream); padding: 40px 0; font-size: 0.9rem; }
.footer-content { display: flex; justify-content: space-between; }

/* Mobile */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .grid-2, .grid-3, .hero-grid, .usp-row { grid-template-columns: 1fr; display: grid; }
    .hero-grid { display: flex; flex-direction: column-reverse; }
    .desktop-nav { display: none; }
    .hamburger { display: block; z-index: 1001; }
    .usp-item { margin-bottom: 30px; }
    .usp-row { gap: 10px; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
}

/* Animatie */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }