/*
Theme Name: Jaffna Curry Bowl
Theme URI: https://www.jaffnacurrybowl.ch
Author: Jaffna Curry Bowl
Description: Custom Theme für den Jaffna Curry Bowl Foodtruck
Version: 3.0
*/

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
    --color-black:      #0d0d0d;
    --color-dark:       #161616;
    --color-red:        #c0392b;
    --color-red-hover:  #e74c3c;
    --color-white:      #ffffff;
    --color-grey:       #888888;
    --color-grey-light: #cccccc;
    --color-border:     rgba(255, 255, 255, 0.08);

    --font-main: 'Poppins', sans-serif;
    --nav-height: 88px;
    --transition: all 0.3s ease;
    --ease-out: cubic-bezier(0.16, 0.84, 0.44, 1);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1 !important; transform: none !important; }
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-padding { padding: 96px 0; }

/* =============================================
   TYPOGRAFIE
   ============================================= */
h1, h2, h3, h4 {
    font-family: var(--font-main);
    font-weight: 900;
    line-height: 1.1;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-title span { color: var(--color-red); }

.section-subtitle {
    color: var(--color-grey);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 56px;
}

p.lead {
    color: var(--color-white) !important;
    font-size: 1.2rem !important;
    font-weight: 300 !important;
    line-height: 1.7 !important;
    margin-bottom: 24px !important;
}

p.signature {
    color: var(--color-red) !important;
    font-weight: 700 !important;
    font-style: italic;
    margin-bottom: 32px !important;
}

/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(13, 13, 13, 0.96);
    backdrop-filter: blur(16px);
    border-bottom-color: var(--color-border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 40px;
}

.site-logo {
    /* Bleibt über dem mobilen Vollbild-Menü (z-index 999) sichtbar */
    position: relative;
    z-index: 1001;
}

.site-logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: height 0.4s var(--ease-out);
}

.site-header.scrolled .logo-img { height: 54px; }

.nav-menu-wrap { position: relative; }

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

.nav-menu a {
    position: relative;
    display: inline-block;
    padding: 6px 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-grey-light);
    transition: color 0.2s ease, transform 0.3s var(--ease-out);
}

.nav-menu a:hover { color: var(--color-white); transform: translateY(-1px); }
.nav-menu a.active { color: var(--color-red); }

.nav-indicator {
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--color-red), var(--color-red-hover));
    box-shadow: 0 0 12px rgba(192, 57, 43, 0.7);
    border-radius: 2px;
    opacity: 0;
    transition: transform 0.4s var(--ease-out), width 0.4s var(--ease-out), opacity 0.25s ease;
    pointer-events: none;
}

.nav-indicator.is-active { opacity: 1; }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: 1px solid transparent;
    border-radius: 10px;
    width: 44px;
    height: 44px;
    padding: 10px;
    /* Muss über dem mobilen Vollbild-Menü (z-index 999) liegen,
       sonst verdeckt das offene Menü den Schliessen-Button */
    position: relative;
    z-index: 1001;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.nav-toggle.open {
    border-color: var(--color-border);
    background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

.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 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('images/hero-bg.jpg') center center / cover no-repeat;
    filter: brightness(0.35);
    transform: scale(1.04);
    transition: transform 8s ease;
}

.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13, 13, 13, 0.15) 0%,
        rgba(13, 13, 13, 0.55) 70%,
        rgba(13, 13, 13, 0.9) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 24px;
    max-width: 900px;
}

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

.hero-subtitle,
.hero-buttons {
    animation: heroEnter 0.9s var(--ease-out) both;
}

.hero-subtitle { animation-delay: 0.28s; }
.hero-buttons  { animation-delay: 0.42s; }

.hero-logo-img {
    display: block;
    margin: 0 auto 32px;
    width: clamp(220px, 32vw, 460px);
    height: auto;
}

/* Wird von JS übernommen: die "schwebende" Kopie animiert sich beim Scrollen
   zur Nav-Logo-Position. Das Original bleibt an seinem Platz, aber unsichtbar,
   damit der Hero-Bereich seine Höhe/Ausrichtung behält. */
.hero-logo-float {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    pointer-events: none;
    display: block;
}

