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

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src:
    url("../../assets/fontawesome-free-6.4.2-web/webfonts/fa-solid-900.woff2")
      format("woff2"),
    url("../../assets/fontawesome-free-6.4.2-web/webfonts/fa-solid-900.ttf")
      format("truetype");
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    url("../../assets/fontawesome-free-6.4.2-web/webfonts/fa-regular-400.woff2")
      format("woff2"),
    url("../../assets/fontawesome-free-6.4.2-web/webfonts/fa-regular-400.ttf")
      format("truetype");
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    url("../../assets/fontawesome-free-6.4.2-web/webfonts/fa-brands-400.woff2")
      format("woff2"),
    url("../../assets/fontawesome-free-6.4.2-web/webfonts/fa-brands-400.ttf")
      format("truetype");
}

:root {
  --bg-cream: #faf8f5;
  --bg-dark: #0e1927;
  --primary-green: #507b58;
  --accent-red: #ab3131;
  --text-dark: #2c2c2c;
  --text-light: #f5f5f5;
  --text-muted: #757575;
  --border-light: #e8e6e3;
  --shadow-soft: rgba(0, 0, 0, 0.08);
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Page Loader */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.42s ease,
    visibility 0.42s ease;
}

.page-loader.is-visible {
  opacity: 1;
  visibility: visible;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-inner {
  text-align: center;
  color: var(--text-light);
  padding: 16px;
}

.page-loader-logo-wrap {
  margin-bottom: 18px;
}

.page-loader-logo {
  width: 170px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.22));
}

.page-loader-spinner {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 50%;
  border: 2px solid rgba(245, 245, 245, 0.22);
  border-top-color: var(--accent-red);
  animation: loader-spin 0.9s linear infinite;
}

.page-loader-text {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.2px;
  color: rgba(245, 245, 245, 0.88);
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader,
  .page-loader-spinner {
    transition: none;
    animation: none;
  }
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

h1,
h2 {
  letter-spacing: -0.4px;
}

section {
  transition: background 0.4s ease;
}

.btn {
  transition: all 0.25s ease;
}

a {
  text-decoration: none;
  transition: all 0.25s ease;
}

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

/* Mobile Touch Improvements */
* {
  -webkit-tap-highlight-color: transparent;
}

button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent-red);
  outline-offset: 2px;
}

/* Mobile Touch Improvements */
* {
  -webkit-tap-highlight-color: transparent;
}

button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent-red);
  outline-offset: 2px;
}

/* Top Bar */
.top-bar {
  background: var(--accent-red);
  padding: 10px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: none;
}

.top-bar i {
  margin-right: 6px;
  opacity: 0.8;
}

/* Announcement Banner */
.announcement-banner {
  background: #efe6d7;
  border-top: 1px solid #d8c9b0;
  border-bottom: 1px solid #d8c9b0;
  padding: 14px 0;
  text-align: center;
}

.announcement-text {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #3f3326;
  letter-spacing: 0.2px;
}

.announcement-text i {
  margin-right: 8px;
  color: #7a5a3a;
}

/* Sticky header + vacation banner as one stacked unit */
.sticky-top-group {
  position: sticky;
  top: 0;
  z-index: 980;
  box-shadow: 0 2px 12px var(--shadow-soft);
}

.sticky-top-group header {
  position: static;
  box-shadow: none;
}

/* Vacation / Ruhetag Closure Banner */
.closure-banner {
  background: #96453d;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 14px 0;
  text-align: center;
}

.closure-text {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.2px;
}

.closure-text i {
  margin-right: 8px;
  color: #f3d4cf;
}

/* Header */
header {
  background: var(--bg-dark);
  padding: 16px 0;
  box-shadow: 0 2px 12px var(--shadow-soft);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 980;
  will-change: auto;
}

header .container > a:first-child {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

header .logo-img {
  height: 61px;
  width: auto;
  max-width: 100%;
  display: block;
  filter: brightness(1.05);
  transition: height 0.25s ease;
}

header.is-scrolled {
  padding: 10px 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
}

header.is-scrolled .logo-img {
  height: 52px;
  transition: height 0.15s ease;
}

header nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

header nav a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
}

header nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-red);
  transition: width 0.3s ease;
}

header nav a:hover {
  color: #fff;
}

header nav a:hover::after {
  width: 100%;
}

