/* ===================================================
   BROTHERS AMSTETTEN - REDESIGN CSS
   One-Pager with Scrolling Sections & Color Coding
   ================================================== */

/* ===== FONT FACES ===== */
@font-face {
  font-family: "Gliker";
  src: url("../fonts/gliker-bold.ttf") format("truetype");
  font-weight: bold;
}

@font-face {
  font-family: "Brittany Signature";
  src: url("../fonts/BrittanySignature.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "PT Sans";
  src: url("../fonts/PTSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "PT Sans";
  src: url("../fonts/PTSans-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "PT Sans";
  src: url("../fonts/PTSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "PT Sans";
  src: url("../fonts/PTSans-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
/* ===== ROOT COLORS & VARIABLES ===== */
:root {
  /* Color Palette */
  --color-beige: #d2c1a5;
  --color-dark-brown: #4d3c33;
  --color-green: #2f4a3c;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-red-accent: #c41e3a;

  /* Typography */
  --font-heading: "Gliker", sans-serif;
  --font-body: "PT Sans", sans-serif;

  /* Sizes */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* Transitions */
  --transition: 0.3s ease;

  /* Scroll offset for anchored sections */
  --section-scroll-offset: 90px;

}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Page-specific override: prevent a dark seam below fixed header on legal page */
body.impressum-page {
  background-color: #ffffff;
}

body.impressum-page .navbar {
  box-shadow: none;
}
/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

.heading-1 {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
}

.heading-2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.heading-3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.text-body {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.section-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: var(--spacing-lg);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.text-white {
  color: var(--color-white);
}

/* ===== BUTTONS ===== */
.btn {
  padding: var(--spacing-sm) var(--spacing-lg);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
}

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

.btn-primary:hover {
  background-color: #3a2a25;
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background-color: #a01830;
  transform: translateY(-2px);
}

.btn-static-text,
.btn-static-text:visited,
.btn-static-text:hover,
.btn-static-text:focus,
.btn-static-text:focus-visible,
.btn-static-text:active {
  color: var(--color-white);
  text-decoration: none;
}

.btn-outline {
  background-color: transparent;
  color: var(--color-dark-brown);
  border: 2px solid var(--color-dark-brown);
}

.btn-outline:hover {
  background-color: var(--color-dark-brown);
  color: var(--color-white);
}

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

.btn-outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-dark-brown);
}

.btn-call-kaisersaal .icon {
  width: 1rem;
  height: 1rem;
  filter: brightness(0) invert(1);
}

.btn-call-kaisersaal:hover .icon,
.btn-call-kaisersaal:focus .icon {
  filter: none;
}

/* ===== NAVBAR (STICKY) ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-dark-brown);
  color: var(--color-white);
  padding: 12px 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  height: auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  gap: var(--spacing-lg);
}

.navbar-logo-wrapper {
  flex-shrink: 0;
}

.navbar-logo {
  text-decoration: none;
  color: var(--color-beige);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.navbar-logo,
.navbar-logo * {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
}

.navbar-logo:active,
.navbar-logo:active * {
  background-color: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}

@supports (-webkit-touch-callout: none) {
  html,
  body,
  .navbar,
  .navbar * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
  }

  .navbar-logo,
  .navbar-logo * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
    background-color: transparent !important;
  }

  .navbar a,
  .navbar button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }

  .navbar a:active,
  .navbar a:focus,
  .navbar button:active,
  .navbar button:focus {
    background-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
  }

  a,
  a * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
  }
}

.navbar-logo:focus {
  outline: none;
}

.navbar-logo:focus-visible {
  outline: 2px solid var(--color-beige);
  outline-offset: 4px;
}

@media (hover: none) and (pointer: coarse) {
  .navbar-logo:focus-visible {
    outline: none;
  }

  .navbar a,
  .navbar a * {
    outline: none !important;
    box-shadow: none !important;
  }
}

.logo-text-large {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1;
  -webkit-user-select: none;
  user-select: none;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.logo-sub {
  font-family: "Brittany Signature", cursive;
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.3px;
  line-height: 1;
  margin-top: 0.15rem;
  -webkit-user-select: none;
  user-select: none;
}

.navbar-menu {
  display: flex;
  gap: var(--spacing-xl);
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: var(--transition);
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--color-white);
}

.navbar .navbar-logo:hover,
.navbar .navbar-logo:focus,
.navbar .navbar-logo:hover .logo-text-large,
.navbar .navbar-logo:hover .logo-sub,
.navbar .navbar-logo:focus .logo-text-large,
.navbar .navbar-logo:focus .logo-sub {
  color: var(--color-beige);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-beige);
  transition: var(--transition);
}

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

.btn-hours {
  background-color: var(--color-red-accent);
  color: var(--color-white);
  border: none;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 0.9rem;
  transition: var(--transition);
}

/* Local icon system (uses assets/icons/*.svg) */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  vertical-align: middle;
  object-fit: contain;
}

.btn-hours .icon {
  width: 1.1rem;
  height: 1.1rem;
  filter: brightness(0) invert(1);
}

.btn-hours:hover {
  background-color: #a01830;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hours Popup */
.hours-popup {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--color-white);
  color: #333;
  padding: var(--spacing-lg);
  margin-top: var(--spacing-sm);
  border-radius: 4px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: none;
  min-width: 300px;
  z-index: 1001;
}

.hours-popup.active {
  display: block;
}

.hours-popup-content {
  position: relative;
}

.popup-close {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
}

.hours-popup h3 {
  margin-bottom: var(--spacing-md);
  padding-right: 2.2rem;
  color: var(--color-dark-brown);
}

.hours-popup p {
  margin-bottom: var(--spacing-sm);
  line-height: 1.8;
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  right: var(--spacing-lg);
  bottom: var(--spacing-lg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-family: var(--font-body);
}

.floating-btn-reserve {
  background-color: var(--color-red-accent);
  color: var(--color-white);
}

.floating-btn-reserve:hover {
  background-color: #a01830;
  transform: scale(1.05);
}

.floating-btn-menu {
  background-color: var(--color-dark-brown);
  color: var(--color-white);
}

.floating-btn-menu:hover {
  background-color: #3a2a25;
  transform: scale(1.05);
}

.floating-btn .icon {
  width: 1.3rem;
  height: 1.3rem;
  filter: brightness(0) invert(1);
}

/* ===== MAIN CONTENT ===== */
.one-pager {
  margin-top: 110px; /* Account for fixed navbar */
}

.section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-2xl) 0;
  scroll-margin-top: var(--section-scroll-offset);
}

.section:not(.hero-section) {
  z-index: 2;
}

.section-reveal-target {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.section-reveal-target.is-visible {
  opacity: 1;
  transform: none;
}

.impressum-section .section-container {
  opacity: 1;
  transform: none;
}

.impressum-section .text-body {
  color: #333;
  opacity: 1;
}


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

.section-container {
  max-width: 1200px;
  width: 100%;
  padding: 0 var(--spacing-lg);
}

/* ===== 1. HERO SECTION ===== */
.hero-background {
  position: fixed;
  inset: 0;
  z-index: -2;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  transition: background 0.3s ease;
  z-index: 1;
}

.hero-section {
  position: relative;
  height: 100vh !important;
  min-height: 100svh;
  padding: 0;
  margin-top: -55px;
  overflow: visible;
  z-index: 0;
  background-color: transparent;
}

.hero-overlay.scrolling {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.6));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: var(--spacing-2xl);
}

.hero-logo h1 {
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: 3px;
  margin: 0;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 2rem;
  letter-spacing: 4px;
  margin-bottom: var(--spacing-lg);
}

.hero-tagline {
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.scroll-indicator {
  position: absolute;
  bottom: var(--spacing-2xl);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--color-white);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ===== 2. WIR SECTION ===== */
.wir-section {
  position: relative;
  z-index: 10;
  margin-top: -60px;
}

.wir-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.wir-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.wir-content h2 {
  color: var(--color-dark-brown);
}

.wir-content h3 {
  color: var(--color-dark-brown);
  margin-bottom: var(--spacing-lg);
  font-size: 1.8rem;
}

.wir-content {
  color: var(--color-dark-brown);
}

.wir-highlights {
  list-style: none;
  margin: var(--spacing-xl) 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.wir-highlights li {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  font-size: 1.1rem;
  color: var(--color-dark-brown);
}

.wir-highlights .icon {
  width: 1.5rem;
  height: 1.5rem;
  filter: brightness(0) saturate(100%);
}

/* ===== 3. KULINARIK SECTION ===== */
.kulinarik-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-2xl);
}

.meal-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: var(--spacing-lg);
  border-radius: 8px;
  text-align: center;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.meal-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.meal-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-beige);
}