.site-header.has-hero-logo .logo-img { opacity: 0; }
.site-header.has-hero-logo.logo-docked .logo-img { opacity: 1; }
.site-header.has-hero-logo:not(.logo-docked) .site-logo a { pointer-events: none; }

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--color-grey-light);
    max-width: 520px;
    margin: 0 auto 44px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: var(--font-main);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--color-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(192, 57, 43, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.35);
}

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

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 1px;
    height: 36px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
}

.hero-scroll::after {
    content: '';
    position: absolute;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--color-red) 50%, transparent);
    animation: scrollTrace 2.4s ease-in-out infinite;
}

@keyframes scrollTrace {
    0%   { top: -100%; }
    100% { top: 100%; }
}


/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-group.is-visible > * {
    opacity: 1;
    transform: translateY(0);
}

.reveal-group > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal-group > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-group > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-group > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-group > *:nth-child(4) { transition-delay: 0.35s; }

/* =============================================
   ABOUT INTRO
   ============================================= */
.about-intro { padding: 100px 0; }

.about-intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrap { position: relative; }

.about-image-wrap img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.about-text { position: relative; }

.about-text .section-title {
    position: relative;
    z-index: 1;
    text-align: left;
}

.ghost-number {
    position: absolute;
    top: -34px;
    left: -6px;
    z-index: 0;
    font-size: clamp(4.5rem, 11vw, 8rem);
    font-weight: 900;
    line-height: 1;
    color: rgba(192, 57, 43, 0.08);
    user-select: none;
    pointer-events: none;
}

/* Scroll-gebundene Bewegung: die beiden Titelzeilen gleiten beim Scrollen
   aufeinander zu ("trifft"), der Teller dreht sich, die Jahreszahl schwebt
   mit Parallax dahinter. Die Transforms setzt js/main.js pro Frame. */
.meet-line {
    display: inline-block;
    will-change: transform;
}

.section-title .meet-line { color: inherit; }

.about-image-wrap img,
.ghost-number { will-change: transform; }

.about-text p {
    color: var(--color-grey-light);
    margin-bottom: 20px;
    line-height: 1.9;
    font-size: 0.95rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 32px 0 12px;
}

/* Einfache Text-Variante (Startseite) ohne Flip-Karten */
.about-features--plain {
    display: flex;
    flex-wrap: wrap;
    row-gap: 18px;
    column-gap: 44px;
    margin: 32px 0 40px;
}

.about-features--plain .about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--color-white);
}

.about-features--plain .about-feature::before {
    content: '\2756';
    color: var(--color-red);
    font-size: 1.05rem;
    line-height: 1;
    flex-shrink: 0;
}

.feature-flip-hint {
    grid-column: 1 / -1;
    margin: 4px 0 28px;
    font-size: 0.8rem;
    color: var(--color-grey);
    font-style: italic;
}

.feature-flip-hint::before {
    content: '\21BB';
    margin-right: 6px;
    font-style: normal;
}

.feature-flip {
    appearance: none;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    perspective: 1000px;
    height: 160px;
    text-align: left;
    font-family: inherit;
    transition: transform 0.25s ease;
}

.feature-flip:hover { transform: translateY(-3px); }

.feature-flip-inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    transition: transform 0.6s var(--ease-out);
    transform-style: preserve-3d;
}

.feature-flip.is-flipped .feature-flip-inner { transform: rotateY(180deg); }

/* Peek-Animation: die erste Karte dreht sich periodisch halb um und
   verrät damit, dass die Karten eine Rückseite haben. Pausiert, sobald
   die Karte umgedreht oder gehovert wird; bei prefers-reduced-motion
   deaktiviert die globale Regel die Animation. */
@keyframes feature-peek {
    0%, 28%, 100% { transform: rotateY(0deg); }
    8%  { transform: rotateY(122deg); }
    12% { transform: rotateY(116deg); } /* kurz halten, damit das Rot registriert wird */
    20% { transform: rotateY(-8deg); }
}

.about-features .feature-flip:first-child:not(.is-flipped):not(:hover) .feature-flip-inner {
    animation: feature-peek 7s ease-in-out 0.5s infinite;
}

.feature-flip-front,
.feature-flip-back {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    backface-visibility: hidden;
    border-radius: 10px;
    padding: 20px 22px;
}

.feature-flip-front {
    gap: 12px;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    transition: border-color 0.25s ease, background 0.25s ease;
}

.feature-flip:hover .feature-flip-front {
    border-color: var(--color-red);
    background: rgba(192, 57, 43, 0.08);
}

