/* =========================================================
   Fish and Fire Guizhou Cuisine – Stylesheet
   Farbpalette: abgeleitet aus dem Logo (Koi in Gold/Bronze,
   Flamme in Orange/Rot) auf Weiß. Modernes, harmonisches Design.
   ========================================================= */

:root {
    /* Gold/Bronze-Töne (Koi-Fisch im Logo) */
    --color-gold-light: #F1C375;
    --color-gold: #D9A24B;
    --color-gold-deep: #9B6E37;
    --color-bronze: #7A5326;

    /* Flammen-Töne (Orange -> Rot) */
    --color-flame-orange: #E0672A;
    --color-flame-red: #C74A2C;
    --color-flame-deep: #9F4728;

    /* Neutrals */
    --color-white: #FFFFFF;
    --color-cream: #FFFBF6;
    --color-cream-alt: #FBF3E7;
    --color-text: #3A2E22;
    --color-text-soft: #6E5D4C;
    --color-border: #EFE0C8;

    /* Gradients */
    --gradient-flame: linear-gradient(135deg, var(--color-gold) 0%, var(--color-flame-orange) 55%, var(--color-flame-red) 100%);
    --gradient-gold: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);

    --font-cn: 'Noto Serif SC', 'Noto Sans SC', serif;
    --font-en: 'Playfair Display', 'Inter', serif;
    --font-body: 'Noto Sans SC', 'Inter', sans-serif;

    --shadow-soft: 0 6px 24px rgba(122, 83, 38, .10);
    --shadow-hover: 0 14px 34px rgba(122, 83, 38, .18);
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-pill: 999px;
}

* { box-sizing: border-box; }

/* Natives Fallback für Anker-Sprünge (z.B. Klick von einer anderen
   Seite auf index.php#story, bevor JS geladen ist): sorgt dafür, dass
   der sticky Header die Zielüberschrift nicht verdeckt. Das eigentliche
   sanft-schnelle Scrollen auf derselben Seite übernimmt das JS in
   nav.php mit eigener, kurzer Animation. */
html { scroll-padding-top: 70px; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-cn);
    color: var(--color-bronze);
    margin: 0 0 .5em;
    line-height: 1.35;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* =========================================================
   Bild-Platzhalter-Komponente
   ========================================================= */
.img-placeholder {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: linear-gradient(135deg, var(--color-cream-alt) 0%, #F6E9D3 100%);
    border: 1.5px dashed var(--color-gold);
    border-radius: var(--radius-md);
    color: var(--color-gold-deep);
    text-align: center;
    padding: 1rem;
}
.img-placeholder-icon { font-size: 2rem; opacity: .85; }
.img-placeholder-label { font-size: .8rem; font-weight: 600; letter-spacing: .02em; }

.ratio-16-9 { aspect-ratio: 16 / 9; }
.ratio-4-3  { aspect-ratio: 4 / 3; }
.ratio-1-1  { aspect-ratio: 1 / 1; }
.ratio-3-2  { aspect-ratio: 3 / 2; }
.ratio-9-16 { aspect-ratio: 9 / 16; }
.ratio-menu-card { aspect-ratio: 2715 / 1280; }

/* ---------- Header / Navigation ---------- */
.site-header {
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--color-border);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .7rem 1.5rem;
    gap: 1.5rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: .7rem;
    color: var(--color-bronze);
    flex-shrink: 0;
}
.logo-img { height: 46px; width: 46px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-title {
    font-family: var(--font-cn);
    font-size: 1.15rem;
    font-weight: 700;
    background: var(--gradient-flame);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.logo-sub {
    font-size: .68rem;
    letter-spacing: .18em;
    color: var(--color-text-soft);
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}
.main-nav a {
    color: var(--color-text);
    font-size: .95rem;
    font-weight: 500;
    padding: .3rem 0;
    transition: color .2s;
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--color-flame-red);
}
.main-nav a.active { font-weight: 700; }

/* Sprachumschalter - dezenter Pill/Toggle */
/* Takeaway/Reservation-Icons rechts neben Contact Us */
.nav-quick-actions {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.nav-icon-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--color-bronze);
    background: var(--color-cream-alt);
    border: 1px solid var(--color-border);
    transition: background .2s, color .2s, transform .2s;
}
.nav-icon-link .icon-svg { width: 18px; height: 18px; margin: 0; color: currentColor; }
.nav-icon-link:hover,
.nav-icon-link:focus-visible {
    background: var(--gradient-flame);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    outline: none;
}

