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

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

:root {
    --walnut: #4a1a0f;
    --walnut-deep: #321009;
    --cream: #fbf3e6;
    --cream-soft: #f5e8d4;
    --gold: #b8843f;
    --gold-light: #d9a857;
    --ink: #2b1810;
}

html {
    scroll-behavior: smooth;
}

/* ================= */
/* BODY */
/* ================= */
body {
    font-family: 'Jost', sans-serif;
    color: var(--ink);
    background: var(--cream);
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* ================= */
/* NAVBAR */
/* ================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 50px;
    background-color: var(--cream);
    border-bottom: 1px solid rgba(74, 26, 15, 0.12);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 36px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 48px;
    height: 48px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--walnut);
    letter-spacing: 1px;
}

/* MENU LINKS */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--ink);
    font-size: 0.95rem;
    letter-spacing: 0.4px;
    position: relative;
    transition: 0.3s;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 1px;
    background: var(--gold);
    transition: 0.3s;
}

.nav-menu a:hover {
    color: var(--walnut);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* BUTTON */
.btn {
    padding: 11px 26px;
    border: 1.5px solid var(--walnut);
    color: var(--walnut);
    text-decoration: none;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-radius: 2px;
    transition: 0.3s;
}

.btn:hover {
    background: var(--walnut);
    color: var(--cream);
}

/* ================= */
/* HERO SECTION */
/* ================= */
.hero-section {
    min-height: 92vh;
    background:
        radial-gradient(circle at 85% 15%, rgba(184,132,63,0.12), transparent 45%),
        var(--cream);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    background-image: url('images/logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.06;
    pointer-events: none;
}

/* CONTAINER */
.section-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* FLEX */
.hero-section .section-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding-top: 70px;
    min-height: 92vh;
    position: relative;
}

/* TEXT */
.hero-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    display: block;
}

.hero-details h1 {
    max-width: 90%;
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 22px;
    color: var(--walnut);
    font-weight: 700;
}

.hero-details p {
    max-width: 85%;
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #5a463c;
}

/* BUTTON HERO */
.order-now {
    display: inline-block;
    padding: 13px 30px;
    border: 1.5px solid var(--walnut);
    background: transparent;
    color: var(--walnut);
    cursor: pointer;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 2px;
    transition: 0.3s;
}

.order-now:hover {
    background: var(--walnut);
    color: var(--cream);
}

/* IMAGE */
.hero-image {
    position: relative;
    flex-shrink: 0;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: -16px;
    border: 1px solid var(--gold);
    border-radius: 14px;
    z-index: -1;
}

.hero-image img {
    width: 420px;
    border-radius: 10px;
    box-shadow: 0 30px 60px -20px rgba(50, 16, 9, 0.35);
}

/* ================= */
/* ABOUT SECTION */
/* ================= */
.about-us {
    width: 100%;
    background-color: #fff;
    padding: 100px 0;
}

.about-us .section-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}

.about-image {
    position: relative;
    flex-shrink: 0;
}

.about-image img {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 25px 50px -18px rgba(50, 16, 9, 0.3);
}

.about-image::before {
    content: '';
    position: absolute;
    inset: -18px;
    border: 1px dashed var(--gold);
    border-radius: 50%;
}

.about-details {
    max-width: 520px;
}

.about-details .section-title {
    text-align: left;
    padding-top: 0;
}

.about-details .section-title::after {
    margin: 14px 0;
}

.about-details p {
    line-height: 1.8;
    color: #5a463c;
    margin-bottom: 16px;
}

/* ================= */
/* SECTION TITLE */
/* ================= */
.section-title {
    text-align: center;
    padding: 60px 0 18px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--walnut);
}

/* LINE */
.section-title::after {
    content: '';
    display: block;
    background: var(--gold);
    height: 2px;
    width: 70px;
    margin: 14px auto;
    border-radius: 20px;
}

/* ================= */
/* SECTION SUBTITLE */
/* ================= */
.section-subtitle {
    text-align: center;
    max-width: 640px;
    margin: -8px auto 40px;
    padding: 0 20px;
    color: var(--cream-soft);
    font-size: 1rem;
    line-height: 1.6;
}

.about-us .section-subtitle,
.contact-us .section-subtitle {
    color: #5a463c;
}

/* ================= */
/* MENU SECTION */
/* ================= */
.menu-section {
    background-color: var(--walnut-deep);
    background-image: radial-gradient(circle at 20% 20%, rgba(217,168,87,0.08), transparent 40%);
    color: #fff;
    padding: 70px 0 110px;
}