.feature-flip-front::before {
    content: '\2756';
    color: var(--color-red);
    font-size: 1.05rem;
    line-height: 1;
    flex-shrink: 0;
}

.feature-flip-back {
    transform: rotateY(180deg);
    align-items: flex-start;
    background: var(--color-red);
    color: var(--color-white);
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: 500;
}

/* =============================================
   MENÜ SECTION
   ============================================= */
.menu-section {
    padding: 100px 0;
    background: var(--color-dark);
}

.menu-showcase-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 72px;
    align-items: center;
}

.menu-showcase-poster img {
    width: 100%;
    display: block;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.menu-showcase-side-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: 32px;
}

.menu-showcase-side .section-title { text-align: left; }

.menu-showcase-side p {
    color: var(--color-grey-light);
    line-height: 1.9;
    font-size: 0.95rem;
    margin-bottom: 28px;
    max-width: 420px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-white);
    border-bottom: 2px solid var(--color-red);
    padding-bottom: 5px;
}

.link-arrow span {
    display: inline-block;
    transition: transform 0.3s var(--ease-out);
}

.link-arrow:hover { color: var(--color-red); }
.link-arrow:hover span { transform: translateX(6px); }

/* =============================================
   ÖFFNUNGSZEITEN / KOMM VORBEI
   ============================================= */
.visit-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.visit-bg {
    position: absolute;
    inset: 0;
    background: url('images/visit-bg.jpg') 72% 45% / cover no-repeat;
    filter: brightness(0.12);
}

.visit-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.visit-content .section-title { text-align: left; }

.visit-content p {
    color: var(--color-grey-light);
    margin-bottom: 40px;
    line-height: 1.9;
    font-size: 0.95rem;
}

.hours-table { width: 100%; margin-bottom: 40px; }

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.9rem;
}

.hours-row:last-child { border-bottom: none; }
.hours-day  { color: var(--color-grey); font-weight: 400; }
.hours-time { font-weight: 700; display: flex; align-items: center; gap: 10px; }
.hours-time.closed { color: var(--color-grey); font-weight: 300; }
.hours-time.open   { color: var(--color-red); }

.hours-time.catering {
    color: var(--color-white);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    transition: color 0.2s ease;
}

.hours-time.catering:hover { color: var(--color-red); }

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-grey);
    flex-shrink: 0;
}

.status-dot.is-live {
    background: #2ecc71;
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.55);
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0%   { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.55); }
    70%  { box-shadow: 0 0 0 9px rgba(46, 204, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.visit-countdown {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

.visit-countdown-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-grey);
    white-space: nowrap;
}

.visit-countdown-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-red);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.5px;
}

.location-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    padding: 32px 36px;
    transition: border-color 0.4s ease, transform 0.4s var(--ease-out);
}

.location-card:hover {
    border-color: rgba(192, 57, 43, 0.4);
    transform: translateY(-4px);
}

.location-card h3 {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-red);
    margin-bottom: 14px;
}

.location-card address {
    font-style: normal;
    color: var(--color-grey-light);
    line-height: 1.9;
    font-size: 0.9rem;
}

.bus-stop-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffd400;
    color: #111111;
    padding: 12px 18px;
    margin-top: 22px;
    border-radius: 3px;
}

.bus-stop-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.bus-stop-badge span {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.3;
}

.bus-stop-note {
    margin-top: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-red);
}

.bus-stop-badge strong {
    display: block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 2px;
}

.map-placeholder {
    overflow: hidden;
    height: 420px;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(90%) contrast(90%);
    display: block;
}

/* =============================================
   CATERING SECTION
   ============================================= */
.catering-section {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.catering-bg {
    position: absolute;
    inset: 0;
    background: url('images/catering.jpg') center 35% / cover no-repeat;
}

.catering-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(13, 13, 13, 0.97) 0%,
        rgba(13, 13, 13, 0.93) 35%,
        rgba(13, 13, 13, 0.55) 65%,
        rgba(192, 57, 43, 0.45) 100%
    );
}

.catering-banner {
    position: relative;
    z-index: 1;
    max-width: 620px;
}

.catering-banner .section-title { text-align: left; }

.catering-banner p {
    color: var(--color-grey-light);
    margin-bottom: 20px;
    line-height: 1.9;
    font-size: 0.95rem;
}

.catering-features {
    margin: 28px 0 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.catering-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-grey-light);
}

.catering-feature::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-red);
    border-radius: 50%;
    flex-shrink: 0;
}

