/* ============================================================
   LOTUS LEAF RESTAURANT BASEL — Hauptstylesheet
   Farben: Olivgrün #93985D | Dunkelbraun #382E27 | Beige #F5EBE0
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

/* --- CSS Variablen --- */
:root {
  --color-green:      #93985D;
  --color-green-dark: #6e7244;
  --color-brown:      #382E27;
  --color-beige:      #F5EBE0;
  --color-beige-dark: #e8d9c8;
  --color-white:      #FFFFFF;
  --color-text:       #2c2420;
  --color-text-light: #6b5e56;
  --font-heading:     'Playfair Display', Georgia, serif;
  --font-body:        'Lato', Arial, sans-serif;
  --transition:       all 0.3s ease;
  --shadow:           0 4px 20px rgba(56, 46, 39, 0.12);
  --shadow-hover:     0 8px 30px rgba(56, 46, 39, 0.2);
  --radius:           4px;
  --max-width:        1200px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-brown);
  color: var(--color-beige);
  padding: 1.2rem 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

#cookie-banner p {
  font-size: 0.9rem;
  flex: 1;
  min-width: 250px;
}

#cookie-banner a {
  color: var(--color-green);
  text-decoration: underline;
}

#cookie-banner .btn-cookie {
  background: var(--color-green);
  color: var(--color-white);
  border: none;
  padding: 0.6rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: var(--transition);
}

#cookie-banner .btn-cookie:hover {
  background: var(--color-green-dark);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 235, 224, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(147, 152, 93, 0.2);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow);
}

.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 52px;
  width: auto;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-nav a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-brown);
  position: relative;
  padding-bottom: 3px;
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-green);
  transition: width 0.3s ease;
}

.navbar-nav a:hover::after,
.navbar-nav a.active::after {
  width: 100%;
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--color-green);
}

/* Reservieren-Button in Nav */
.navbar-nav .btn-nav-reserve {
  background: var(--color-green);
  color: var(--color-white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 700;
}

.navbar-nav .btn-nav-reserve::after {
  display: none;
}

.navbar-nav .btn-nav-reserve:hover {
  background: var(--color-green-dark);
  color: var(--color-white) !important;
}

/* Sprachumschalter */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 1rem;
  border-left: 1px solid rgba(147, 152, 93, 0.3);
  padding-left: 1rem;
}

.lang-switcher button {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  color: var(--color-text-light);
  padding: 0.2rem 0.3rem;
  transition: var(--transition);
}

.lang-switcher button.active,
.lang-switcher button:hover {
  color: var(--color-green);
}

.lang-switcher span {
  color: var(--color-beige-dark);
  font-size: 0.8rem;
}

/* Hamburger Menü */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.navbar-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-brown);
  transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(56, 46, 39, 0.35) 0%,
    rgba(56, 46, 39, 0.5) 60%,
    rgba(56, 46, 39, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 2rem;
  max-width: 800px;
}

.hero-content .hero-tagline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content h1 em {
  font-style: italic;
  color: var(--color-beige);
}

.hero-content p {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background: var(--color-green-dark);
  border-color: var(--color-green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

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

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-brown);
  transform: translateY(-2px);
}

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

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

/* ============================================================
   SECTIONS ALLGEMEIN
   ============================================================ */
.section {
  padding: 6rem 2rem;
}

.section-beige {
  background: var(--color-beige);
}

.section-brown {
  background: var(--color-brown);
  color: var(--color-beige);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 0.8rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--color-brown);
  line-height: 1.2;
}

.section-brown .section-header h2 {
  color: var(--color-beige);
}

.section-header p {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-brown .section-header p {
  color: rgba(245, 235, 224, 0.75);
}

/* Trennlinie unter Überschrift */
.section-header .divider {
  width: 50px;
  height: 2px;
  background: var(--color-green);
  margin: 1.2rem auto 0;
}

/* ============================================================
   HOME — ÜBER UNS SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--color-brown);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.about-text .eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 0.8rem;
}

.about-text p {
  color: var(--color-text-light);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.about-text .btn {
  margin-top: 0.8rem;
}

.about-image {
  position: relative;
}

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

.about-image::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid var(--color-green);
  border-radius: 2px;
  z-index: -1;
}

/* ============================================================
   HOME — HIGHLIGHTS / FEATURES
   ============================================================ */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.highlight-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.highlight-icon {
  display: none;
}

.highlight-icon-line {
  width: 40px;
  height: 2px;
  background: var(--color-green);
  margin: 0 auto 1.5rem;
}

.highlight-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-brown);
  margin-bottom: 0.7rem;
}

