﻿/* ============================================================
   Restaurant Tellenbräu – Haupt-Stylesheet
   ============================================================ */

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

/* ── CSS-Variablen ── */
:root {
  --color-primary:      #F5A623;
  --color-primary-dark: #D4881A;
  --color-dark:         #2C2C2C;
  --color-text:         #3D3D3D;
  --color-text-light:   #666666;
  --color-bg:           #FFFFFF;
  --color-bg-warm:      #FBF7F2;
  --color-border:       #E8E0D5;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', 'Helvetica Neue', Arial, sans-serif;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  --container-width: 1200px;
  --border-radius:   8px;
  --shadow:          0 4px 20px rgba(0, 0, 0, 0.08);
  --transition:      all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

.scrollbar-thumb {
  position: fixed;
  right: 4px;
  width: 5px;
  border-radius: 5px;
  background: rgba(245, 166, 35, 0.55);
  z-index: 9999;
  pointer-events: auto;
  cursor: pointer;
  transition: background 0.2s;
}

.scrollbar-thumb:hover,
.scrollbar-thumb.is-dragging {
  background: rgba(245, 166, 35, 0.95);
}

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

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

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

a:hover {
  color: var(--color-primary-dark);
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* ── Typografie ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  line-height: 1.25;
}

h1 { font-size: 2rem; font-weight: 700; }
h2 { font-size: 1.8rem; font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; font-family: var(--font-body); }
h4 { font-size: 1rem; font-weight: 600; font-family: var(--font-body); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Container ── */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Section-Abstände ── */
.section {
  padding: 65px 0;
}

.section-spacious {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (min-width: 768px) {
  .section-spacious {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}

@media (min-width: 1024px) {
  .section-spacious {
    padding-top: 130px;
    padding-bottom: 130px;
  }
}

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

.section-dark {
  background: var(--color-dark);
  color: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
}

.section-title p {
  color: var(--color-text-light);
  max-width: 600px;
  margin: 1rem auto 0;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
}

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

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

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

/* ── Navigation ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar {
  background: var(--color-dark);
  padding: 0;
}

header.scrolled .navbar {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

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

.nav-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--color-dark);
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

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

.nav-menu li a {
  display: block;
  color: #ccc;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-menu li:last-child a {
  border-bottom: none;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--color-primary);
}

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

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero – Startseite ── */
.hero {
  position: relative;
  height: calc(100vh - 70px);
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 70px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  max-width: 750px;
}

.hero-logo {
  height: 80px;
  width: auto;
  margin: 0 auto 1.5rem;
}

.hero-content h1 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

/* ── Öffnungs-Badge (Hero) ── */
.opening-badge {
  position: absolute;
  bottom: 1.75rem;
  left: 1.75rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 0.4rem 0.9rem 0.4rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.opening-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.35);
  position: relative;
}

.opening-badge.is-open .opening-dot {
  background: #5DBB6A;
}

.opening-badge.is-open .opening-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #5DBB6A;
  animation: dot-pulse 4s ease-out infinite;
  pointer-events: none;
}

@keyframes dot-pulse {
  0%   { transform: scale(1);   opacity: 0.75; }
  30%  { transform: scale(3.5); opacity: 0;    }
  100% { transform: scale(3.5); opacity: 0;    }
}

/* ── Page-Hero (Unterseiten) ── */
.page-hero {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 70px;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

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

.page-hero-content h1 {
  color: #fff;
  font-size: 2rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* ── About / Zweispaltig ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.two-col img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.two-col-text h2 {
  margin-bottom: 1rem;
}

.two-col-text p {
  color: var(--color-text-light);
}

/* ── Highlights-Cards ── */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--color-border);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

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

.card-body {
  padding: 1.5rem;
}

.card-body h3 {
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

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

/* ── Öffnungszeiten-Section ── */
.hours-wrapper {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  padding: 2rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.hours-table td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--color-dark);
  text-align: left;
  width: 120px;
}

.hours-table td:last-child {
  text-align: right;
  color: var(--color-text-light);
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-table .closed td {
  color: var(--color-text-light);
  font-style: italic;
}

.hours-accent {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-primary);
  margin: 0 auto 1rem;
  border-radius: 2px;
}

.home-map {
  max-width: 800px;
  margin: 4rem auto 0;
}

.home-map iframe {
  border-radius: var(--border-radius);
  display: block;
  box-shadow: var(--shadow);
}

/* ── Lage-Vorschau (Home) ── */
.map-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.map-info {
  padding: 3.5rem 2rem;
  background: var(--color-dark);
  color: #fff;
}

.map-info h3 {
  color: #fff;
  margin-bottom: 1rem;
}

.map-info p, .map-info address {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.8;
}

.map-info a {
  color: var(--color-primary);
}

.map-info a:hover {
  color: var(--color-primary-dark);
}

.map-embed iframe {
  width: 100%;
  height: 300px;
  display: block;
  border: none;
}

/* ── Speisekarten ── */
.menu-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.menu-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.menu-card-icon {
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.menu-card h3 {
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.menu-card p {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.menu-hint {
  text-align: center;
  padding: 1.5rem;
  background: var(--color-bg-warm);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--color-primary);
  color: var(--color-text-light);
  max-width: 800px;
  margin: 2rem auto 0;
}

/* ── Stübli / Gartenrestaurant – Content ── */
.content-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.content-section img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.content-text h2 {
  margin-bottom: 1rem;
}

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

.cta-box {
  background: var(--color-bg-warm);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  border-top: 3px solid var(--color-primary);
  margin-top: 2rem;
}

.cta-box h3 {
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.cta-box p {
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

/* Saisonaler Hinweis-Banner */
.season-banner {
  background: var(--color-primary);
  color: #fff;
  padding: 1.25rem 2rem;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 2rem 0;
  font-weight: 600;
}

.season-banner .icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* ── Geschichte – Zeitstrahl ── */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 2.5rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 11px;
  top: 4px;
  width: 20px;
  height: 20px;
  background: var(--color-primary);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--color-primary);
}

.timeline-item h3 {
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timeline-item h4 {
  color: var(--color-dark);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

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

/* ── Lage – Kontakt-Section ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  color: var(--color-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-primary);
}

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

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

.contact-item .icon {
  font-size: 1.1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

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

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

.map-full {
  display: flex;
  flex-direction: column;
}

.map-full iframe {
  width: 100%;
  flex: 1;
  min-height: 350px;
  border-radius: var(--border-radius);
  border: none;
  display: block;
}

/* ── Impressum ── */
.impressum-content {
  max-width: 750px;
  padding: 1rem 0 2rem;
}

.impressum-content h2 {
  font-size: 1.4rem;
  margin-top: 4.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}

.impressum-content h2:first-child {
  margin-top: 0;
}

.impressum-content p,
.impressum-content address {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 2;
  margin-bottom: 1rem;
}

.impressum-content address {
  font-style: normal;
}

/* ── Footer ── */
footer {
  background: var(--color-dark);
  color: #fff;
  padding: 5rem 0 0;
  border-top: 3px solid var(--color-primary);
}

.footer-grid {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.footer-col h3 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
}

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

.footer-col a {
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--color-primary);
}

.footer-hours {
  width: 100%;
  border-collapse: collapse;
}

.footer-hours td {
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  vertical-align: top;
}

.footer-hours td:first-child {
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  width: 80px;
}

.footer-bottom {
  margin-top: 4rem;
  padding: 1.75rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  margin: 0;
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
}

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

.footer-minimal {
  padding: 0;
}

.footer-minimal .footer-bottom {
  padding: 2rem 2rem;
}

/* ── Reservierungs-Modal ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 3rem;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modal-in 0.25s ease;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  color: var(--color-text-light);
  line-height: 1;
  padding: 0.25rem 0.5rem;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--color-dark);
}

.modal-box h2 {
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
}

.modal-box > p {
  color: var(--color-text-light);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.modal-contacts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 2px solid var(--color-border);
  border-radius: var(--border-radius);
  color: var(--color-dark);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 600;
}

.modal-contact-item:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-bg-warm);
}

.modal-contact-item .icon {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ── Utility ── */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

/* ============================================================
   Responsive – Tablet (768px+)
   ============================================================ */
@media (min-width: 768px) {
  h1 { font-size: 2.4rem; }

  .section { padding: 90px 0; }

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

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .page-hero { height: 280px; }
  .page-hero-content h1 { font-size: 2.4rem; }

  .two-col {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .contact-layout {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .map-section {
    grid-template-columns: 1fr 1fr;
  }

  .map-embed iframe {
    height: 100%;
    min-height: 300px;
  }

  .content-section {
    grid-template-columns: 1fr 1fr;
  }

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }

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

/* ============================================================
   Responsive – Desktop (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }

  .section { padding: 110px 0; }

  .hero-logo { height: 100px; }

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

  .page-hero { height: 350px; }
  .page-hero-content h1 { font-size: 2.8rem; }

  /* Navigation Desktop */
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: transparent;
    padding: 0;
    border: none;
    gap: 0.25rem;
  }

  .nav-menu li a {
    padding: 0.5rem 0.9rem;
    border-bottom: none;
    border-radius: 3px;
    position: relative;
  }

  .nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0.9rem;
    right: 0.9rem;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: var(--transition);
  }

  .nav-menu li a:hover::after,
  .nav-menu li a.active::after {
    transform: scaleX(1);
  }

  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .map-embed iframe {
    height: 100%;
    min-height: 350px;
  }
}

/* ============================================================
   Responsive – Grosses Desktop (1280px+)
   ============================================================ */
@media (min-width: 1280px) {
  .container {
    padding: 0 2rem;
  }

  .nav-container {
    padding: 0 2rem;
  }
}