/* =============================================
   SOCIAL SECTION
   ============================================= */
.social-section {
    padding: 80px 0;
    text-align: center;
}

.social-section .section-title { margin-bottom: 8px; }

.social-section p {
    color: var(--color-grey);
    margin-bottom: 40px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.instagram-feed {
    max-width: 960px;
    margin: 56px auto 0;
}

.instagram-feed-frame {
    width: 100%;
    height: 830px;
    border: none;
    display: block;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-grey-light);
    transition: var(--transition);
}

/* Aufmerksamkeits-Nudge: kurzer Hüpfer mit leichter Drehung, danach
   lange Ruhephase. Die beiden Buttons sind zeitversetzt, damit sie
   nicht synchron springen. Bei prefers-reduced-motion greift die
   globale Regel und deaktiviert die Animation. */
@keyframes social-nudge {
    0%, 24%, 100% { transform: translateY(0) rotate(0deg); }
    6%  { transform: translateY(-7px) rotate(-3deg); }
    12% { transform: translateY(0) rotate(2.5deg); }
    18% { transform: translateY(-3px) rotate(-1.5deg); }
}

.social-link {
    animation: social-nudge 4.5s ease-in-out 2s infinite;
}

.social-link--facebook { animation-delay: 4.25s; }

.social-link:hover {
    background: var(--color-red);
    border-color: var(--color-red);
    color: var(--color-white);
    animation: none;
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

.social-link--instagram svg {
    fill: #e1306c;
}

.social-link--instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
    color: var(--color-white);
}

.social-link--instagram:hover svg { fill: var(--color-white); }

.social-link--facebook svg {
    fill: #1877f2;
}

.social-link--facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: var(--color-white);
}

.social-link--facebook:hover svg { fill: var(--color-white); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: #080808;
    padding: 64px 0 28px;
    border-top: 1px solid var(--color-border);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo-img {
    height: 72px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--color-grey);
    font-size: 0.82rem;
    line-height: 1.85;
    max-width: 240px;
}

.footer-col h4 {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-red);
    margin-bottom: 18px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li,
.footer-col ul li a {
    color: var(--color-grey);
    font-size: 0.82rem;
    line-height: 1.6;
}

.footer-col ul li a:hover { color: var(--color-white); }

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: var(--color-grey);
}

.footer-social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-social-icons a {
    color: var(--color-grey);
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.footer-social-icons a:hover { color: var(--color-white); }

.footer-social-icons svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

/* =============================================
   PAGE HERO (Unterseiten)
   ============================================= */
.page-hero {
    padding: 180px 0 96px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        105deg,
        var(--color-black) 0%,
        var(--color-dark) 45%,
        rgba(192, 57, 43, 0.4) 100%
    );
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 100% 100%, rgba(192, 57, 43, 0.45) 0%, transparent 55%);
    pointer-events: none;
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero-logo {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    max-width: 30vw;
    height: auto;
    opacity: 0.92;
    z-index: 1;
    pointer-events: none;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 14px;
    text-shadow: 4px 4px 0 rgba(255, 255, 255, 0.045);
}

.page-hero h1 span { color: var(--color-red); }

.page-hero p {
    color: var(--color-grey);
    font-size: 1rem;
    max-width: 500px;
    line-height: 1.75;
}

/* =============================================
   ÜBER UNS PAGE
   ============================================= */
.about-page-section { padding: 100px 0; }

.about-page-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-page-text p {
    color: var(--color-grey-light);
    margin-bottom: 18px;
    line-height: 1.9;
    font-size: 0.95rem;
}

.about-page-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.team-section {
    padding: 100px 0;
    background: var(--color-dark);
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2px;
    background: rgba(255, 255, 255, 0.05);
}

.founders-photo-section { padding: 0 0 60px; }

.founders-photo {
    width: 100%;
    aspect-ratio: 21 / 9;
    object-fit: cover;
    border-radius: 8px;
}

.team-card {
    background: var(--color-dark);
    padding: 48px 40px;
    transition: transform 0.4s var(--ease-out), background 0.4s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    background: #1b1b1b;
}

.team-card-name {
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.team-card-greeting {
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 6px;
}

.team-card-greeting span { color: var(--color-red); }

.team-card-role {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-red);
    display: block;
    margin-bottom: 20px;
}

.team-card-bio {
    color: var(--color-grey-light);
    font-size: 0.92rem;
    line-height: 1.9;
    margin-bottom: 16px;
}

