/* ============================================================
   Hoffmann's Partyservice — Main Stylesheet
   Mobile-first, CSS custom properties, Grid + Flexbox
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+3:wght@300;400;600&display=swap');

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --primary:       #3a5f96;
  --primary-dark:  #2c4a78;
  --primary-light: #e8eef7;
  --cream:         #f9f0e1;
  --cream-dark:    #f0e3cc;
  --dark:          #2d2d2d;
  --mid:           #6b5c4e;
  --light:         #ffffff;
  --accent:        #d4a84b;
  --accent-dark:   #b8922f;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 2px 12px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);

  --container: 1100px;
  --gap:       2rem;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
  background: var(--cream);
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Utility ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--mid);
  max-width: 600px;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn-primary {
  background: var(--accent);
  color: var(--light);
}
.btn-primary:hover { background: var(--accent-dark); box-shadow: var(--shadow); }

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

.btn-blue {
  background: var(--primary);
  color: var(--light);
}
.btn-blue:hover { background: var(--primary-dark); box-shadow: var(--shadow); }

/* ── Reveal animation ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Header / Nav ───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--light);
  padding: 0.5rem 0;
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo img {
  height: 72px;
  width: auto;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 0.25rem;
}
.nav-links a {
  display: block;
  padding: 0.5rem 0.9rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  border-radius: var(--radius);
  transition: background 0.18s, color 0.18s;
}
.nav-links a:hover { background: var(--primary-light); color: var(--primary); text-decoration: none; }

.nav-cta {
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.site-header.nav-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .hamburger span:nth-child(2) { opacity: 0; }
.site-header.nav-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid var(--cream-dark);
}
.site-header.nav-open .mobile-nav { display: flex; }
.mobile-nav a {
  display: block;
  padding: 0.65rem 0.75rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: var(--radius);
}
.mobile-nav a:hover { background: var(--primary-light); color: var(--primary); text-decoration: none; }
.mobile-nav .btn { margin-top: 0.5rem; text-align: center; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta    { display: block; }
  .hamburger  { display: none; }
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  margin-top: 0;
  padding-top: 90px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 64, 110, 0.82) 0%,
    rgba(20, 30, 55, 0.70) 60%,
    rgba(0,0,0,0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--light);
  max-width: 640px;
  padding: 3rem 0;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── About ──────────────────────────────────────────────────── */
.about {
  background: var(--light);
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-text p {
  color: var(--mid);
  margin-bottom: 1rem;
}
.about-text p:last-child { margin-bottom: 0; }

.about-sig {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--primary);
}
.about-sig::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Services / Leistungen ──────────────────────────────────── */
.leistungen {
  background: var(--cream);
  padding: 5rem 0;
}

.leistungen-header {
  text-align: center;
  margin-bottom: 3rem;
}
.leistungen-header .section-lead { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.service-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.6;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Gallery ────────────────────────────────────────────────── */
.galerie {
  background: var(--dark);
  padding: 5rem 0;
  overflow: hidden;
}

.galerie-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.galerie-header .section-label { color: var(--accent); }
.galerie-header .section-title { color: var(--light); }

.gallery-marquee {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gallery-row {
  overflow: hidden;
}
.gallery-row:hover .gallery-track {
  animation-play-state: paused;
}

.gallery-track {
  display: flex;
  gap: 0.5rem;
  width: max-content;
}

.gallery-row--left .gallery-track {
  animation: marquee-left 40s linear infinite;
}
.gallery-row--right .gallery-track {
  animation: marquee-right 40s linear infinite;
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Gallery navigation buttons */
.gallery-row {
  position: relative;
}
.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s, opacity 0.2s;
  z-index: 10;
  box-shadow: var(--shadow);
  opacity: 0;
}
.gallery-row:hover .gallery-nav-btn {
  opacity: 1;
}
.gallery-nav-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-50%) scale(1.08);
}
.gallery-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}
.gallery-nav-prev { left: 0.5rem; }
.gallery-nav-next { right: 0.5rem; }

.gallery-item {
  width: 260px;
  height: 200px;
  flex-shrink: 0;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius);
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after {
  content: '🔍';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(42,64,110,0.5);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 2rem;
  color: var(--light);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
}
.lightbox-close:hover { opacity: 1; }

/* ── Menu Preview ───────────────────────────────────────────── */
.menues {
  background: var(--primary);
  padding: 5rem 0;
}

.menues-header {
  text-align: center;
  margin-bottom: 3rem;
}
.menues-header .section-label { color: var(--accent); }
.menues-header .section-title { color: var(--light); }
.menues-header .section-lead  { color: rgba(255,255,255,0.8); margin: 0 auto; }

.menues-grid {
  display: grid;
  gap: 1.5rem;
}

.menu-card {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--light);
  transition: background 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.menu-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-3px); }

.menu-card-icon { font-size: 2.5rem; }
.menu-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
}
.menu-card p { opacity: 0.85; font-size: 0.95rem; line-height: 1.6; }
.menu-card .btn { align-self: flex-start; margin-top: auto; }