/* GRID */
.menu-list {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

/* CARD */
.menu-item {
    width: 30%;
    min-width: 280px;
    text-align: center;
    position: relative;
    text-decoration: none;
    display: block;
}

/* IMAGE */
.menu-item img {
    width: 100%;
    height: 85%;
    object-fit: cover;
    margin-bottom: 14px;
}

/* TEXT */
.menu-item h3 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* WHITE LINE */
.menu-section .section-title::after {
    background: var(--gold-light);
}

.menu-section .section-title {
    color: #fff;
}

/* IMAGE HOVER EFFECT */
.menu-section .menu-list .menu-item img {
    cursor: zoom-in;
    transition: 0.6s ease;
    height: 100%;
}

/* ZOOM */
.menu-section .menu-list .menu-item img:hover {
    transform: scale(1.08);
}

/* HIDE OVERFLOW (IMPORTANT) */
.menu-section .menu-list .menu-item {
    overflow: hidden;
    border-radius: 6px;
    height: 320px;
    border: 1px solid rgba(217,168,87,0.25);
    transition: 0.3s;
}

.menu-section .menu-list .menu-item:hover {
    border-color: var(--gold-light);
}

/* ================= */
/* BILD-ANZAHL BADGE */
/* ================= */
.bild-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 0.78rem;
    padding: 4px 9px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
    backdrop-filter: blur(2px);
}

.bild-badge i {
    font-size: 0.75rem;
}

/* ================= */
/* CONTACT SECTION */
/* ================= */

.contact-us {
    padding: 80px 20px 100px;
    background-color: var(--cream);
}

.contact-us .section-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* LEFT SIDE */
.contact-details {
    flex: 1;
    min-width: 260px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.contact-item i {
    font-size: 18px;
    color: #fff;
    background: var(--walnut);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* RIGHT SIDE */
.contact-form {
    flex: 1;
    min-width: 280px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 20px 45px -25px rgba(50,16,9,0.25);
}

.contact-form input,
.contact-form textarea {
    padding: 12px 14px;
    border: 1px solid #e3d6c2;
    border-radius: 4px;
    outline: none;
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    transition: 0.25s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* BUTTON */
.contact-form .order-now {
    background-color: var(--walnut);
    color: #fff;
    border: none;
}

.contact-form .order-now:hover {
    opacity: 0.88;
    background-color: var(--walnut-deep);
}

/* ================= */
/* FORM STATUS MESSAGE */
/* ================= */
.form-status {
    font-size: 0.92rem;
    min-height: 20px;
}

.form-status.success {
    color: #2e7d32;
}

.form-status.error {
    color: #c62828;
}

/* ================= */
/* FOOTER */
/* ================= */
.site-footer {
    text-align: center;
    padding: 22px 20px;
    background: var(--walnut-deep);
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

/* ================= */
/* RESPONSIVE */
/* ================= */
@media (max-width: 900px) {
    .navbar {
        padding: 14px 20px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .nav-menu {
        gap: 18px;
        flex-wrap: wrap;
    }

    .hero-section .section-content {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 40px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-details h1,
    .hero-details p {
        max-width: 100%;
    }

    .hero-image img {
        width: 100%;
        max-width: 380px;
    }

    .about-us .section-content {
        flex-direction: column;
        text-align: center;
    }

    .about-details .section-title {
        text-align: center;
    }

    .menu-item {
        width: 100%;
    }
}

/* ================= */
/* PRODUKT-DETAILSEITE */
/* ================= */
.produkt-section {
    padding: 40px 20px 100px;
    min-height: 80vh;
}

.produkt-id {
    text-align: center;
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-top: -12px;
    margin-bottom: 24px;
}

.produkt-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 480px;
    height: 480px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 45px -25px rgba(50,16,9,0.3);
}

.produkt-slider img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    cursor: zoom-in;
}

.produkt-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(74, 26, 15, 0.55);
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: 0.25s;
    z-index: 2;
}

.produkt-nav:hover {
    background: var(--gold);
}

.produkt-prev { left: 12px; }
.produkt-next { right: 12px; }

.produkt-counter {
    text-align: center;
    font-size: 0.85rem;
    color: #8a6a52;
    margin-top: 14px;
}

.produkt-beschreibung {
    max-width: 480px;
    margin: 16px auto 0;
    text-align: center;
    color: #5a463c;
    line-height: 1.7;
}

.nav-right .btn i {
    margin-right: 6px;
}

/* ================= */
/* BILD-ZOOM OVERLAY */
/* ================= */
.zoom-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.zoom-overlay.active {
    display: flex;
}

.zoom-overlay img {
    max-width: 92vw;
    max-height: 92vh;
    object-fit: contain;
    border-radius: 4px;
}

.zoom-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2.6rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2001;
}

.zoom-close:hover {
    color: var(--gold-light);
}