.team-card-bio:last-child { margin-bottom: 0; }

.about-cta {
    padding: 96px 0;
    text-align: center;
}

.about-cta .section-title { margin-bottom: 20px; }

.about-cta p {
    color: var(--color-grey);
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
}

/* =============================================
   CATERING PAGE
   ============================================= */
.catering-page-section { padding: 80px 0; }

.catering-page-inner {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: start;
}

.catering-page-text p {
    color: var(--color-grey-light);
    margin-bottom: 18px;
    line-height: 1.9;
    font-size: 1.02rem;
}

.catering-page-image img {
    width: 100%;
    object-fit: cover;
    object-position: 72% 45%;
    aspect-ratio: 4 / 3;
}

.catering-steps-section {
    padding: 80px 0;
    background: var(--color-dark);
}

.catering-steps-section .section-title { text-align: center; margin-bottom: 56px; }

.steps-timeline {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}

/* Scroll-gescrubbte Route (Klasse setzt js/main.js): die rote Linie
   wächst nicht mehr einmalig per Transition, sondern folgt exakt dem
   Scroll über die Füllhöhe --route-fill. Ohne JS oder mit
   prefers-reduced-motion bleibt das alte is-visible-Verhalten aktiv. */
.route-scrub .step-item::before {
    height: var(--route-fill, 0px);
    transition: none;
}

/* Im Scrub-Modus zünden die Stationen erst, wenn die Linie sie
   erreicht (is-reached) – nicht schon beim blossen Sichtbarwerden. */
.route-scrub .step-item.is-visible:not(.is-reached) .step-marker {
    border-color: rgba(255, 255, 255, 0.15);
    background: var(--color-dark);
    color: var(--color-grey);
    box-shadow: none;
}

.route-scrub .step-item.is-reached .step-marker {
    border-color: var(--color-red);
    background: var(--color-red);
    color: var(--color-white);
    box-shadow: 0 0 20px rgba(192, 57, 43, 0.55);
    animation: station-pop 0.45s var(--ease-out);
}

@keyframes station-pop {
    0%   { transform: scale(1); }
    45%  { transform: scale(1.16); }
    100% { transform: scale(1); }
}

/* Letzte Station: kein Nummernkreis, sondern das Ziel als Karten-Pin */
.step-marker--ziel {
    transition: border-color 0.5s ease, color 0.5s ease, background 0.5s ease,
        box-shadow 0.5s ease, transform 0.4s var(--ease-out);
}

.step-marker--ziel svg {
    width: 24px;
    height: 24px;
    fill: var(--color-red);
    transition: fill 0.5s ease;
}

.step-item.is-visible .step-marker--ziel svg { fill: var(--color-white); }

/* Vor der Ankunft bleibt der Pin rot auf dunklem Kreis */
.route-scrub .step-item.is-visible:not(.is-reached) .step-marker--ziel svg {
    fill: var(--color-red);
}

/* Ankunft: erreicht die Linie das Ziel, wächst der Pin und bleibt gross.
   animation:none, damit station-pop (endet bei scale 1) nicht mit der
   bleibenden Vergrösserung kollidiert – die Transition übernimmt. */
.route-scrub .step-item.is-reached .step-marker--ziel {
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(192, 57, 43, 0.85);
    animation: none;
}

.route-scrub .step-item.is-reached .step-marker--ziel svg {
    fill: var(--color-white);
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

.step-item {
    position: relative;
    display: flex;
    gap: 28px;
    padding-bottom: 52px;
}

.step-item:last-child { padding-bottom: 0; }

.step-item::after {
    content: '';
    position: absolute;
    left: 27px;
    top: 56px;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.08);
}

.step-item:last-child::after { display: none; }

.step-item::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 56px;
    width: 2px;
    height: 0;
    background: linear-gradient(var(--color-red), var(--color-red-hover));
    box-shadow: 0 0 8px rgba(192, 57, 43, 0.6);
    transition: height 0.7s var(--ease-out) 0.15s;
    z-index: 1;
}

.step-item.is-visible::before { height: calc(100% - 56px); }

.step-marker {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--color-grey);
    position: relative;
    z-index: 2;
    transition: border-color 0.5s ease, color 0.5s ease, background 0.5s ease, box-shadow 0.5s ease;
}

