/* ─── VARIABLES ─── */
:root {
    --orange: #e07b00;
    --orange-light: #f59500;
    --orange-dark: #c06a00;
    --black: #111111;
    --dark: #1a1a1a;
    --dark2: #222222;
    --dark3: #2e2e2e;
    --white: #ffffff;
    --off-white: #f2ede6;
    --text-muted: #999;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
}

/* ─── RESET ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    overflow-x: hidden;
    background: var(--off-white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ─── TOPBAR ─── */
.topbar {
    background: var(--dark);
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 8px 24px;
    flex-wrap: wrap;
}

.topbar__item {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
}

.topbar__icon {
    font-size: 13px;
}

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 65px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.navbar__brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar__logo {
    height: 75px;
    width: 100px;
}

.navbar__name {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.navbar__title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
}

.navbar__sub {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.navbar__links a {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.navbar__links a:hover {
    color: var(--white);
}

.btn-nav {
    padding: 7px 18px;
    border: 2px solid var(--white);
    color: var(--white) !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    letter-spacing: 1px !important;
    transition: all 0.2s !important;
}

.btn-nav:hover {
    background: var(--white);
    color: var(--orange) !important;
}

.btn-menu-mobile {
    display: none;
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    padding-top: 65px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--orange);
    overflow: hidden;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
    animation: fadeUp 0.8s ease both;
}

.hero__logo {
    width: 350px;
    height: auto;
    margin: 0 auto 16px;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    animation: float 4s ease-in-out infinite;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.hero__sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero__tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero__tags span {
    padding: 5px 14px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.95);
}

.hero__buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── BUTTONS ─── */
.btn-orange {
    display: inline-block;
    padding: 13px 32px;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.2s;
    border-radius: 2px;
}

.btn-orange:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
}

.btn-white {
    display: inline-block;
    padding: 13px 32px;
    background: var(--white);
    color: var(--orange);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.2s;
    border-radius: 2px;
}

.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    padding: 12px 32px;
    border: 2px solid var(--white);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.2s;
    border-radius: 2px;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--orange);
    transform: translateY(-2px);
}

/* ─── SHARED SECTION STYLES ─── */
.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-label.orange {
    color: var(--orange);
}

h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
}

.orange {
    color: var(--orange);
}

.white {
    color: var(--white);
}

.black {
    color: var(--black);
}

.divider-orange {
    width: 40px;
    height: 3px;
    background: var(--orange);
    margin-bottom: 28px;
}

/* ─── OVER ONS ─── */
.over-ons {
    background: var(--white);
    padding: 80px 48px;
}

.over-ons__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.over-ons__img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 380px;
}

.over-ons__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.over-ons__badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--orange);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 1;
}

.over-ons__text p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}

.over-ons__checks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin-bottom: 28px;
}

.over-ons__checks li {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

/* ─── MENU SECTION ─── */
.menu-section {
    background: var(--off-white);
    padding: 80px 48px;
}

.menu-section__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.menu-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.tab {
    padding: 10px 20px;
    border: 2px solid #ddd;
    background: var(--white);
    border-radius: 24px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    color: #555;
}

.tab:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.tab.active {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

.menu-content {
    display: block;
}

.menu-content.hidden {
    display: none;
}

.menu-note {
    font-size: 12px;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.menu-category {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--black);
    margin: 28px 0 12px;
    text-transform: uppercase;
}

.menu-grid {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    gap: 12px;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:nth-child(odd) {
    border-right: 1px solid #f0f0f0;
}

.menu-item__left {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.menu-num {
    background: var(--orange);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    width: 26px;
    height: 26px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.menu-item strong {
    font-size: 14px;
    font-weight: 600;
    display: block;
    color: var(--black);
}

.menu-item small {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
    display: block;
}

.menu-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--orange);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ─── OPENINGSTIJDEN ─── */
.openingstijden {
    background: var(--dark);
    padding: 80px 48px;
}

.openingstijden__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.openingstijden h2 {
    margin-bottom: 12px;
}

.ot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 8px;
}

.ot-card {
    border-radius: 8px;
    padding: 32px;
}

.ot-card.dark {
    background: var(--dark2);
    border: 1px solid var(--orange);
    border-top-width: 3px;
}

.ot-card.orange-card {
    background: var(--orange);
}

.ot-card__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--orange);
    margin-bottom: 20px;
}

.ot-card__label.light {
    color: rgba(255, 255, 255, 0.8);
}

.ot-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ot-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

.ot-list li:last-child {
    border-bottom: none;
}

.ot-list li.today {
    color: var(--orange);
    font-weight: 600;
}

.ot-contact {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 8px;
}

.ot-contact__item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ot-icon {
    font-size: 24px;
}

.ot-contact__item small {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    display: block;
}

.ot-contact__item strong {
    font-size: 16px;
    color: var(--white);
    display: block;
    margin-top: 2px;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--black);
    padding: 40px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-top: 3px solid var(--orange);
}

.footer__logo {
    height: 48px;
    width: auto;
}

.footer__links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer__links a {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.2s;
}

.footer__links a:hover {
    color: var(--orange);
}

.footer__copy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
        justify-content: space-between;
    }

    .navbar__brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .navbar__links {
        display: none;
    }

    .btn-menu-mobile {
        display: inline-block;
        padding: 7px 16px;
        border: 2px solid var(--white);
        color: var(--white);
        font-family: var(--font-display);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1px;
        border-radius: 2px;
        transition: all 0.2s;
        margin-left: auto;
    }

    .btn-menu-mobile:hover {
        background: var(--white);
        color: var(--orange);
    }

    .over-ons {
        padding: 56px 24px;
    }

    .over-ons__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .menu-section {
        padding: 56px 24px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-item:nth-child(odd) {
        border-right: none;
    }

    .openingstijden {
        padding: 56px 24px;
    }

    .ot-grid {
        grid-template-columns: 1fr;
    }

    .topbar {
        display: none;
    }
}