.highlight-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* ============================================================
   HOME — ÖFFNUNGSZEITEN
   ============================================================ */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(245, 235, 224, 0.1);
  border-radius: var(--radius);
  border: 1px solid rgba(245, 235, 224, 0.2);
}

.hours-item .day {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-beige);
}

.hours-item .time {
  color: var(--color-green);
  font-size: 0.95rem;
}

.hours-item.closed .time {
  color: rgba(245, 235, 224, 0.4);
}

/* ============================================================
   MENÜ SEITE
   ============================================================ */
.page-hero {
  position: relative;
  height: 45vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 116px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(56, 46, 39, 0.55);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
}

.page-hero-content .eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 0.8rem;
}

.page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
}

/* Menü-Kategorien */
.menu-category {
  margin-bottom: 4rem;
}

.menu-category-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--color-brown);
  margin-bottom: 0.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--color-beige-dark);
}

.menu-category-subtitle {
  color: var(--color-text-light);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 2rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.menu-item {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.menu-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.menu-item-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-item-body {
  padding: 1.2rem 1.5rem;
}

.menu-item-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-brown);
  margin-bottom: 0.4rem;
}

.menu-item-desc {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.menu-item-price {
  font-weight: 700;
  color: var(--color-green);
  font-size: 1rem;
}

.menu-item-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}

.tag {
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tag-veg {
  background: #e8f5e9;
  color: #2e7d32;
}

.tag-vegan {
  background: #f3e5f5;
  color: #6a1b9a;
}

.tag-spicy {
  background: #fce4ec;
  color: #c62828;
}

/* Menükarte als Bild */
.menu-card-img {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: block;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

/* ============================================================
   RESERVIERUNGSFORMULAR
   ============================================================ */
.reservation-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.reservation-info h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-brown);
  margin-bottom: 1rem;
}

.reservation-info .eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 0.8rem;
}

.reservation-info p {
  color: var(--color-text-light);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.reservation-notice {
  background: var(--color-beige);
  border-left: 3px solid var(--color-green);
  padding: 1rem 1.2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
  font-size: 0.92rem;
  color: var(--color-brown);
}

.reservation-notice strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--color-green);
}

.contact-details {
  margin-top: 2rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.contact-detail-item .icon {
  width: 20px;
  flex-shrink: 0;
  color: var(--color-green);
  margin-top: 2px;
}

/* Formular */
.reservation-form {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-brown);
  margin-bottom: 0.4rem;
}

