/* ============================================================
   VET LEKKER – Main Stylesheet
   Colors: Yellow #FFD40D | Red #F3274C | BG Light #F5F8FD
   Fonts: Fredoka One (headings), Epilogue (body)
   ============================================================ */

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

:root {
    --yellow: #ffd40d;
    --red: #f3274c;
    --black: #111111;
    --gray: #555555;
    --bg-light: #f5f8fd;
    --white: #ffffff;
    --radius: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Epilogue", sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Fredoka One", sans-serif;
    line-height: 1.15;
}

a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    color: var(--red);
}

img {
    display: block;
    max-width: 100%;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    font-family: "Fredoka One", sans-serif;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition:
        opacity 0.2s,
        transform 0.15s;
    text-align: center;
}

.btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.btn--red {
    background: var(--red);
    color: var(--white);
}

.btn--red:hover {
    color: var(--white);
}

.btn--large {
    font-size: 1.05rem;
    padding: 16px 40px;
}

.btn--outline {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn--outline:hover {
    background: var(--black);
    color: var(--white);
    opacity: 1;
}

/* ============================================================
   HEADER
   ============================================================ */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition:
        background 0.3s,
        box-shadow 0.3s,
        padding 0.3s;
    padding: 12px 0;
}

.header--transparent {
    background: transparent;
}

.header--sticky {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
}

.header__inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header__logo {
    flex-shrink: 0;
}
.header__logo img {
    height: 80px;
    width: auto;
}

.header__nav {
    margin-left: auto;
}

.header__nav ul {
    display: flex;
    gap: 36px;
    align-items: center;
}

.header__nav a {
    font-family: "Fredoka One", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--black);
    transition: color 0.2s;
}

.header__nav a:hover {
    color: var(--red);
}

.header__reserveer {
    margin-left: 24px;
}

.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}

.header__hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all 0.3s;
}

.header__hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
}
.header__hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.header__mobile-nav {
    display: none;
    background: var(--white);
    padding: 16px 24px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.header__mobile-nav.is-open {
    display: block;
}

.header__mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.header__mobile-nav a {
    font-family: "Fredoka One", sans-serif;
    font-size: 1.1rem;
    color: var(--black);
}

/* ============================================================
   FORMS
   ============================================================ */
.form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.form__field input,
.form__field select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #dde3ef;
    border-radius: 10px;
    font-family: "Epilogue", sans-serif;
    font-size: 0.95rem;
    background: var(--white);
    color: var(--black);
    outline: none;
    transition: border-color 0.2s;
    appearance: auto;
}

.form__field input:focus,
.form__field select:focus {
    border-color: var(--yellow);
}

.alert {
    margin-top: 16px;
    padding: 14px 20px;
    border-radius: 10px;
    font-family: "Epilogue", sans-serif;
}

.alert--success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.alert--error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 80px;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(245, 248, 253, 0.55);
}

.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 8px;
}

.hero__title--highlight {
    display: inline-block;
    background: var(--yellow);
    padding: 0 12px;
    border-radius: 8px;
    font-family: "Fredoka One", sans-serif;
}

.hero__title--black {
    display: block;
    color: var(--black);
    font-family: "Fredoka One", sans-serif;
}

.hero__subtitle {
    font-family: "Fredoka One", sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--gray);
    text-transform: uppercase;
    margin: 12px 0 16px;
}

.hero__intro {
    font-size: 1.1rem;
    color: var(--black);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__right {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.hero__badge {
    background: var(--white);
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow);
    font-family: "Fredoka One", sans-serif;
    font-size: 0.9rem;
    align-self: flex-end;
}

.hero__badge svg {
    fill: var(--yellow);
    flex-shrink: 0;
}

.hero__images {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

.hero__img img {
    border-radius: 120px 120px 120px 120px;
    object-fit: cover;
    width: 220px;
    height: 380px;
    box-shadow: var(--shadow);
}

/* ============================================================
   LOCATIE SECTION
   ============================================================ */
.locatie {
    padding: 90px 0;
    background: var(--white);
}

.locatie__inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.locatie__img-left img {
    border-radius: 120px;
    width: 100%;
    height: 420px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.locatie__title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    margin-bottom: 20px;
    color: var(--black);
}

.locatie__text p {
    color: var(--gray);
    margin-bottom: 12px;
}

.locatie__text a {
    color: var(--black);
    text-decoration: underline;
    font-family: "Fredoka One", sans-serif;
    font-size: 1.1rem;
}

.locatie__text a:hover {
    color: var(--red);
}

.locatie__contact-label {
    margin-top: 20px !important;
    color: var(--black) !important;
}

.locatie__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.locatie__img-right-top img {
    border-radius: 120px;
    width: 240px;
    height: 240px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.locatie__badge-circle img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
}

/* ============================================================
   MENU'S SECTION
   ============================================================ */
.menus {
    background: var(--bg-light);
    padding: 80px 0 100px;
}

.menus__header {
    text-align: center;
    margin-bottom: 48px;
}

.menus__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--black);
    margin-bottom: 16px;
}