.meal-icon .icon {
  width: 3rem;
  height: 3rem;
  filter: invert(85%) sepia(11%) saturate(377%) hue-rotate(352deg) brightness(90%) contrast(85%);
}

.meal-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--color-white);
}

.meal-time {
  font-size: 0.9rem;
  color: var(--color-beige);
  margin-bottom: var(--spacing-md);
}

.meal-description {
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
  font-size: 0.95rem;
}

@keyframes meal-icon-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes meal-icon-pulse-once {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

@keyframes meal-icon-orbit-wiggle {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(-14deg); }
  50% { transform: rotate(8deg); }
  75% { transform: rotate(-6deg); }
  100% { transform: rotate(0deg); }
}

.meal-card[data-meal="fruehstueck"]:hover .meal-icon .icon,
.meal-card[data-meal="fruehstueck"]:focus-within .meal-icon .icon {
  animation: meal-icon-spin 0.9s linear;
}

.meal-card[data-meal="mittag"]:hover .meal-icon .icon,
.meal-card[data-meal="mittag"]:focus-within .meal-icon .icon {
  animation: meal-icon-pulse-once 0.6s ease;
}

.meal-card[data-meal="standardkarte"]:hover .meal-icon .icon,
.meal-card[data-meal="standardkarte"]:focus-within .meal-icon .icon {
  animation: meal-icon-orbit-wiggle 0.7s ease;
}