.header-cta {
  background: var(--accent-red) !important;
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border: none !important;
  box-shadow: 0 2px 8px rgba(171, 49, 49, 0.25);
}

.header-cta:hover {
  background: #8a2727 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(171, 49, 49, 0.35);
}

/* Number only shown once the nav row has clear headroom; smaller
   desktop/laptop widths keep the shorter label to avoid nav overflow. */
.header-cta-number {
  display: none;
}

@media (min-width: 1440px) {
  .header-cta-number {
    display: inline;
  }
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
  transform: scale(1.1);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Navigation Menu */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  background: var(--bg-dark);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-header {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav-header img {
  width: auto;
  height: 40px;
}

.mobile-nav-close {
  background: transparent;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-nav-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.mobile-nav-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.mobile-nav-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-menu a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  color: white;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-nav-menu a i {
  font-size: 16px;
  width: 20px;
  color: #999;
}

.mobile-nav-menu a:hover {
  background: rgba(171, 49, 49, 0.15);
  padding-left: 32px;
}

.mobile-nav-cta {
  margin: 24px 20px;
  padding: 16px 24px;
  background: var(--accent-red);
  color: white;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(171, 49, 49, 0.4);
  transition: all 0.3s ease;
}

.mobile-nav-cta:hover {
  background: #8a2727;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(171, 49, 49, 0.5);
}

.mobile-nav-cta i {
  font-size: 18px;
}

/* Prevent body scroll when menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* Hide mobile menu button when menu is open */
body.mobile-menu-open .mobile-menu-btn {
  opacity: 0;
  pointer-events: none;
}

.mobile-call-now {
  display: none;
}

/* Hero Section */
.hero-section {
  height: 81vh;
  min-height: 600px;
  position: relative;
  background: url("../../assets/images/slider/optimized/img_slider_1-1536.jpg")
    center / cover no-repeat;
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .hero-section {
    background-image: url("../../assets/images/slider/optimized/img_slider_1-960.jpg");
  }
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(14, 25, 39, 0.88) 0%,
    rgba(14, 25, 39, 0.62) 42%,
    rgba(14, 25, 39, 0.3) 72%,
    transparent 100%
  );
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  flex: 0 1 auto;
  max-width: 600px;
}

/* Hero Daily Menu Card */
.hero-menu-card {
  background: white;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  width: 380px;
  flex-shrink: 0;
}

.hero-menu-card h3 {
  font-size: 1.75rem;
  color: var(--accent-red);
  margin-bottom: 8px;
  text-align: center;
}

.hero-menu-card .menu-date {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--primary-green);
  padding-bottom: 12px;
}

.hero-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  gap: 12px;
}

.hero-menu-item:last-child {
  border-bottom: none;
}

.hero-menu-item span {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.4;
  flex: 1;
}

.hero-menu-price {
  background: var(--primary-green);
  color: white;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.hero-menu-cta {
  background: var(--accent-red) !important;
  color: white !important;
  padding: 12px 24px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  border: none !important;
  width: 100%;
  margin-top: 20px;
  box-shadow: 0 4px 12px rgba(171, 49, 49, 0.3);
}

.hero-menu-cta:hover {
  background: #8a2727 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(171, 49, 49, 0.4);
}

.hero-section h1 {
  font-size: 3.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.5px;
}

.hero-subline {
  font-size: 1.22rem;
  font-family: "Playfair Display", serif;
  margin-bottom: 16px;
  opacity: 1;
  color: rgba(255, 255, 255, 0.98);
  line-height: 1.5;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-text {
  font-size: 1.02rem;
  max-width: 520px;
  opacity: 1;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  margin-bottom: 32px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.hero-cta {
  background: var(--accent-red) !important;
  color: white !important;
  padding: 14px 32px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(171, 49, 49, 0.35);
  display: inline-block;
}

.hero-cta:hover {
  background: #8a2727 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(171, 49, 49, 0.45);
}

/* Intro Strip */
.intro-strip {
  background: var(--bg-dark);
  padding: 18px 0;
  border-top: none;
}

.intro-strip p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  letter-spacing: 0.8px;
  text-align: center;
  margin: 0;
  font-weight: 500;
}

/* Menu Section */
#lunch-menu {
  padding: 130px 0 110px;
  background: var(--bg-cream);
}

#lunch-menu h2 {
  font-size: 2.8rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

#lunch-menu .text-muted {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 32px;
}

#lunch-menu .menu-card {
  padding: 36px 40px;
  max-width: 880px;
}