.lang-switch {
    position: relative;
    display: inline-flex;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    padding: 2px;
    gap: 2px;
}
.lang-option {
    position: relative;
    z-index: 2;
    padding: .3rem .85rem;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .02em;
    color: var(--color-text-soft);
    border-radius: var(--radius-pill);
    transition: color .25s;
    min-width: 38px;
    text-align: center;
}
.lang-option.is-active { color: var(--color-bronze); }
.lang-glider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: calc(50% - 2px);
    height: calc(100% - 4px);
    background: var(--color-cream-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    z-index: 1;
}
.lang-glider.is-right { transform: translateX(100%); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-bronze);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 66vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(160deg, #1B120B 0%, #3A2418 45%, #7A2A1D 100%);
}
.hero::before {
    /* dezente Vignette für mehr Tiefe */
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0) 40%, rgba(0,0,0,.35) 100%);
    pointer-events: none;
}
.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2.8rem;
}
.hero-content {
    order: 2;
    flex: 1 1 420px;
    max-width: 540px;
    text-align: center;
    color: var(--color-white);
}
.hero-content h1 {
    font-size: clamp(2.2rem, 5.5vw, 3.4rem);
    color: var(--color-white);
    margin-bottom: .3em;
    text-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 1.8em;
    color: var(--color-gold-light);
    font-weight: 500;
}

/* Foto-Rahmen im chinesischen Bilderrahmen-Stil (Passepartout + Eck-Beschläge) */
.hero-image-frame {
    position: relative;
    flex: 0 0 220px;
    width: 220px;
    padding: 10px;
    background: linear-gradient(160deg, #fff 0%, var(--color-cream-alt) 100%);
    border-radius: 6px;
    box-shadow: 0 18px 40px rgba(0,0,0,.45);
    transform: rotate(var(--tilt, 0deg));
    transition: transform .3s ease;
}
.hero-image-frame:hover { transform: rotate(0deg) scale(1.03); }
.hero-image-frame--fish { order: 1; --tilt: -2.5deg; }
.hero-image-frame--bbq  { order: 3; --tilt: 2.5deg; }
.hero-image-frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 2px;
    box-shadow: inset 0 0 0 1px rgba(201,162,75,.5);
}
.hero-image-frame::before {
    content: "";
    position: absolute;
    inset: 5px;
    border: 1px solid var(--color-gold);
    border-radius: 3px;
    pointer-events: none;
}
.frame-corner { position: absolute; width: 22px; height: 22px; pointer-events: none; }
.frame-corner::before,
.frame-corner::after {
    content: "";
    position: absolute;
    background: var(--color-gold);
}
.frame-corner::before { width: 100%; height: 2px; top: 0; left: 0; }
.frame-corner::after  { width: 2px; height: 100%; top: 0; left: 0; }
.frame-corner--tl { top: -6px; left: -6px; }
.frame-corner--tr { top: -6px; right: -6px; transform: rotate(90deg); }
.frame-corner--bl { bottom: -6px; left: -6px; transform: rotate(-90deg); }
.frame-corner--br { bottom: -6px; right: -6px; transform: rotate(180deg); }