/* ===== IMAGE POPUPS ===== */
.image-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
}

.image-popup.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.popup-content {
  position: relative;
  z-index: 2001;
  max-width: 90vw;
  max-height: 90vh;
}

.popup-image {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
}

.image-popup .popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--color-red-accent);
  color: var(--color-white);
  border: none;
  width: 40px;
  height: 40px;
  padding: 1px 0 0;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  font-family: Arial, sans-serif;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2002;
}

.image-popup .popup-close:hover {
  background-color: #a01830;
}

/* Hours popup close button (override image popup styles) */
.hours-popup .popup-close {
  top: -2px;
  right: 0;
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 50%;
  background: none;
  color: #999;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hours-popup .popup-close:hover {
  background: none;
  color: #333;
}

/* ===== 4. SPEISEKARTE SECTION ===== */
.menu-toggle-group {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin: var(--spacing-2xl) 0;
  flex-wrap: wrap;
}

.menu-toggle-btn {
  padding: var(--spacing-sm) var(--spacing-lg);
  border: 2px solid var(--color-dark-brown);
  background-color: transparent;
  color: var(--color-dark-brown);
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition);
}

.menu-toggle-btn.active {
  background-color: var(--color-dark-brown);
  color: var(--color-white);
}

.menu-toggle-btn:hover {
  background-color: var(--color-dark-brown);
  color: var(--color-white);
}

.menu-content {
  position: relative;
}

.menu-tab {
  display: none;
  animation: slideIn 0.5s ease;
}

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

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.menu-item {
  padding: var(--spacing-lg) 0;
  border-bottom: 1px solid #ddd;
}

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

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--spacing-sm);
}

.menu-item-header h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-dark-brown);
  margin: 0;
}

.menu-price {
  color: var(--color-red-accent);
  font-weight: 700;
  font-size: 1.1rem;
}