.step-item.is-visible .step-marker {
    border-color: var(--color-red);
    background: var(--color-red);
    color: var(--color-white);
    box-shadow: 0 0 20px rgba(192, 57, 43, 0.55);
}

.step-content { padding-top: 8px; }

.step-content h3 {
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--color-grey);
    font-size: 0.9rem;
    line-height: 1.7;
}

.catering-cta-section {
    padding: 80px 0;
    text-align: center;
}

.catering-cta-section .section-title { margin-bottom: 20px; }

.catering-cta-section p {
    color: var(--color-grey);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.9;
}

.cta-btn-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   MENÜ PAGE (Vollständig)
   ============================================= */
.menu-showcase {
    background: var(--color-dark);
    padding: 60px 0 80px;
}

.menu-showcase-image {
    max-width: 960px;
    margin: 0 auto;
}

.menu-showcase-image img {
    width: 100%;
    display: block;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.menu-content {
    max-width: 1160px;
    margin: 56px auto 0;
}

.menu-dish-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.menu-dish-card {
    background: var(--color-black);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition);
}

.menu-dish-card:hover {
    border-color: rgba(192, 57, 43, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.menu-dish-card-body {
    padding: 28px 30px 32px;
}

.menu-dish-card-body h2 {
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white);
    margin: 0 0 12px;
}

.menu-dish-photos {
    margin: 0;
}

.menu-dish-photos img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 0.3s var(--ease-out);
}

.menu-dish-photos img:hover { transform: scale(1.03); }

.menu-dish-photos--square img { aspect-ratio: 1 / 1; }

.lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(0, 0, 0, 0.92);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 2000;
    cursor: zoom-out;
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.menu-dish-card-body p {
    color: var(--color-grey);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.menu-dish-card-body ul {
    margin-bottom: 0;
}

.menu-dish-card-body li {
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    font-weight: 500;
    font-size: 0.92rem;
}

.menu-dish-card-body li:last-child { border-bottom: none; }

.menu-dish-card-body em {
    display: block;
    margin-top: 16px;
    color: var(--color-grey);
    font-size: 0.8rem;
    font-style: italic;
}

.menu-showcase-note {
    padding-top: 28px;
    text-align: center;
    color: var(--color-grey);
    font-size: 0.82rem;
    line-height: 1.8;
}

/* =============================================
   KONTAKT PAGE
   ============================================= */
.contact-section { padding: 80px 0; }

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.contact-info h3 {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-red);
    margin-bottom: 28px;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--color-border);
}

.contact-item {
    padding: 22px 0;
    border-bottom: 1px solid var(--color-border);
}

.contact-item strong {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-grey);
    margin-bottom: 5px;
}

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

.contact-item a.social-text--instagram { color: #e1306c; }
.contact-item a.social-text--instagram:hover { color: #f09433; }

.contact-item a.social-text--facebook { color: #1877f2; }
.contact-item a.social-text--facebook:hover { color: #4e9bff; }

.contact-item em {
    font-style: normal;
    font-size: 0.82rem;
    color: var(--color-grey);
    display: block;
    margin-top: 3px;
}

.form-header {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-red);
    margin-bottom: 28px;
    display: block;
}

/* WPForms: Plugin-Standardfarben sind für helle Seiten gedacht (dunkler Text).
   Auf unserem dunklen Theme-Hintergrund braucht Label-/Beschreibungstext Weiss. */
.wpforms-container .wpforms-field-label,
.wpforms-container .wpforms-field-label-inline,
.wpforms-container .wpforms-field-sublabel,
.wpforms-container .wpforms-field-description,
.wpforms-container legend.wpforms-field-label {
    color: var(--color-white) !important;
}

/* WPForms an die JCB-Markenfarben (Rot/Schwarz) angleichen. Das "modern"
   Markup von WPForms liest diese CSS-Variablen direkt aus. */
.wpforms-container {
    --wpforms-field-background-color: rgba(255, 255, 255, 0.03);
    --wpforms-field-border-color: var(--color-border);
    --wpforms-field-border-size: 1px;
    --wpforms-field-border-radius: 6px;
    --wpforms-field-text-color: var(--color-white);
    --wpforms-field-size-input-height: 52px;
    --wpforms-field-size-font-size: 0.9rem;
    --wpforms-label-color: var(--color-white);
    --wpforms-label-sublabel-color: var(--color-grey);
    --wpforms-label-error-color: var(--color-red-hover);
    --wpforms-container-padding: 0;
    --wpforms-button-background-color: var(--color-red);
    --wpforms-button-background-color-alt: var(--color-red-hover);
    --wpforms-button-border-color: var(--color-red);
    --wpforms-button-border-radius: 4px;
    --wpforms-button-text-color: var(--color-white);
    --wpforms-button-text-color-alt: var(--color-white);
    --wpforms-button-size-font-size: 0.78rem;
}

.wpforms-container input:focus,
.wpforms-container textarea:focus,
.wpforms-container select:focus {
    border-color: var(--color-red) !important;
}

.wpforms-container button[type="submit"] {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}


.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--color-border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--color-border);
}

.form-row-single {
    border-bottom: 1px solid var(--color-border);
}

.form-half { border-right: 1px solid var(--color-border); }
.form-half:last-child { border-right: none; }

.form-input,
.form-textarea {
    background: transparent;
    border: none;
    color: var(--color-white);
    padding: 18px 22px;
    font-family: var(--font-main);
    font-size: 0.88rem;
    width: 100%;
    transition: background 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.02);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.22);
    font-size: 0.82rem;
}