@media (max-width: 900px) {
    .hero-content { order: -1; flex-basis: 100%; }
    .hero-image-frame { flex: 0 0 150px; width: 150px; }
    .hero-inner { gap: 1.4rem; }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: .85rem 2.2rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    letter-spacing: .02em;
    transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
    background: var(--gradient-flame);
    color: #fff;
    box-shadow: 0 8px 22px rgba(199, 74, 44, .35);
}
.btn-primary:hover { box-shadow: 0 12px 30px rgba(199, 74, 44, .45); }
.btn-outline {
    border: 2px solid var(--color-gold);
    color: var(--color-flame-red);
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
}
.btn-outline:hover {
    background: var(--gradient-flame);
    color: #fff;
    border-color: transparent;
}

/* ---------- Sections ---------- */
.section { padding: 5rem 1.5rem; }
.section-inner { max-width: 1120px; margin: 0 auto; }
.section-inner.narrow { max-width: 760px; }
.alt-bg { background: var(--color-cream); }
.text-center { text-align: center; }
.section-heading {
    font-size: 2.1rem;
    text-align: center;
}
.section-heading::after {
    content: "";
    display: block;
    width: 64px;
    height: 4px;
    background: var(--gradient-flame);
    border-radius: 4px;
    margin: .7rem auto 0;
}
.section-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
    color: var(--color-text-soft);
    font-size: 1.05rem;
}

/* Großes Logo unterhalb der Story-Überschrift */
.story-logo-wrap {
    display: flex;
    justify-content: center;
    margin: 1.8rem 0 2.2rem;
}
.story-logo {
    width: 440px;
    height: 440px;
    object-fit: contain;
    filter: drop-shadow(0 10px 26px rgba(122, 83, 38, .22));
}

/* ---------- Brand Story ---------- */
.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}
.story-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 2rem 1.8rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: transform .25s, box-shadow .25s;
    position: relative;
    overflow: hidden;
}
.story-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: var(--gradient-flame);
}
.story-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.story-card h3 { font-size: 1.2rem; }
.story-card p { color: var(--color-text-soft); }

/* ---------- Signature Dishes (Menu) ---------- */
.dish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
    margin-bottom: 2.8rem;
}
.dish-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform .25s, box-shadow .25s;
}
.dish-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.dish-card-img,
.dish-card .img-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 0;
}
.dish-card-body { padding: 1.3rem 1.4rem 1.5rem; }
.dish-card h3 { font-size: 1.1rem; margin-bottom: .3em; }
.dish-card p { color: var(--color-text-soft); font-size: .92rem; margin: 0; }

/* Auswahl-Flyout für "View Full Menu" (Hover am Desktop, Tap am Mobile) */
.menu-cta-wrap { position: relative; display: inline-block; }

/* Äußeres Element: unsichtbare Hover-Zone OHNE Lücke zum Button (top:100%),
   die Distanz zur sichtbaren Karte wird über padding-top erzeugt - dadurch
   bleibt die Maus beim Runterbewegen durchgehend über einem Nachfahren von
   .menu-cta-wrap und mouseleave feuert nicht mehr vorzeitig. */
.menu-cards-picker {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s, visibility .2s;
    z-index: 40;
    width: max-content;
    max-width: min(90vw, 560px);
}
.menu-cards-picker.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
/* Inneres Element: die eigentlich sichtbare Karte (Hintergrund, Rahmen,
   Schatten, Slide-Animation) */
.menu-cards-picker-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .9rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.1rem;
    box-shadow: var(--shadow-hover);
    transform: translateY(8px);
    transition: transform .2s;
}
.menu-cards-picker.is-open .menu-cards-picker-inner {
    transform: translateY(0);
}
.menu-card-thumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    width: 150px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
}
.menu-card-thumb img,
.menu-card-thumb .img-placeholder {
    width: 100%;
    aspect-ratio: 2715 / 1280;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: transform .2s, box-shadow .2s;
}
.menu-card-thumb:hover img,
.menu-card-thumb:focus-visible img { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.menu-card-thumb .img-placeholder-icon { font-size: 1.3rem; }
.menu-card-thumb .img-placeholder-label { font-size: .68rem; }
.menu-card-thumb-label { font-size: .82rem; font-weight: 600; color: var(--color-bronze); text-align: center; }

/* Zoom-Lightbox für die vergrößerte Speisekarten-Seite */
.menu-card-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10,6,3,.92);
    z-index: 200;
}
.menu-card-lightbox[hidden] { display: none; }
.menu-card-lightbox-scroll {
    width: 100%;
    height: 100%;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    -webkit-overflow-scrolling: touch;
}
#menuCardLightboxImg {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
    cursor: zoom-in;
    transition: width .25s ease;
    /* touch-action bewusst nicht eingeschränkt, damit natives
       Pinch-Zoom auf Smartphones/Tablets zuverlässig funktioniert. */
}
#menuCardLightboxImg.is-zoomed {
    max-width: none;
    width: 2715px;
    cursor: zoom-out;
}
.menu-card-lightbox-close {
    position: fixed;
    top: 1.2rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    color: #fff;
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    z-index: 201;
    transition: background .2s;
}
.menu-card-lightbox-close:hover { background: rgba(255,255,255,.25); }