#lunch-menu .menu-item {
  padding: 16px 0;
  gap: 24px;
}

#lunch-menu .menu-price {
  padding: 8px 18px;
}

#lunch-menu .menu-cta-wrapper {
  margin-top: 36px;
}

.menu-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 40px;
  max-width: 850px;
  margin: 0 auto;
  box-shadow: 0 4px 20px var(--shadow-soft);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid #f0f0f0;
  gap: 24px;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-content {
  flex: 1;
}

.menu-item-name {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.5;
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}

.menu-item-description {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  font-style: italic;
}

.menu-price {
  background: var(--primary-green);
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.3px;
  align-self: flex-start;
  margin-top: 2px;
}

/* Season Indicator */
.season-indicator {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid var(--border-light);
}

.season-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-green), #6b9473);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(80, 123, 88, 0.3);
  margin-bottom: 0;
}

.season-badge i {
  font-size: 18px;
}

.menu-cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* Seasonal Menu (Aktuelles) */
#aktuelles {
  padding: 130px 0 110px;
  background: white;
}

.aktuelles-menu-description {
  margin-bottom: 0;
}

.aktuelles-category-block {
  margin-bottom: 32px;
}

.aktuelles-category-block:last-child {
  margin-bottom: 0;
}

.menu-cta {
  background: var(--accent-red) !important;
  color: white !important;
  padding: 14px 36px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(171, 49, 49, 0.3);
}

.menu-cta:hover {
  background: #8a2727 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(171, 49, 49, 0.4);
}

/* Tabbed Menu Styles */
/* Full Menu Section */
#menu {
  padding: 130px 0 110px;
  background: white;
}

.menu-header {
  margin-bottom: 40px;
}

.menu-subtitle {
  font-size: 17px;
  margin-bottom: 32px;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  padding: 0 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.menu-tab {
  background: white;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: none;
  min-width: 140px;
  min-height: 48px;
}

.menu-tab i {
  font-size: 18px;
  opacity: 0.7;
}

.menu-tab:hover {
  border-color: var(--primary-green);
  transform: translateY(-1px);
  box-shadow: none;
}

.menu-tab.active {
  background: var(--bg-dark);
  color: white;
  border-color: var(--bg-dark);
  box-shadow: none;
}

.menu-tab.active i {
  opacity: 1;
}

.menu-tab.wine-tab {
  border-color: var(--accent-red);
  color: var(--accent-red);
}

.menu-tab.wine-tab i {
  opacity: 1;
}

.menu-tab.wine-tab:hover {
  border-color: var(--accent-red);
}

.menu-tab.wine-tab.active {
  background: var(--accent-red);
  color: white;
  border-color: var(--accent-red);
}

/* Grouped subcategories sharing one card (Aktuelles, Fleisch, Weinkarte) */
.menu-subcategory-block {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-light);
}

.menu-subcategory-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.menu-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.menu-content.active {
  display: block;
}

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

.menu-category-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 44px 48px;
  max-width: 950px;
  margin: 0 auto;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.menu-category-title {
  font-size: 2.2rem;
  color: var(--accent-red);
  margin-bottom: 8px;
  text-align: center;
  border-bottom: 3px solid var(--primary-green);
  padding-bottom: 16px;
}

.menu-category-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 36px;
  font-style: italic;
}

/* Gallery */
.gallery-section {
  padding: 110px 0;
  background: #ffffff;
}

#gallery {
  padding: 130px 0 110px;
}

#about h2 {
  margin-bottom: 14px;
}

#about p {
  line-height: 1.75;
}