.form-textarea {
    resize: none;
    min-height: 150px;
    display: block;
}

.form-submit {
    padding-top: 24px;
    display: flex;
    justify-content: flex-end;
}

.form-success {
    background: rgba(72, 187, 120, 0.08);
    border-left: 3px solid #48bb78;
    padding: 14px 20px;
    margin-bottom: 28px;
    font-size: 0.85rem;
    color: #48bb78;
}

.map-full {
    height: 360px;
    margin-top: -1px;
}

.map-full iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(80%) contrast(90%);
    display: block;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .about-intro-inner,
    .visit-inner,
    .about-page-inner,
    .catering-page-inner,
    .contact-inner,
    .menu-showcase-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .catering-banner { max-width: 100%; }

    .catering-overlay {
        background: linear-gradient(
            180deg,
            rgba(13, 13, 13, 0.88) 0%,
            rgba(13, 13, 13, 0.94) 55%,
            rgba(13, 13, 13, 0.97) 100%
        );
    }

    .menu-showcase-side { order: -1; }

    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .nav-inner { padding: 0 28px; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .nav-indicator { display: none; }
    .page-hero-logo { display: none; }
    .nav-menu.open {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        /* Breite/Höhe bewusst über vw/vh statt right/bottom gesetzt: der
           Header bekommt beim Scrollen einen backdrop-filter, und der
           erzeugt einen neuen Containing Block für position:fixed-Kinder.
           "right/bottom: 0" würde sich dann auf die ~88px hohe Nav-Leiste
           beziehen statt auf den ganzen Bildschirm (-> kleine Box mit
           Scrollbalken). vw/vh sind davon nicht betroffen. */
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background:
            radial-gradient(circle at 85% 8%, rgba(192, 57, 43, 0.18), transparent 55%),
            radial-gradient(circle at 10% 95%, rgba(192, 57, 43, 0.10), transparent 45%),
            var(--color-black);
        padding: calc(var(--nav-height) + 8px) 32px 48px;
        gap: 4px;
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        animation: nav-overlay-in 0.35s var(--ease-out) both;
    }
    .nav-menu.open li {
        width: 100%;
        max-width: 360px;
        text-align: center;
        animation: nav-link-in 0.5s var(--ease-out) both;
    }
    .nav-menu.open li + li { border-top: 1px solid var(--color-border); }
    .nav-menu.open li:nth-child(1) { animation-delay: 0.06s; }
    .nav-menu.open li:nth-child(2) { animation-delay: 0.11s; }
    .nav-menu.open li:nth-child(3) { animation-delay: 0.16s; }
    .nav-menu.open li:nth-child(4) { animation-delay: 0.21s; }
    .nav-menu.open li:nth-child(5) { animation-delay: 0.26s; }
    .nav-menu.open li:nth-child(6) { animation-delay: 0.31s; }
    .nav-menu.open a {
        display: block;
        font-size: 1.25rem;
        letter-spacing: 4px;
        padding: 18px 0;
    }
    .nav-menu.open a.active { color: var(--color-red); }

    @keyframes nav-overlay-in {
        from { opacity: 0; }
        to   { opacity: 1; }
    }
    @keyframes nav-link-in {
        from { opacity: 0; transform: translateY(16px); }
        to   { opacity: 1; transform: translateY(0); }
    }
    .nav-toggle { display: flex; }
    .nav-inner { padding: 0 20px; }
    .container { padding: 0 20px; }

    .hero-logo-img { width: clamp(180px, 55vw, 320px); }
    .hero-buttons { flex-direction: column; align-items: center; }

    .about-features { grid-template-columns: 1fr; gap: 12px; }
    .about-features--plain { column-gap: 28px; row-gap: 14px; }

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

    .step-item { gap: 20px; }
    .step-marker { width: 44px; height: 44px; font-size: 1.1rem; }
    .step-item::after,
    .step-item::before { left: 21px; top: 44px; }
    .step-item.is-visible::before { height: calc(100% - 44px); }

    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

    .section-padding { padding: 68px 0; }
    .about-intro,
    .menu-section,
    .visit-section,
    .catering-section,
    .team-section { padding: 68px 0; }

    .founders-photo-section { padding: 0 0 40px; }
    .founders-photo { aspect-ratio: 4 / 3; }

    .form-row { grid-template-columns: 1fr; }
    .form-half { border-right: none; border-bottom: 1px solid var(--color-border); }
    .form-half:last-child { border-bottom: none; }

    .menu-dish-grid { grid-template-columns: 1fr; }
}

