/* ============================
   VARIABELEN & BASIS
   ============================ */
:root {
    --groen:        #2E5827;
    --groen-mid:    #4A8C40;
    --groen-licht:  #D6ECD2;
    --beige:        #F5F0E8;
    --wit:          #ffffff;
    --tekst:        #1A1A1A;
    --tekst-zacht:  #555;
    --goud:         #8B6914;
    --nav-hoogte:   64px;
    --radius:       12px;
    --schaduw:      0 4px 24px rgba(0,0,0,0.10);
    --font-serif:   'Playfair Display', Georgia, serif;
    --font-sans:    'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--tekst);
    background: var(--wit);
    line-height: 1.6;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
ul { list-style: none; }

/* ============================
   NAVIGATIE
   ============================ */
#nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    height: var(--nav-hoogte);
    transition: box-shadow 0.2s;
}
#nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.10); }

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--groen);
    text-decoration: none;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--tekst);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
}
.nav-link:hover { background: var(--groen-licht); color: var(--groen); }

.nav-cta {
    background: var(--groen);
    color: var(--wit) !important;
    border-radius: 6px;
    padding: 7px 14px;
}
.nav-cta:hover { background: var(--groen-mid) !important; }
.nav-cta--paella { background: var(--goud) !important; }
.nav-cta--paella:hover { background: #a07a1a !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--tekst);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================
   HERO
   ============================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-hoogte) + 40px) 24px 80px;
    overflow: hidden;
    background: var(--groen);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, #1a3a14 0%, #2E5827 40%, #4A8C40 100%);
    z-index: 0;
}

/* Decoratief gras-patroon onderaan */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: var(--beige);
    clip-path: ellipse(55% 100% at 50% 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.hero-logo {
    width: min(360px, 82vw);
    margin: 0 auto 28px;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.35));
}

.hero-concept {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 3vw, 1.7rem);
    font-style: italic;
    color: rgba(255,255,255,0.92);
    line-height: 1.4;
    margin-bottom: 14px;
}

.hero-tagline {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-location {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.5);
    font-size: 1.4rem;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================
   KNOPPEN
   ============================ */
.btn {
    display: inline-block;
    padding: 13px 26px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
    cursor: pointer;
    border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.btn--primary {
    background: var(--wit);
    color: var(--groen);
}
.btn--primary:hover { background: var(--groen-licht); }
.btn--outline {
    background: transparent;
    color: var(--wit);
    border-color: rgba(255,255,255,0.6);
}
.btn--outline:hover { background: rgba(255,255,255,0.15); }
.btn--green {
    background: var(--groen);
    color: var(--wit);
}
.btn--green:hover { background: var(--groen-mid); }

/* ============================
   SECTIES ALGEMEEN
   ============================ */
.section { padding: 80px 24px; }
.section--beige { background: var(--beige); }
.section--white { background: var(--wit); }
.section--green { background: var(--groen-licht); }

.container {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--groen);
    text-align: center;
    margin-bottom: 12px;
}

.section-sub {
    text-align: center;
    color: var(--tekst-zacht);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1rem;
    line-height: 1.7;
}

.img-rounded {
    border-radius: var(--radius);
    box-shadow: var(--schaduw);
    width: 100%;
    object-fit: cover;
    max-height: 400px;
}

/* ============================
   OVER ONS
   ============================ */
.over-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 40px;
}

.over-text p {
    color: var(--tekst-zacht);
    margin-bottom: 20px;
    font-size: 1.025rem;
    line-height: 1.75;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--wit);
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.info-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-card div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.info-card strong {
    font-size: 1rem;
    color: var(--groen);
}
.info-card span {
    font-size: 0.9rem;
    color: var(--tekst-zacht);
}
.info-detail {
    font-size: 0.82rem !important;
    color: #888 !important;
}

/* ============================
   MENU TABS
   ============================ */
.menu-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
    margin: 36px 0 0;
    border-bottom: 2px solid var(--groen-licht);
    padding-bottom: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }

.tab-btn {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    padding: 10px 18px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--tekst-zacht);
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
    border-radius: 6px 6px 0 0;
}
.tab-btn:hover { color: var(--groen); }
.tab-btn.active {
    color: var(--groen);
    border-bottom-color: var(--groen);
    font-weight: 600;
}