/* Opening Hours Section */
.hours-section {
  padding: 120px 0 100px;
  background: var(--bg-cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.hours-section h2 {
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: var(--text-dark);
  font-weight: 600;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hours-day {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.hours-day:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 16px;
}

.hours-time {
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 500;
  text-align: right;
}

.hours-time.hours-closed {
  color: var(--accent-red);
  font-weight: 600;
}

.hours-note {
  grid-column: 1 / -1;
  justify-self: end;
  margin-top: -22px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
  font-style: normal;
  color: var(--accent-red);
  background: rgba(171, 49, 49, 0.08);
  border-radius: 20px;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
}

.faq-section h2 {
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: var(--text-dark);
  font-weight: 600;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 18px 24px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 16px;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 400;
  color: var(--text-muted);
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.contact-info {
  line-height: 2;
  font-size: 15px;
  color: var(--text-dark);
}

.contact-info p {
  margin-bottom: 32px;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

.contact-info a {
  color: var(--accent-red);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.contact-info a:hover {
  opacity: 0.8;
}

.hours-contact {
  text-align: right;
}

.address-block {
  line-height: 1.6;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: 4px;
  white-space: nowrap;
}

.map-link i {
  color: var(--accent-red);
  font-size: 16px;
  transition: transform 0.3s ease;
}

.map-link:hover {
  color: var(--accent-red);
  text-decoration: underline;
}

.map-link:hover i {
  transform: scale(1.15);
}

.final-cta {
  padding: 90px 0 70px;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
}

.final-cta h2 {
  margin-bottom: 22px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #f4f2ee;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  cursor: zoom-in;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item.is-hidden {
  display: none;
}

/* Gallery Caption Overlay */
.gallery-caption {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-dark);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-caption sup {
  font-size: 70%;
  font-weight: 700;
  margin-left: 1px;
}

.gallery-actions {
  text-align: center;
  margin-top: 32px;
}

.gallery-btn {
  background: var(--accent-red);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  min-height: 48px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(171, 49, 49, 0.3);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gallery-btn:hover {
  background: #8a2727;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(171, 49, 49, 0.35);
}

/* Gallery Modal */
.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(14, 25, 39, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
}

.gallery-modal.is-open {
  display: flex;
}

.gallery-modal-content {
  max-width: min(1200px, 92vw);
  max-height: 86vh;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  background: #000;
}

.gallery-modal-content img {
  width: auto;
  height: auto;
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
  display: block;
}

.gallery-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.gallery-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.gallery-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.gallery-modal-nav:hover {
  background: rgba(255, 255, 255, 0.35);
}

.gallery-modal-prev {
  left: 18px;
}

.gallery-modal-next {
  right: 18px;
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-modal-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .hours-section {
    padding: 80px 0 60px;
  }

  .hours-section h2 {
    font-size: 1.6rem;
    margin-bottom: 32px;
  }

  .hours-list {
    gap: 20px;
  }

  .hours-day {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-bottom: 16px;
  }

  .hours-time {
    text-align: left;
    font-weight: 600;
  }

  .hours-note {
    justify-self: start;
    margin-top: 0;
  }

  .hours-contact {
    text-align: left;
    margin-top: 40px;
  }

  .contact-info {
    margin-top: 0;
    line-height: 1.9;
  }
}

/* Responsive */
@media (max-width: 992px) {
  header .logo-img,
  header.is-scrolled .logo-img {
    height: 52px;
    max-width: 200px;
  }

  header nav {
    display: none;
  }

  .header-cta {
    display: none !important;
  }

  .mobile-menu-btn {
    display: block;
    flex-shrink: 0;
    margin-left: 10px;
  }

  .mobile-nav-overlay,
  .mobile-nav {
    display: block;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-container {
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.58);
    gap: 30px;
  }

  .hero-menu-card {
    display: none;
  }

  .hero-cta {
    display: inline-block;
  }
}

@media (min-width: 993px) {
  .hero-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  @keyframes mobileCallPulse {
    0% {
      transform: translateY(0) scale(1);
    }
    45% {
      transform: translateY(0) scale(1.1);
    }
    100% {
      transform: translateY(0) scale(1);
    }
  }

  body {
    padding-bottom: 32px;
  }

  .menu-tabs {
    gap: 8px;
  }

  .menu-tab {
    padding: 12px 12px;
    font-size: 13px;
    min-width: auto;
    flex: 1;
    white-space: nowrap;
    min-height: 44px;
    gap: 6px;
  }

  .menu-tab i {
    font-size: 16px;
  }

  @media (orientation: landscape) and (max-height: 600px) {
    .hero-section {
      min-height: calc(100vh - 120px);
      max-height: none;
      padding: 20px 0;
    }

    .hero-section h1 {
      font-size: 1.4rem;
      margin-bottom: 12px;
    }

    .hero-subline,
    .hero-text {
      font-size: 0.9rem;
      margin-bottom: 12px;
    }
  }

  .top-bar .container {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }

  .mobile-call-now {
    position: fixed;
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--accent-red);
    color: #fff;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px) scale(0.98);
    transition:
      opacity 0.15s ease-out,
      transform 0.15s ease-out;
    will-change: opacity, transform;
  }

  .mobile-call-now.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .mobile-call-now.is-visible.pulse-once {
    animation: mobileCallPulse 0.45s ease-out 1;
  }

  .mobile-call-now i {
    line-height: 1;
  }

  body.mobile-menu-open .mobile-call-now {
    opacity: 0;
    pointer-events: none;
  }

  header {
    padding: 12px 0;
  }

  header .container {
    min-height: 54px;
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
  }

  .hero-section {
    height: auto;
    min-height: calc(100vh - 225px);
    max-height: calc(100vh - 100px);
    padding: 40px 0;
  }

  .hero-container {
    flex-direction: column;
    gap: 20px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .hero-subline {
    font-size: 1.1rem;
  }

  .hero-text {
    font-size: 0.95rem;
  }

  .hero-menu-card {
    display: none;
  }

  .hero-cta {
    display: inline-block;
  }

  #lunch-menu h2 {
    font-size: 2.2rem;
  }

  #lunch-menu .menu-card {
    padding: 26px 20px;
  }

  #lunch-menu .menu-item {
    padding: 14px 0;
  }

  .menu-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 0;
  }

  .menu-item-name {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .menu-item-description {
    font-size: 13px;
  }

  .menu-price {
    align-self: flex-start;
    width: 100%;
    text-align: center;
  }

  #aktuelles {
    padding: 90px 0 80px;
  }

  #lunch-menu,
  #menu,
  #gallery {
    padding-top: 90px !important;
    padding-bottom: 80px !important;
  }

  .menu-tabs {
    gap: 8px;
  }

  .menu-tab {
    padding: 12px 20px;
    font-size: 14px;
    min-width: 140px;
  }

  .menu-tab i {
    font-size: 16px;
  }

  .menu-category-card {
    padding: 28px 20px;
  }

  .menu-category-title {
    font-size: 1.6rem;
  }
}

/* About CTA */
.about-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-cta {
  background: var(--primary-green) !important;
  color: #ffffff !important;
  padding: 12px 24px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 12px rgba(80, 123, 88, 0.35);
}

.about-cta:hover {
  background: #3e6246 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(80, 123, 88, 0.4);
}

/* History Page */
.history-hero {
  position: relative;
  padding: 120px 0 90px;
  background: url("../../assets/images/slider/optimized/img_slider_1-1536.jpg")
    center / cover no-repeat;
  color: #ffffff;
}

@media (max-width: 991px) {
  .history-hero {
    background-image: url("../../assets/images/slider/optimized/img_slider_1-960.jpg");
  }
}

.history-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14, 25, 39, 0.85) 0%,
    rgba(14, 25, 39, 0.6) 55%,
    rgba(14, 25, 39, 0.35) 100%
  );
}