/* =============================================
   BLOG / AKTUELLES
   ============================================= */

/* Filter-Leiste */
.blog-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.blog-filter-btn {
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--color-grey);
    border-radius: 2px;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-main);
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
    background: var(--color-red);
    border-color: var(--color-red);
    color: white;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .blog-grid { grid-template-columns: 1fr; } }

/* Blog Card */
.blog-card {
    background: var(--color-dark);
    border: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: rgba(181,43,43,0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.blog-card-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    display: block;
}

.blog-card-no-image {
    background: rgba(255,255,255,0.03);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-placeholder-icon { color: rgba(255,255,255,0.1); }

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image { transform: scale(1.05); }

.blog-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--color-red);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
    z-index: 1;
}

.blog-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    font-size: 0.75rem;
    color: var(--color-grey);
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-card-title a { color: white; }
.blog-card-title a:hover { color: var(--color-red); }

.blog-card-excerpt {
    color: var(--color-grey);
    font-size: 0.875rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

.blog-card-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-red);
    transition: var(--transition);
    margin-top: auto;
}

.blog-card-link:hover { gap: 14px; }

/* Pagination */
.blog-pagination {
    margin-top: 64px;
    display: flex;
    justify-content: center;
}

.blog-pagination .nav-links {
    display: flex;
    gap: 8px;
}

.blog-pagination a,
.blog-pagination span {
    padding: 10px 18px;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--color-grey);
    font-size: 0.85rem;
    transition: var(--transition);
}

.blog-pagination a:hover,
.blog-pagination .current {
    background: var(--color-red);
    border-color: var(--color-red);
    color: white;
}

/* =============================================
   SINGLE POST
   ============================================= */

.single-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    padding-top: 80px;
}

.single-hero-image {
    position: absolute;
    inset: 0;
}

.single-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.92) 100%);
}

.single-hero-content {
    position: relative;
    z-index: 1;
    padding-bottom: 60px;
}

.single-category {
    display: inline-block;
    background: var(--color-red);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
    margin-right: 16px;
}

.single-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    max-width: 800px;
    line-height: 1.2;
    margin-top: 16px;
}

/* Single Post Inhalt */
.single-content-wrap { padding: 80px 0; }

.single-content {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--color-grey-light);
}

.single-content p { margin-bottom: 24px; }
.single-content h2 { color: white; margin: 40px 0 16px; font-size: 1.5rem; }
.single-content h3 { color: white; margin: 32px 0 12px; font-size: 1.2rem; }
.single-content img { width: 100%; border-radius: 4px; margin: 32px 0; }
.single-content a { color: var(--color-red); }
.single-content blockquote {
    border-left: 3px solid var(--color-red);
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    color: white;
    font-size: 1.1rem;
}

/* Post Navigation */
.single-post-nav { margin-top: 80px; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 48px; }

.single-post-nav-inner {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

.post-nav-link {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 45%;
    transition: var(--transition);
}

.post-nav-next { text-align: right; margin-left: auto; }

.post-nav-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-grey);
}

.post-nav-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    line-height: 1.4;
}

.post-nav-link:hover .post-nav-title { color: var(--color-red); }