.menu-description {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

.menu-actions {
  text-align: center;
  margin-top: var(--spacing-2xl);
}

.review-links {
  margin-top: var(--spacing-lg);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  padding-top: 3px;
  overflow-x: hidden;
}

.review-link-card {
  text-decoration: none;
  color: var(--color-dark-brown);
  background: transparent;
  border: 1px solid rgba(210, 193, 165, 0.35);
  border-radius: 12px;
  padding: 0.42rem 0.5rem 0.46rem;
  text-align: left;
  display: flex;
  gap: 0.38rem;
  align-items: center;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    color var(--transition),
    background-color var(--transition);
}

.review-link-card.review-reveal {
  opacity: 0;
  transform: translateX(-24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.review-link-card.review-reveal.review-reveal--from-right {
  transform: translateX(24px);
}

.review-link-card.review-reveal.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.review-link-card:visited {
  color: var(--color-dark-brown);
}

.review-link-card:hover,
.review-link-card:focus-visible,
.review-link-card:active,
.review-link-card.review-reveal:hover,
.review-link-card.review-reveal:focus-visible,
.review-link-card.review-reveal:active,
.review-link-card.review-reveal.review-reveal--from-right:hover,
.review-link-card.review-reveal.review-reveal--from-right:focus-visible,
.review-link-card.review-reveal.review-reveal--from-right:active {
  transform: translateY(-2px);
  border-color: rgba(210, 193, 165, 0.75);
  box-shadow: none;
  color: var(--color-dark-brown);
  background: rgba(77, 60, 51, 0.08);
  transition:
    transform var(--transition),
    border-color var(--transition),
    color var(--transition),
    background-color var(--transition);
}

.review-link-card--google {
  border-color: rgba(66, 133, 244, 0.7);
}

.review-link-card--google:hover,
.review-link-card--google:focus-visible {
  border-color: rgba(66, 133, 244, 1);
}

.review-link-card--foodora {
  border-color: rgba(255, 43, 133, 0.7);
}

.review-link-card--foodora:hover,
.review-link-card--foodora:focus-visible {
  border-color: rgba(255, 43, 133, 1);
}

@media (prefers-reduced-motion: reduce) {
  .review-link-card.review-reveal,
  .review-link-card.review-reveal.review-reveal--from-right,
  .review-link-card.review-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
}

.review-link-logo {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.review-link-logo--google {
  color: #fff;
  background: conic-gradient(
    #4285f4 0 25%,
    #34a853 25% 50%,
    #fbbc05 50% 75%,
    #ea4335 75% 100%
  );
}

.review-link-logo--foodora {
  color: #fff;
  background: linear-gradient(145deg, #ff2b85, #d90f67);
}

.review-link-body {
  min-width: 0;
  flex: 1;
}

.review-link-head {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.review-link-brand {
  font-size: 0.7rem;
  font-family: var(--font-body);
  letter-spacing: 0.3px;
  font-weight: 600;
  color: var(--color-dark-brown);
}

.review-link-score-row {
  margin-top: 0.08rem;
  display: flex;
  align-items: baseline;
  gap: 0.28rem;
}

.review-link-rating {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-dark-brown);
}

.review-link-stars {
  margin: 0;
  color: #f2c14e;
  letter-spacing: 0.06rem;
  font-size: 0.6rem;
  transform: translateY(-1px);
}

.review-link-count {
  margin: 0.08rem 0 0 0;
  font-size: 0.58rem;
  color: rgba(77, 60, 51, 0.85);
}

/* ===== 5. RESERVIEREN SECTION ===== */
.reservieren-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-2xl);
  align-items: stretch;
}

.reservation-form-wrapper,
.kaisersaal-info {
  height: 100%;
}

.reservation-form-wrapper {
  background-color: rgba(255, 255, 255, 0.05);
  padding: var(--spacing-lg);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.reservation-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.35rem;
}

.form-help {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  line-height: 1.4;
}

.form-help--warn {
  color: rgba(255, 195, 161, 0.95);
}

.form-input {
  padding: var(--spacing-md);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  font-family: var(--font-body);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: rgba(210, 193, 165, 0.95);
  box-shadow: 0 0 0 3px rgba(210, 193, 165, 0.18);
  background-color: rgba(255, 255, 255, 0.16);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-input option {
  color: #333;
  background-color: var(--color-white);
}

.form-input option[data-full="true"] {
  color: #7a7a7a;
  text-decoration: line-through;
  font-style: italic;
}

.form-input option[data-low-availability="true"] {
  color: #9a5b00;
  font-weight: 600;
}

#reservation-date.form-input {
  color-scheme: dark;
  min-height: 48px;
}

#reservation-date.form-input::-webkit-calendar-picker-indicator {
  filter: invert(1) sepia(0.1) saturate(0.3) brightness(1.1);
  opacity: 0.9;
  cursor: pointer;
}

#reservation-time.form-input,
#reservation-persons.form-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-height: 48px;
  padding-right: 2.4rem;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.85) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.85) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.custom-date-picker {
  margin-top: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(24, 31, 27, 0.95);
  padding: 0.55rem;
  display: none;
}