.history-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 40%,
    rgba(255, 255, 255, 0.08),
    transparent 60%
  );
  z-index: 0;
}

.history-hero .container {
  position: relative;
  z-index: 1;
}

.history-hero h1 {
  font-size: 3.4rem;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}

.history-hero p {
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.92);
}

.history-section {
  padding: 100px 0;
  background: #ffffff;
}

.history-story {
  background: #f5f1ea;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  position: relative;
}

.history-story strong {
  font-weight: 600;
  color: var(--text-dark);
}

.history-story::before {
  content: "";
  position: absolute;
  top: 40px;
  left: -12px;
  width: 4px;
  height: 60px;
  background: var(--accent-red);
  border-radius: 2px;
}

.history-story h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.history-story p {
  color: #5f5f5f;
  margin-bottom: 18px;
  font-size: 1.02rem;
}

.history-quote {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  font-family: "Caveat", cursive;
  font-size: 1.75rem;
  font-weight: 600;
  color: #4a3f37;
  line-height: 1.6;
  font-style: normal;
}

.history-quote::before {
  content: "„";
  color: var(--accent-red);
  font-family: "Playfair Display", serif;
  opacity: 0.7;
}

.history-quote::after {
  content: "“";
  color: var(--accent-red);
  font-family: "Playfair Display", serif;
  opacity: 0.7;
}

.history-image {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.15);
  position: relative;
}

.history-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05),
    rgba(0, 0, 0, 0.25)
  );
}

.history-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* History Editorial Generations */
.history-generations {
  padding: 56px 0 88px;
  background: #ffffff;
}

.history-generations-intro {
  margin-bottom: 40px;
}