.menus__divider {
    width: 80px;
    height: 4px;
    background: var(--yellow);
    margin: 0 auto;
    border-radius: 2px;
}

.menus__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition:
        transform 0.25s,
        box-shadow 0.25s;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.menu-card--featured {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

.menu-card--featured:hover {
    transform: translateY(-16px);
}

.menu-card__inner {
    padding: 32px 28px;
}

.menu-card__title {
    font-size: 1.4rem;
    color: var(--black);
    margin-bottom: 8px;
}

.menu-card__divider {
    width: 50px;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
    margin-bottom: 16px;
}

.menu-card__price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
}

.menu-card__label {
    font-family: "Fredoka One", sans-serif;
    font-size: 0.95rem;
}

.menu-card__price {
    color: var(--red);
    font-family: "Fredoka One", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.menu-card__min {
    font-size: 0.82rem;
    color: var(--gray);
    margin-bottom: 14px;
}

.menu-card__inner hr {
    border: none;
    border-top: 1px solid #e8edf5;
    margin: 12px 0;
}

.menu-card__inner h4 {
    font-family: "Fredoka One", sans-serif;
    font-size: 0.95rem;
    margin: 10px 0 4px;
}

.menu-card__list {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.8;
}

/* ============================================================
   OVER ONS SECTION
   ============================================================ */
.over-ons {
    padding: 80px 0 100px;
    background: var(--white);
}

.over-ons__box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 5px solid var(--yellow);
    border-radius: 32px;
    overflow: hidden;
}

.over-ons__photos {
    background: var(--bg-light);
    padding: 20px;
}

.over-ons__photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.over-ons__photo-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.over-ons__text {
    padding: 48px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.over-ons__text h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 20px;
    color: var(--black);
}

.over-ons__text p {
    color: var(--gray);
    margin-bottom: 14px;
    font-size: 1rem;
    line-height: 1.7;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
    padding: 80px 0 100px;
    background: var(--white);
}

.contact__header {
    margin-bottom: 48px;
}

.contact__sup {
    font-family: "Fredoka One", sans-serif;
    font-size: 0.82rem;
    letter-spacing: 2px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.contact__title {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    color: var(--black);
    line-height: 1.2;
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact__icon {
    width: 48px;
    height: 48px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--black);
}

.contact__info-label {
    display: block;
    font-family: "Fredoka One", sans-serif;
    color: var(--red);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.contact__info-item a {
    color: var(--black);
    font-size: 1rem;
}

.contact__info-item a:hover {
    color: var(--red);
    text-decoration: underline;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--bg-light);
    position: relative;
}

.footer__inner {
    padding: 80px 0 0;
}

.footer__columns {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer__logo-box {
    background: var(--red);
    border-radius: var(--radius);
    padding: 28px 24px;
    color: var(--white);
}

.footer__logo-box img {
    height: 80px;
    width: auto;
    margin-bottom: 16px;
}

.footer__logo-box p {
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer__stars {
    width: 120px;
    height: auto;
    margin-bottom: 6px;
}

.footer__heading {
    font-family: "Fredoka One", sans-serif;
    font-size: 1.05rem;
    color: var(--black);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 3px solid var(--yellow);
    display: inline-block;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__list a {
    font-size: 0.9rem;
    color: var(--black);
    transition: color 0.2s;
}

.footer__list a:hover {
    color: var(--red);
}

.footer__list i {
    color: var(--black);
    font-size: 0.7rem;
    margin-right: 6px;
}

.footer__bottom {
    border-top: 4px solid var(--yellow);
    margin-top: 60px;
    padding: 20px 0;
}

.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom-inner span {
    font-size: 0.85rem;
    color: var(--red);
    font-family: "Fredoka One", sans-serif;
}

.footer__social {
    display: flex;
    gap: 24px;
}

.footer__social a {
    font-size: 0.9rem;
    font-family: "Fredoka One", sans-serif;
    color: var(--black);
    text-decoration: underline;
}

.footer__social a:hover {
    color: var(--red);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .menus__cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .menu-card--featured {
        transform: none;
    }

    .locatie__inner {
        grid-template-columns: 1fr 1fr;
    }
    .locatie__img-left {
        display: none;
    }

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

@media (max-width: 768px) {
    .header__nav {
        display: none;
    }
    .header__reserveer {
        display: none;
    }
    .header__hamburger {
        display: flex;
    }

    .hero__inner {
        grid-template-columns: 1fr;
    }
    .hero__right {
        display: none;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

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

    .locatie__inner {
        grid-template-columns: 1fr;
    }
    .locatie__img-left {
        display: block;
    }
    .locatie__right {
        flex-direction: row;
        justify-content: center;
    }

    .over-ons__box {
        grid-template-columns: 1fr;
    }
    .over-ons__text {
        padding: 32px 24px;
    }

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

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

    .footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }
    .contact__title {
        font-size: 1.6rem;
    }
    .over-ons__photo-grid {
        grid-template-columns: 1fr;
    }
    .over-ons__photo-grid img {
        height: 160px;
    }
}