.form-group label .required {
  color: var(--color-green);
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-beige-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(147, 152, 93, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2393985D' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-green);
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.88rem;
  color: var(--color-text-light);
  cursor: pointer;
  line-height: 1.5;
}

.form-checkbox label a {
  color: var(--color-green);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--color-green);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit:hover {
  background: var(--color-green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Erfolgs- und Fehlermeldungen */
.form-message {
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  font-size: 0.95rem;
  display: none;
}

.form-message.success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
  display: block;
}

.form-message.error {
  background: #fce4ec;
  color: #c62828;
  border: 1px solid #ef9a9a;
  display: block;
}

/* ============================================================
   KONTAKT SEITE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-block h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-brown);
  margin-bottom: 1.5rem;
}

.contact-info-block .eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 0.8rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-item-icon {
  display: none;
}

.contact-item-icon-line {
  width: 3px;
  height: 100%;
  min-height: 40px;
  background: var(--color-green);
  flex-shrink: 0;
  border-radius: 2px;
}

.contact-icon-line {
  display: inline-block;
  width: 3px;
  height: 1.2em;
  background: var(--color-green);
  border-radius: 2px;
  vertical-align: middle;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-brown);
  margin-bottom: 0.3rem;
}

.contact-item-text p, .contact-item-text a {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

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

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-brown);
  color: var(--color-beige);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 235, 224, 0.15);
}

.footer-brand img {
  height: 80px;
  width: auto;
  margin-bottom: 1.2rem;
  opacity: 1;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(245, 235, 224, 0.65);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 1.2rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(245, 235, 224, 0.65);
  transition: var(--transition);
}

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

.footer-col p {
  font-size: 0.9rem;
  color: rgba(245, 235, 224, 0.65);
  line-height: 1.8;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(245, 235, 224, 0.45);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(245, 235, 224, 0.45);
  transition: var(--transition);
}

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

/* ============================================================
   IMPRESSUM & DATENSCHUTZ SEITEN
   ============================================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.legal-content h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-brown);
  margin-bottom: 0.5rem;
}

.legal-content .legal-updated {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 3rem;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-brown);
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
}

.legal-content p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.legal-content a {
  color: var(--color-green);
  text-decoration: underline;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid {
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .navbar-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-beige);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    box-shadow: var(--shadow);
    border-top: 1px solid var(--color-beige-dark);
  }

  .navbar-nav.open {
    display: flex;
  }

  .lang-switcher {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    border-top: 1px solid var(--color-beige-dark);
    padding-top: 0.8rem;
  }

  .navbar-toggle {
    display: flex;
  }

  .about-grid,
  .reservation-wrapper,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-image::before {
    display: none;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .section {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .navbar-inner {
    padding: 0.8rem 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .reservation-form {
    padding: 1.5rem;
  }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-green  { color: var(--color-green); }
.text-brown  { color: var(--color-brown); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* Scroll-Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sprachversionen */
[data-lang="en"]:not(.lang-btn) { display: none; }
body.lang-en [data-lang="de"]:not(.lang-btn) { display: none; }
body.lang-en [data-lang="en"]:not(.lang-btn) { display: revert; }

/* Sprachumschalter aktiver Zustand */
.lang-btn {
  opacity: 0.5;
  font-weight: 400;
}
.lang-btn.active {
  opacity: 1;
  font-weight: 700;
  color: var(--color-green);
  text-decoration: underline;
}

/* ============================================================
   RESTAURANT-SPLIT BEREICH (Startseite)
   ============================================================ */
.restaurant-split {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2.5rem;
}

.restaurant-split-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.restaurant-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.restaurant-img-side {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 2rem;
}

.restaurant-split-text {
  padding: 1rem 0 1rem 1rem;
}

.restaurant-split-text h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-brown);
  margin: 0.5rem 0 1.25rem;
  line-height: 1.3;
}

.restaurant-split-text p {
  color: var(--color-text-light);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .restaurant-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .restaurant-split-images {
    grid-template-columns: 1fr 1fr;
  }
  .restaurant-img-main,
  .restaurant-img-side {
    height: 260px;
    margin-top: 0;
  }
  .restaurant-split-text {
    padding: 0;
  }
}

@media (max-width: 500px) {
  .restaurant-split-images {
    grid-template-columns: 1fr;
  }
  .restaurant-img-side {
    display: none;
  }
}

/* ============================================================
   SPEISEKARTE OHNE BILDER (menue.html)
   ============================================================ */
.menu-section {
  margin-bottom: 3.5rem;
}

.menu-section-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-brown);
  border-bottom: 1px solid var(--color-beige-dark);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

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

.menu-list-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(56, 46, 39, 0.07);
}

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

.menu-list-item-left {
  flex: 1;
}

.menu-list-item-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-brown);
  font-weight: 600;
  display: block;
  margin-bottom: 0.2rem;
}

.menu-list-item-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.menu-list-item-price {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-green-dark);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-note {
  font-size: 0.88rem;
  color: var(--color-text-light);
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: var(--color-beige);
  border-left: 3px solid var(--color-green);
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.6;
}

/* Einzelbild im Restaurant-Bereich */
.restaurant-img-single {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .restaurant-img-single {
    height: 320px;
  }
}

/* ============================================================
   TOPBAR — Telefonnummer oben sichtbar
   ============================================================ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  background: var(--color-dark);
  color: var(--color-text-light);
  text-align: right;
  padding: 0.5rem 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.topbar a {
  color: var(--color-beige);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.topbar a:hover {
  color: var(--color-green);
}
.topbar-sep {
  margin: 0 0.8rem;
  opacity: 0.4;
}
@media (max-width: 768px) {
  .topbar {
    text-align: center;
    font-size: 0.78rem;
    padding: 0.4rem 1rem;
  }
}