.history-generations-intro h2 {
  margin-bottom: 0;
}

.generation-block {
  padding: 32px 0;
  border-top: 1px solid var(--border-light);
}

.generation-block:first-of-type {
  border-top: none;
  padding-top: 0;
}

.generation-year {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 14px;
}

.generation-block.milestone {
  background: transparent;
  border-radius: 0;
  border-left: none;
  padding: 32px 0;
}

.generation-block.milestone .generation-year {
  position: relative;
  padding-left: 14px;
}

.generation-block.milestone .generation-year::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 1px;
  background: var(--border-light);
  transform: translateY(-50%);
}

.generation-block-center {
  text-align: center;
}

.generation-block-center img {
  width: 100%;
  max-width: 980px;
  max-height: 460px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.generation-block.old img {
  filter: grayscale(100%) contrast(1.05);
}

.generation-block.current img {
  filter: none;
}

.generation-caption {
  margin: 14px auto 0;
  max-width: 640px;
  color: var(--text-muted);
}

.generation-block-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: 36px;
}

.generation-block-split .generation-content {
  max-width: 460px;
  margin-left: auto;
}

.generation-block-split.reverse {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.generation-block-split.reverse .generation-content {
  margin-left: 0;
  margin-right: auto;
}

.generation-image-wrap img {
  width: 100%;
  max-height: 360px;
  height: auto;
  object-fit: contain;
  display: block;
}

.generation-content p {
  margin-bottom: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.generation-mini-gallery-label {
  margin: 28px auto 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.generation-mini-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 14px auto 0;
  max-width: 640px;
}

.generation-gallery-item {
  width: 96px;
  height: 96px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.generation-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.generation-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.generation-gallery-item:hover img {
  transform: scale(1.08);
}

.history-timeline {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.timeline-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf8 100%);
  border-radius: 18px;
  padding: 30px;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
}

.timeline-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
}

.timeline-card span {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 12px;
}

.timeline-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.history-gallery {
  background: var(--bg-cream);
  padding: 100px 0;
}

.history-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.history-gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
}

.history-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

.history-gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.history-gallery-item:hover img {
  transform: scale(1.05);
}

.history-gallery-item.is-hidden {
  display: none;
}

.history-gallery-item .gallery-caption {
  background: var(--accent-red);
  color: white;
  font-size: 0.75rem;
  letter-spacing: 0.8px;
  padding: 6px 12px;
  border-radius: 6px;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(171, 49, 49, 0.4);
  opacity: 1;
  transform: translateY(0);
}

.history-final-cta {
  background: linear-gradient(180deg, #ffffff 0%, #f7f2ea 100%);
  padding: 90px 0;
  text-align: center;
}

.history-final-cta h2 {
  margin-bottom: 14px;
}

.history-final-cta p {
  color: var(--text-muted);
  margin-bottom: 26px;
}

.history-cta {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-red);
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(171, 49, 49, 0.35);
}

.history-cta:hover {
  background: #8a2727;
  transform: translateY(-1px);
  color: #ffffff;
}

.history-cta:focus {
  outline: 2px solid var(--accent-red);
  outline-offset: 3px;
}

@media (max-width: 991px) {
  .history-hero h1 {
    font-size: 2.6rem;
  }

  .history-generations {
    padding: 24px 0 72px;
  }

  .generation-block {
    padding: 28px 0;
  }

  .generation-block.milestone {
    padding: 28px 0;
  }

  .generation-block.milestone .generation-year {
    padding-left: 0;
  }

  .generation-block.milestone .generation-year::before {
    display: none;
  }

  .generation-block-split,
  .generation-block-split.reverse {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .generation-block-split.reverse .generation-image-wrap {
    order: 1;
  }

  .generation-block-split.reverse .generation-content {
    order: 2;
  }

  .generation-block-split .generation-content,
  .generation-block-split.reverse .generation-content {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .generation-block-center img {
    max-height: 360px;
  }

  .generation-image-wrap img {
    max-height: 280px;
  }

  .generation-gallery-item {
    width: 76px;
    height: 76px;
  }

  .history-timeline {
    grid-template-columns: 1fr;
  }

  .history-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .history-hero {
    padding: 100px 0 70px;
  }

  .history-story {
    padding: 28px;
  }

  .history-gallery-grid {
    grid-template-columns: 1fr;
  }

  .history-gallery-item img {
    height: 220px;
  }
}