@media (max-width: 640px) {
    .menu-card-thumb { width: 42vw; max-width: 160px; }
    #menuCardLightboxImg.is-zoomed { width: 1400px; }
}

/* ---------- Locations ---------- */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.location-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform .25s, box-shadow .25s;
}
.location-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.location-card .img-placeholder { border-radius: 0; border-width: 0 0 1.5px 0; }
.location-card-body { padding: 1.2rem; }
.location-card h4 { font-size: 1rem; margin-bottom: .3em; color: var(--color-bronze); }
.location-card p { margin: 0 0 .5rem; color: var(--color-text-soft); font-size: .9rem; }
.location-hours {
    display: flex;
    align-items: flex-start;
    gap: .45rem;
}
.location-hours .icon-svg { width: 16px; height: 16px; color: var(--color-flame-orange); margin-top: .1rem; flex-shrink: 0; }
.location-map-link {
    display: inline-block;
    font-size: .85rem;
    font-weight: 700;
    color: var(--color-flame-red);
    transition: color .2s;
}
.location-map-link:hover { color: var(--color-flame-deep); }
.locations-note { text-align: center; color: #ab9a86; margin-top: 2rem; font-size: .85rem; }

/* ---------- Social Media: Video-Showcase (Startseite) ---------- */
.social-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
    max-width: 900px;
    margin: 0 auto;
}
.social-video-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s;
}
.social-video-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.social-video-header {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .9rem 1.1rem;
    font-weight: 700;
    color: var(--color-bronze);
    border-bottom: 1px solid var(--color-border);
}
.social-video-header .icon-svg { width: 20px; height: 20px; color: var(--color-flame-orange); margin: 0; }
.social-video-embed { width: 100%; background: #000; }
.social-video-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.social-video-card .img-placeholder { border-radius: 0; border-width: 0; }
.social-video-link {
    display: block;
    text-align: center;
    padding: .8rem;
    font-weight: 700;
    font-size: .9rem;
    color: var(--color-flame-red);
    border-top: 1px solid var(--color-border);
}
.social-video-link:hover { background: var(--color-cream); }

/* ---------- Blog ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
}
.blog-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.blog-card img,
.blog-card .img-placeholder { height: 190px; width: 100%; object-fit: cover; border-radius: 0; }
.blog-card-body { padding: 1.4rem; display: flex; flex-direction: column; gap: .5rem; }
.blog-card time { font-size: .78rem; color: var(--color-flame-orange); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.blog-card h3 { font-size: 1.15rem; margin: 0; }
.blog-card p { color: var(--color-text-soft); font-size: .92rem; flex-grow: 1; }
.read-more { color: var(--color-flame-red); font-weight: 700; align-self: flex-start; }

.empty-note, .error-note {
    text-align: center;
    color: #ab9a86;
    padding: 2.2rem;
    background: var(--color-cream);
    border-radius: var(--radius-md);
    border: 1px dashed var(--color-border);
}
.error-note { color: var(--color-flame-red); }

.pagination {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 2.8rem;
}
.pagination a {
    padding: .5rem 1.1rem;
    border-radius: var(--radius-pill);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    font-weight: 600;
    transition: background .2s, color .2s;
}
.pagination a.active,
.pagination a:hover {
    background: var(--gradient-flame);
    color: #fff;
    border-color: transparent;
}

/* ---------- Single blog post ---------- */
.back-link {
    display: inline-block;
    margin-bottom: 1.8rem;
    color: var(--color-flame-red);
    font-weight: 700;
}
.post-hero-img,
.post-hero-img .img-placeholder { border-radius: var(--radius-lg); margin-bottom: 1.8rem; max-height: 380px; width: 100%; object-fit: cover; }
.blog-post-full time { font-size: .85rem; color: var(--color-flame-orange); font-weight: 700; text-transform: uppercase; }
.blog-post-full h1 { font-size: 2.1rem; margin: .3rem 0 1.3rem; }
.post-content { font-size: 1.06rem; color: var(--color-text); }

/* ---------- Contact / Footer ---------- */
.site-footer {
    background: linear-gradient(160deg, #2A2018 0%, #3A2C1E 100%);
    color: #E4D5C0;
    padding: 4rem 1.5rem 1.2rem;
}
.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
}
.footer-inner-2col {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.footer-col h4 { color: var(--color-gold-light); margin-bottom: .8rem; font-family: var(--font-cn); }
.footer-col p { color: #C9B79E; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a:hover { color: var(--color-gold); }

/* Hauptadresse im Footer (NAP-Daten für lokales SEO) */
.footer-address {
    font-style: normal;
    margin-top: 1.2rem;
    padding-top: 1.1rem;
    border-top: 1px solid #4A3B2A;
}
.footer-address-name {
    font-weight: 700;
    color: #F2E4CF;
    margin: 0 0 .6rem;
}
.footer-contact-line {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    margin: 0 0 .55rem;
    color: #C9B79E;
}
.footer-contact-line a {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    color: #C9B79E;
    transition: color .2s;
}
.footer-contact-line a:hover { color: var(--color-gold); }
.icon-svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: .1rem;
    color: var(--color-gold);
}
.footer-cta-link {
    display: inline-block;
    margin-top: .5rem;
    font-weight: 700;
    font-size: .9rem;
    color: var(--color-gold-light);
    transition: color .2s;
}
.footer-cta-link:hover { color: var(--color-gold); }

/* Social-Media-Icon-Reihe im Footer (einfarbig, per DB deaktivierbar) */
.footer-social-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2.4rem 0 0;
    padding-top: 2rem;
    border-top: 1px solid #4A3B2A;
}
.footer-social-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    color: var(--color-gold-light);
    transition: background .2s, color .2s, transform .2s;
}
.footer-social-icon .icon-svg { width: 19px; height: 19px; color: currentColor; margin: 0; }
.footer-social-icon:hover,
.footer-social-icon:focus { background: var(--gradient-flame); color: #fff; transform: translateY(-3px); outline: none; }
.footer-social-icon--qr { cursor: default; }

/* Tooltip mit QR-Code / Hinweistext, erscheint nur bei Hover/Fokus */
.footer-social-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: .7rem;
    box-shadow: var(--shadow-hover);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    width: 140px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s, transform .2s;
    z-index: 30;
}
.footer-social-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--color-white);
}
.footer-social-tooltip img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
}
.footer-social-tooltip em {
    font-style: normal;
    font-size: .72rem;
    color: var(--color-text-soft);
    text-align: center;
    line-height: 1.35;
}
.footer-social-tooltip--text { width: 150px; padding: .7rem .9rem; }
.footer-social-icon--qr:hover .footer-social-tooltip,
.footer-social-icon--qr:focus .footer-social-tooltip {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Visuell versteckt, aber für Screenreader vorhanden (barrierefreie
   Formular-Labels, die zusätzlich zum Platzhaltertext existieren) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Honeypot-Feld: für Menschen unsichtbar, bleibt aber im Tab-Fluss
   entfernt (tabindex="-1") und ist per aria-hidden für Screenreader
   verborgen - nur echte Bots, die blind alle Felder ausfüllen, tappen
   hinein. */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input,
.contact-form textarea {
    padding: .85rem 1rem;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--color-border);
    background: var(--color-cream);
    color: var(--color-text);
    font-family: inherit;
    font-size: .95rem;
    transition: border-color .2s, background .2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--color-text-soft); opacity: .75; }
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: var(--color-white);
}
.contact-form button {
    background: var(--gradient-flame);
    color: #fff;
    border: none;
    padding: .9rem 1rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}