@media (min-width: 640px) {
  .menues-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Hero slogan ────────────────────────────────────────────── */
.hero-slogan {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--accent);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

/* ── Events / Feiern ────────────────────────────────────────── */
.feiern {
  background: var(--cream);
  padding: 5rem 0;
}

.feiern-header {
  text-align: center;
  margin-bottom: 3rem;
}
.feiern-header .section-lead { margin: 0 auto; }

/* Menu category cards */
.menu-categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.menu-category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  text-decoration: none;
}

.menu-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.menu-category-card:hover img { transform: scale(1.06); }
.menu-category-card:hover { text-decoration: none; }

.menu-category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,30,55,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  transition: background 0.3s;
}

.menu-category-card:hover .menu-category-overlay {
  background: linear-gradient(to top, rgba(20,30,55,0.95) 0%, rgba(20,30,55,0.15) 100%);
}

.menu-category-title {
  color: var(--light);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.menu-category-sub {
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  margin-top: 0.2rem;
}

@media (min-width: 640px)  { .menu-categories-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .menu-categories-grid { grid-template-columns: repeat(5, 1fr); } }

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.event-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.event-card:hover img { transform: scale(1.06); }
.event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,30,55,0.78) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.event-overlay span {
  color: var(--light);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 640px)  { .events-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .events-grid { grid-template-columns: repeat(6, 1fr); } }

/* ── Event category modal ───────────────────────────────────── */
.event-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.event-modal.open { display: flex; }

.event-modal-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
  background: #1a1a2a;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.event-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(0,0,0,0.4);
}

.event-modal-title {
  font-family: var(--font-heading);
  color: var(--light);
  font-size: 1.3rem;
  margin: 0;
}

.event-modal-close {
  font-size: 2rem;
  color: var(--light);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
}
.event-modal-close:hover { opacity: 1; }

.event-modal-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
}
.event-modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-modal-nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.75rem;
  pointer-events: none;
}
.event-modal-prev,
.event-modal-next {
  pointer-events: all;
  background: rgba(0,0,0,0.55);
  border: none;
  color: var(--light);
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.event-modal-prev:hover,
.event-modal-next:hover { background: rgba(0,0,0,0.85); }

.event-modal-counter {
  text-align: center;
  padding: 0.65rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
}

/* ── Partner map ────────────────────────────────────────────── */
.partner-address {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 1rem 0 1.25rem;
  color: var(--mid);
  font-size: 0.95rem;
}
.partner-address-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }

.partner-map {
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.partner-map iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

/* ── Partner / Gosselmann ───────────────────────────────────── */
.partner {
  position: relative;
  padding: 5rem 0;
  background: var(--light);
  overflow: hidden;
}

.partner-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.partner-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 400px;
  display: flex;
  flex-direction: column;
}
.partner-image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}
.partner-image iframe {
  flex: 1;
  display: block;
  width: 100%;
  min-height: 400px;
  border: 0;
}

.partner-text .section-title { margin-top: 0.5rem; }
.partner-text p { color: var(--mid); margin-bottom: 1rem; }
.partner-text p:last-of-type { margin-bottom: 1.5rem; }

@media (min-width: 768px) {
  .partner-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Reviews ────────────────────────────────────────────────── */
.bewertungen {
  background: var(--cream);
  padding: 5rem 0;
}

.bewertungen-header {
  text-align: center;
  margin-bottom: 3rem;
}
.bewertungen-header .section-lead { margin: 0 auto; }

.reviews-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.review-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--primary-light);
  line-height: 1;
}
.review-stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 0.75rem; }
.review-text  { color: var(--mid); font-style: italic; margin-bottom: 1rem; }
.review-author { font-weight: 600; color: var(--dark); font-size: 0.9rem; }

.bewertungen-cta { text-align: center; }