.custom-date-picker.is-open {
  display: block;
}

.custom-date-picker__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.custom-date-picker__nav-wrap {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.custom-date-picker__title {
  color: var(--color-white);
  font-size: 0.9rem;
}

.custom-date-picker__nav {
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
  line-height: 1;
}

.custom-date-picker__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.2rem;
}

.custom-date-picker__weekday {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.62rem;
  font-weight: 600;
  padding: 0.18rem 0;
}

.custom-date-picker__empty {
  display: block;
  min-height: 1.55rem;
}

.custom-date-picker__day {
  min-height: 1.55rem;
  border: 1px solid transparent;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  font-size: 0.76rem;
  cursor: pointer;
}

.custom-date-picker__day.is-today {
  border-color: rgba(210, 193, 165, 0.8);
}

.custom-date-picker__day.is-selected {
  background: rgba(210, 193, 165, 0.3);
  border-color: rgba(210, 193, 165, 0.95);
}

.custom-date-picker__day.is-disabled,
.custom-date-picker__day:disabled {
  color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.02);
  cursor: not-allowed;
}

.mobile-native-hidden {
  display: none !important;
}

.custom-select {
  position: relative;
}

.custom-select__trigger {
  width: 100%;
  text-align: left;
  padding-right: 0.9rem;
  position: relative;
}

.custom-select__trigger::after {
  content: none;
}

.custom-select.is-open .custom-select__trigger::after {
  content: none;
}

.custom-select__panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.28rem);
  z-index: 22;
  display: none;
  background: rgba(24, 31, 27, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  padding: 0.3rem;
  max-height: 15rem;
  overflow: hidden;
}

.custom-select.is-open .custom-select__panel {
  display: block;
}

.custom-select__panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.custom-select__panel-title {
  color: var(--color-white);
  font-size: 0.85rem;
}

.custom-select__options {
  display: block;
  max-height: 12rem;
  overflow-y: auto;
}

.custom-select__option {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  text-align: left;
  padding: 0.46rem 0.52rem;
  font-size: 0.82rem;
  cursor: pointer;
}

.custom-select__option + .custom-select__option {
  margin-top: 0.2rem;
}

.custom-select__option.is-selected {
  border-color: rgba(210, 193, 165, 0.85);
  background: rgba(210, 193, 165, 0.22);
}

.custom-select__option.is-warning {
  color: #ffd198;
}

.custom-select__option.is-full,
.custom-select__option.is-disabled,
.custom-select__option:disabled {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.02);
}