.tab-pane {
    display: none;
    padding-top: 32px;
    animation: fadeIn 0.2s ease;
}
.tab-pane.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.menu-intro {
    text-align: center;
    color: var(--tekst-zacht);
    font-style: italic;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

/* ============================
   MENU ITEMS
   ============================ */
.menu-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-width: 680px;
    margin: 0 auto;
}

.menu-item {
    padding: 16px 20px;
    border-radius: 8px;
    transition: background 0.15s;
}
.menu-item:hover { background: var(--beige); }

.menu-item--highlight {
    background: var(--groen-licht);
    border-left: 3px solid var(--groen);
}
.menu-item--highlight:hover { background: #c8e4c3; }

.menu-item--large .menu-item-name { font-size: 1.15rem; }

.menu-item-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 4px;
}

.menu-item-name {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--tekst);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.menu-item-name em {
    font-style: italic;
    color: var(--goud);
    font-size: 0.9em;
}

.menu-item-price {
    font-weight: 600;
    color: var(--groen);
    white-space: nowrap;
    font-size: 0.95rem;
}

.menu-item-desc {
    font-size: 0.88rem;
    color: var(--tekst-zacht);
    line-height: 1.5;
}
.menu-item-desc a { color: var(--groen); }

.badge {
    display: inline-block;
    background: #e8f5e9;
    color: var(--groen);
    font-size: 0.7rem;
    font-family: var(--font-sans);
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ============================
   DRANKEN GRID
   ============================ */
.dranken-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    padding-top: 8px;
}

.dranken-cat h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--groen);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prijs-badge {
    display: inline-block;
    background: var(--groen-licht);
    color: var(--groen);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
}

.dranken-cat ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dranken-cat li {
    font-size: 0.9rem;
    color: var(--tekst);
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

.dranken-cat li em {
    font-style: normal;
    font-size: 0.82rem;
    color: var(--tekst-zacht);
}

/* ============================
   FOTO STRIP
   ============================ */
.foto-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 280px;
    overflow: hidden;
}

.foto-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.foto-strip img:hover { transform: scale(1.04); }

/* ============================
   FORMULIEREN
   ============================ */
.form-wrapper {
    margin-top: 32px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--schaduw);
}

.form-placeholder {
    background: var(--wit);
    border: 2px dashed var(--groen-licht);
    border-radius: var(--radius);
    padding: 60px 24px;
    text-align: center;
}

.form-placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.form-placeholder-icon {
    font-size: 3rem;
    margin-bottom: 8px;
}

.form-placeholder h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--groen);
}

.form-placeholder p {
    color: var(--tekst-zacht);
    font-size: 0.95rem;
}

.mailto-link {
    display: inline-block;
    background: var(--groen);
    color: var(--wit);
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 8px;
    transition: background 0.15s;
}
.mailto-link:hover { background: var(--groen-mid); }

/* ============================
   FOOTER
   ============================ */
.footer {
    background: var(--groen);
    color: rgba(255,255,255,0.85);
    padding: 60px 24px 40px;
    text-align: center;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    width: 160px;
    margin: 0 auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-adres {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.03em;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.15s;
}
.footer-links a:hover { color: var(--wit); }

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-top: 8px;
}

/* ============================
   RESPONSIVE — TABLET
   ============================ */
@media (max-width: 780px) {
    .over-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .over-img { order: -1; }
    .over-img img { max-height: 260px; }

    .foto-strip { height: 180px; }

    .dranken-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================
   RESPONSIVE — MOBIEL
   ============================ */
@media (max-width: 540px) {
    .section { padding: 60px 16px; }

    .nav-toggle { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-hoogte);
        left: 0; right: 0;
        background: var(--wit);
        flex-direction: column;
        align-items: stretch;
        padding: 12px 16px 20px;
        border-bottom: 1px solid rgba(0,0,0,0.08);
        box-shadow: 0 8px 24px rgba(0,0,0,0.10);
        gap: 4px;
    }
    .nav-links.open { display: flex; }
    .nav-link { padding: 10px 14px; }

    .hero-btns { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 280px; text-align: center; }

    .tab-btn { padding: 8px 12px; font-size: 0.82rem; white-space: nowrap; }

    .foto-strip {
        grid-template-columns: 1fr;
        height: auto;
    }
    .foto-strip img { height: 200px; }
    .foto-strip img:nth-child(2),
    .foto-strip img:nth-child(3) { display: none; }

    .dranken-grid { grid-template-columns: 1fr; }

    .info-cards { gap: 10px; }
}