@media (min-width: 640px)  { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── Contact ────────────────────────────────────────────────── */
.kontakt {
  background: var(--primary-dark);
  padding: 5rem 0;
}

.kontakt-header {
  text-align: center;
  margin-bottom: 3rem;
}
.kontakt-header .section-label { color: var(--accent); }
.kontakt-header .section-title { color: var(--light); }
.kontakt-header .section-lead  { color: rgba(255,255,255,0.75); margin: 0 auto; }

.kontakt-grid {
  display: grid;
  gap: 3rem;
}

/* Form */
.contact-form {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  color: var(--light);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.45); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; gap: 1rem; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-status {
  display: none;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  margin-top: 1rem;
}
.form-status.success { background: rgba(60,179,113,0.25); color: #a8edca; border: 1px solid rgba(60,179,113,0.4); }
.form-status.error   { background: rgba(220,53,69,0.25);  color: #f8b4bb; border: 1px solid rgba(220,53,69,0.4); }

/* Contact info */
.contact-info { color: var(--light); }
.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.contact-item-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact-item-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.15rem;
}
.contact-item-value {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
}
.contact-item-value a {
  color: rgba(255,255,255,0.9);
}
.contact-item-value a:hover { color: var(--accent); text-decoration: none; }

.contact-note {
  margin-top: 2rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  font-style: italic;
}

@media (min-width: 768px) {
  .kontakt-grid { grid-template-columns: 3fr 2fr; }
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: #1a1a2a;
  color: rgba(255,255,255,0.6);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand img { height: 56px; margin-bottom: 0.75rem; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-brand p { font-size: 0.9rem; max-width: 240px; }

.footer-links h4 {
  font-family: var(--font-heading);
  color: var(--light);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.9rem; }
.footer-links a:hover { color: var(--accent); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  font-size: 0.85rem;
}

@media (min-width: 640px)  { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; } }

/* ── Breadcrumb (detail pages) ──────────────────────────────── */
.breadcrumb {
  background: var(--cream-dark);
  padding: 0.75rem 0;
  font-size: 0.875rem;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: var(--mid); margin: 0 0.4rem; }
.breadcrumb .current { color: var(--dark); font-weight: 600; }

/* ── Menu Detail Pages ──────────────────────────────────────── */
.menu-page { padding: 4rem 0; background: var(--cream); }

/* Side nav layout */
.menu-layout-container {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: start;
}

.menu-sidenav {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  background: var(--light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.menu-sidenav-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--cream-dark);
}

.sidenav-link {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.88rem;
  color: var(--mid);
  border-radius: var(--radius);
  margin-bottom: 0.15rem;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
  border-left: 3px solid transparent;
  line-height: 1.35;
}
.sidenav-link:hover { background: var(--primary-light); color: var(--primary); text-decoration: none; }
.sidenav-link.active {
  background: var(--primary-light);
  color: var(--primary);
  border-left-color: var(--accent);
  font-weight: 600;
}

.sidenav-cta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
}

.menu-sidenav-toggle {
  display: none;
  width: 100%;
  padding: 0.65rem 1rem;
  background: var(--primary);
  color: var(--light);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  margin-bottom: 0.5rem;
}

@media (max-width: 860px) {
  .menu-layout-container {
    grid-template-columns: 1fr;
  }
  .menu-sidenav {
    position: relative;
    top: 0;
    max-height: none;
    overflow: visible;
  }
  .menu-sidenav-toggle { display: block; }
  .menu-sidenav-inner { display: none; }
  .menu-sidenav.open .menu-sidenav-inner { display: block; }
  .menu-sidenav.open .menu-sidenav-toggle { background: var(--primary-dark); }
}

.menu-page-header {
  text-align: center;
  padding: 5rem 0 3rem;
  background: var(--primary);
  color: var(--light);
  margin-top: 90px;
}
.menu-page-header .section-label { color: var(--accent); }
.menu-page-header .section-title { color: var(--light); }
.menu-page-header p { color: rgba(255,255,255,0.8); max-width: 580px; margin: 0 auto; }

.menu-section {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}
.menu-section h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
  border-bottom: 2px solid var(--cream-dark);
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}
.menu-section h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark);
  margin: 1.5rem 0 0.5rem;
}
.menu-section h3:first-of-type { margin-top: 0; }
.menu-section p {
  color: var(--mid);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.menu-section ul {
  list-style: none;
  padding: 0;
}
.menu-section ul li {
  padding: 0.3rem 0 0.3rem 1.25rem;
  color: var(--mid);
  font-size: 0.95rem;
  position: relative;
  border-bottom: 1px solid var(--cream);
}
.menu-section ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Photo strip inside menu sections — horizontal scroll */
.photo-carousel {
  position: relative;
  margin: 1rem 0 1.5rem;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  color: var(--light);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
  z-index: 2;
  box-shadow: var(--shadow);
}
.carousel-btn:hover { background: var(--accent-dark); transform: translateY(-50%) scale(1.08); }
.carousel-prev { left: 0.3rem; }
.carousel-next { right: 0.3rem; }

.section-photos {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  border-radius: var(--radius);
  scrollbar-width: none;
}
.section-photos::-webkit-scrollbar { display: none; }
.section-photo {
  flex: 0 0 calc(33.33% - 0.27rem);
  aspect-ratio: 4/3;
  overflow: hidden;
  scroll-snap-align: start;
  border-radius: var(--radius);
}
.section-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
  cursor: zoom-in;
}
.section-photo img:hover { transform: scale(1.06); }

.menu-cta {
  text-align: center;
  padding: 3rem;
  background: var(--primary-light);
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}
.menu-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}
.menu-cta p { color: var(--mid); margin-bottom: 1.5rem; }

/* ── Impressum page ─────────────────────────────────────────── */
.impressum-page {
  padding: 4rem 0;
  background: var(--cream);
}
.impressum-page-header {
  background: var(--primary);
  color: var(--light);
  padding: 5rem 0 3rem;
  text-align: center;
  margin-top: 90px;
}
.impressum-page-header .section-title { color: var(--light); }

.impressum-content {
  max-width: 760px;
  margin: 4rem auto;
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.impressum-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary);
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--cream-dark);
}
.impressum-content h2:first-child { margin-top: 0; }
.impressum-content p {
  color: var(--mid);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.impressum-content address {
  font-style: normal;
  color: var(--mid);
  font-size: 0.95rem;
  line-height: 1.8;
}