.custom-picker-close {
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 900px), (pointer: coarse) {
  body.picker-open {
    overflow: auto;
    touch-action: auto;
  }

  body.picker-open::before {
    content: none;
  }

  .custom-date-picker.is-open {
    position: fixed;
    left: 50%;
    top: 50vh;
    top: 50dvh;
    transform: translate(-50%, -50%);
    width: min(92vw, 430px);
    max-height: 82vh;
    overflow-y: auto;
    margin: 0 !important;
    padding: 0.85rem;
    border-radius: 14px;
    z-index: 1300;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.36);
  }

  .custom-date-picker__title {
    font-size: 1.05rem;
  }

  .custom-select__panel-title {
    font-size: 1rem;
  }

  .custom-date-picker__nav {
    width: 2rem;
    height: 2rem;
    font-size: 1.1rem;
  }

  .custom-picker-close {
    width: 2rem;
    height: 2rem;
    font-size: 1.2rem;
  }

  .custom-date-picker__grid {
    gap: 0.3rem;
  }

  .custom-date-picker__weekday {
    font-size: 0.74rem;
    padding: 0.26rem 0;
  }

  .custom-date-picker__empty {
    min-height: 2.25rem;
  }

  .custom-date-picker__day {
    min-height: 2.25rem;
    font-size: 0.96rem;
    border-radius: 8px;
  }

  .custom-select.is-open .custom-select__panel {
    position: fixed;
    left: 50%;
    right: auto;
    top: 50vh;
    top: 50dvh;
    bottom: auto;
    transform: translate(-50%, -50%);
    width: min(92vw, 430px);
    height: auto;
    max-height: 82vh;
    z-index: 1300;
    margin: 0 !important;
    padding: 0.85rem;
    border-radius: 14px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.36);
    display: flex;
    flex-direction: column;
  }

  .custom-select__option {
    padding: 0.72rem 0.72rem;
    font-size: 0.95rem;
    border-radius: 9px;
  }

  .custom-select__options {
    max-height: calc(82vh - 6rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.form-textarea {
  min-height: 120px;
  max-height: 280px;
  resize: none;
  overflow-y: hidden;
}

.form-consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.6rem;
}

.form-checkbox {
  margin-top: 0.2rem;
  width: 1rem;
  height: 1rem;
  accent-color: var(--color-red-accent);
}

.form-consent-label {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  line-height: 1.45;
}

.form-consent-label a {
  color: var(--color-beige);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-consent-label a:hover {
  color: var(--color-white);
}

.form-status {
  margin-top: var(--spacing-sm);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  line-height: 1.4;
}

.form-status--success {
  background-color: rgba(210, 193, 165, 0.2);
  border-color: rgba(210, 193, 165, 0.8);
  color: var(--color-white);
}

.form-status--error {
  background-color: rgba(196, 30, 58, 0.2);
  border-color: rgba(196, 30, 58, 0.8);
  color: var(--color-white);
}

.kaisersaal-info {
  background-color: rgba(255, 255, 255, 0.05);
  padding: var(--spacing-lg);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.kaisersaal-image {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.kaisersaal-image-trigger {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: var(--spacing-lg);
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
  border-radius: 8px;
  overflow: hidden;
}

.kaisersaal-image-trigger:focus-visible {
  outline: 2px solid var(--color-beige);
  outline-offset: 4px;
}

@keyframes kaisersaal-click-hint-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.kaisersaal-image-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 2.1rem;
  height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.55);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  animation: kaisersaal-click-hint-pulse 1s ease 0.2s 2;
}

.kaisersaal-image-hint .icon {
  width: 1.3rem;
  height: 1.3rem;
  filter: brightness(0) invert(1);
}

.kaisersaal-image-trigger:hover .kaisersaal-image-hint,
.kaisersaal-image-trigger:focus-visible .kaisersaal-image-hint {
  animation: kaisersaal-click-hint-pulse 0.7s ease 1;
}

.kaisersaal-title {
  color: var(--color-beige);
  margin-bottom: var(--spacing-sm);
}

.kaisersaal-subtitle {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-md);
}

.kaisersaal-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-lg);
}

.kaisersaal-features {
  list-style: none;
  margin-bottom: var(--spacing-lg);
}

.kaisersaal-features li {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-sm);
}

/* ===== 6. EVENTS SECTION ===== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin: var(--spacing-2xl) 0;
}

.event-card {
  background-color: #f9f9f9;
  padding: var(--spacing-lg);
  border-radius: 8px;
  border-left: 4px solid var(--color-red-accent);
  transition: var(--transition);
}

.event-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.event-date {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.event-day {
  background-color: var(--color-red-accent);
  color: var(--color-white);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
}

.event-time {
  background-color: var(--color-dark-brown);
  color: var(--color-white);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
}

.event-title {
  color: var(--color-dark-brown);
  margin-bottom: var(--spacing-sm);
}

.event-description {
  color: #666;
  margin-bottom: var(--spacing-md);
}

.event-highlight {
  color: var(--color-red-accent);
  font-weight: 600;
}

.event-newsletter {
  background-color: var(--color-dark-brown);
  color: var(--color-white);
  padding: var(--spacing-2xl);
  text-align: center;
  border-radius: 8px;
  margin-top: var(--spacing-2xl);
}

.event-newsletter h3 {
  color: var(--color-white);
  margin-bottom: var(--spacing-sm);
}

.newsletter-form {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form input {
  flex: 1;
  padding: var(--spacing-md);
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
}

/* ===== 7. KONTAKT / FOOTER ===== */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
}

.kontakt-info {
  color: var(--color-white);
}

.kontakt-title {
  color: var(--color-beige);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-lg);
}

.contact-block {
  margin-bottom: var(--spacing-lg);
}