.contact-form button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(199,74,44,.4); }

.footer-bottom {
    text-align: center;
    margin-top: 2.8rem;
    padding-top: 1.3rem;
    border-top: 1px solid #4A3B2A;
    font-size: .85rem;
    color: #A3927E;
}

/* ---------- Takeaway & Reservation (Kontaktseite) ---------- */
.quick-action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
    max-width: 900px;
    margin: 0 auto;
}
.quick-action-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    text-align: center;
    scroll-margin-top: 100px;
}
.quick-action-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-flame);
    color: #fff;
}
.quick-action-icon .icon-svg { width: 26px; height: 26px; color: #fff; margin: 0; }
.quick-action-card h3 { font-size: 1.25rem; margin-bottom: .4em; }
.quick-action-card > p { color: var(--color-text-soft); font-size: .92rem; margin-bottom: 1.3rem; }
.quick-action-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .7rem;
    margin-bottom: .7rem;
    border-radius: var(--radius-md);
    background: var(--color-cream);
    color: var(--color-text);
    font-weight: 600;
    transition: background .2s;
}
.quick-action-line .icon-svg { color: var(--color-flame-orange); }
.quick-action-line--whatsapp .icon-svg { color: #25D366; }
.quick-action-line--whatsapp:hover { background: #E9F9EF; }
.quick-action-line:hover { background: var(--color-cream-alt); }
.quick-action-platforms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .6rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}
.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem 1rem;
    border-radius: var(--radius-pill);
    font-size: .85rem;
    font-weight: 700;
    color: #fff;
    transition: transform .2s, box-shadow .2s;
}
.platform-btn .icon-svg { width: 14px; height: 14px; color: #fff; margin: 0; }
.platform-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.platform-btn--grab    { background: #00B14F; }
.platform-btn--eatigo   { background: #FF5A36; }
.platform-btn--chope    { background: #ED1C24; }
.platform-btn--quandoo  { background: #FF6B35; }

/* ---------- Kontaktseite (contact.php) ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 2.2rem;
    align-items: start;
}
.contact-form-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}
.contact-form-intro {
    color: var(--color-text-soft);
    font-size: 1rem;
    margin: 0 0 1.5rem;
    scroll-margin-top: 100px;
}
.contact-info-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.contact-info-card .img-placeholder { border-radius: 0; border-width: 0 0 1.5px 0; }
.contact-info-body { padding: 1.6rem; }
.contact-info-body h3 { font-size: 1.2rem; margin-bottom: .9rem; }

/* Helle Variante der Kontaktzeilen (für weiße Karten, z.B. Kontaktseite) */
.info-contact-line {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    margin: 0 0 .65rem;
    color: var(--color-text-soft);
}
.info-contact-line a {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    color: var(--color-text-soft);
    transition: color .2s;
}
.info-contact-line a:hover { color: var(--color-flame-red); }
.info-contact-line .icon-svg { color: var(--color-flame-orange); }

.form-success-note {
    background: #EAF7EE;
    color: #2F7D46;
    border: 1px solid #BFE6C8;
    padding: 1rem 1.2rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

@media (max-width: 800px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        border-bottom: 1px solid var(--color-border);
        flex-direction: column;
        align-items: flex-start;
        padding: 1.2rem 1.5rem 1.6rem;
        display: none;
        gap: 1.2rem;
    }
    .main-nav.open { display: flex; }
    .main-nav ul { flex-direction: column; gap: .9rem; width: 100%; }
}