.contact-block h4 {
  color: var(--color-beige);
  margin-bottom: var(--spacing-sm);
  font-size: 1rem;
}

.contact-block p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.contact-block a {
  color: var(--color-beige);
  text-decoration: none;
  transition: var(--transition);
}

.contact-block a:hover {
  color: var(--color-white);
}

.social-links {
  display: flex;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-beige);
  border-radius: 50%;
  color: var(--color-beige);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--color-beige);
  color: var(--color-black);
}

.social-links .icon {
  width: 1.25rem;
  height: 1.25rem;
  filter: invert(85%) sepia(11%) saturate(377%) hue-rotate(352deg) brightness(90%) contrast(85%);
}

.social-links a:hover .icon {
  filter: brightness(0) saturate(100%);
}

.kontakt-map {
  position: relative;
  min-height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.kontakt-map iframe[data-map-iframe] {
  display: none;
  width: 100%;
  height: 400px;
  border: 0;
}

.kontakt-map.maps-enabled iframe[data-map-iframe] {
  display: block;
}

.map-consent {
  min-height: 400px;
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  text-align: center;
  color: var(--color-white);
  background: linear-gradient(135deg, rgba(77, 60, 51, 0.95), rgba(47, 74, 60, 0.95));
}

.map-consent p {
  margin: 0;
  max-width: 520px;
}

.map-consent-note {
  font-size: 0.9rem;
  opacity: 0.9;
}

.map-consent.is-hidden {
  display: none;
}

.map-consent-actions {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
}

.map-consent-actions [data-revoke-maps] {
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  letter-spacing: 0.4px;
  border-radius: 3px;
}

.footer {
  padding-top: var(--spacing-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  margin-top: var(--spacing-2xl);
}

.footer p {
  margin-bottom: var(--spacing-md);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .navbar-menu {
    gap: var(--spacing-lg);
  }

  .nav-link {
    font-size: 0.85rem;
  }

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

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

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

  .hero-logo h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --section-scroll-offset: 120px;
  }

  .navbar-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar-container {
    padding: 0 var(--spacing-md);
    gap: var(--spacing-md);
  }

  .navbar.mobile-menu-open .navbar-menu {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--color-dark-brown);
    padding: var(--spacing-lg);
    gap: var(--spacing-md);
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
  }

  .hero-cta {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .logo-text-large {
    font-size: 1.9rem;
    letter-spacing: 2px;
  }

  .navbar .logo-sub {
    font-size: 0.9rem;
  }

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

  .btn-hours {
    display: none;
  }

  .floating-buttons {
    right: var(--spacing-md);
    bottom: var(--spacing-md);
    gap: var(--spacing-sm);
  }

  .floating-btn {
    padding: var(--spacing-md);
    font-size: 0;
  }

  .floating-btn span {
    display: none;
  }

  .floating-btn .icon {
    width: 1.5rem;
    height: 1.5rem;
    filter: brightness(0) invert(1);
  }

  .menu-toggle-group {
    gap: var(--spacing-xs);
  }

  .menu-toggle-btn {
    padding: var(--spacing-sm);
    font-size: 0.8rem;
  }

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

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

  .review-links {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .section {
    padding: var(--spacing-xl) 0;
  }

  .hero-section {
    height: 80vh !important;
  }
}

@media (max-width: 480px) {
  :root {
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.25rem;
  }

  .navbar {
    padding: var(--spacing-md) 0;
  }

  .navbar-container {
    flex-wrap: wrap;
  }

  .navbar-logo-wrapper {
    order: 2;
    flex-basis: 100%;
    text-align: center;
    margin-top: var(--spacing-sm);
  }

  .hamburger {
    order: 1;
  }

  .btn-hours {
    order: 3;
  }

  .logo-text-large {
    font-size: 1.6rem;
    letter-spacing: 1.5px;
  }

  .navbar .logo-sub {
    font-size: 0.8rem;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .heading-1 {
    font-size: 2rem;
  }

  .heading-2 {
    font-size: 1.8rem;
  }

  .heading-3 {
    font-size: 1.4rem;
  }

  .wir-highlights li {
    font-size: 0.95rem;
  }

  .event-date {
    flex-direction: column;
  }

  .section-container {
    padding: 0 var(--spacing-md);
  }
}
