/* --------------------------------------------------
   Grunddesign – Farben & Typo
-------------------------------------------------- */
:root {
  /* Haupt-Blau-Töne */
  --primary: #214472;          /* dunkles, edles Griechisch-Blau */
  --primary-soft: #325d9c;     /* etwas helleres Blau */

  /* Akzent für Buttons etc. -> helles Blau */
  --accent: #3c8dde;           /* statt Orange */

  /* Warmer Akzent NUR für die Speisekarte (Preise) */
  --accent-warm: #f3c36b;      /* dezentes Gold, nur sparsam */

  --text-dark: #1f232b;
  --text-light: #7a7f8a;
  --bg-light: #f5f5f7;
  --bg-soft: #f0f2f7;
  --max-width: 1100px;
  --radius: 18px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: white;
  color: var(--text-dark);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* --------------------------------------------------
   Header / Navigation
-------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(
      to bottom,
      rgba(9, 12, 22, 0.78),
      rgba(9, 12, 22, 0.2),
      transparent
    );
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: #f9fafb;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #e5e7eb;
  opacity: 0.8;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile: super simpel, kein Burger-Menü (kann man später ergänzen) */
@media (max-width: 780px) {
  .nav-links {
    display: none;
  }
}

/* --------------------------------------------------
   Hero-Bereich Startseite
-------------------------------------------------- */
.hero {
  position: relative;
  min-height: 85vh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4.5rem 1.5rem 3.5rem;
  gap: 2.5rem;
  align-items: center;
  color: #f9fafb;
}

.hero::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(to top, rgba(6, 11, 25, 0.85), rgba(15, 23, 42, 0.35)),
    url("img/background.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  filter: saturate(1.1);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    circle at top left,
    rgba(60, 141, 222, 0.3),  /* Blau statt Orange */
    transparent 55%
  );
}


.hero-text h1 {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
}

.hero-text h1 span {
  color: var(--accent);
}

.hero-text p {
  max-width: 480px;
  font-size: 1rem;
  color: #e5e7eb;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.badge {
  border-radius: 999px;
  padding: 0.25rem 0.8rem;
  border: 1px solid rgba(248, 250, 252, 0.25);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--accent);   /* ist jetzt Blau */
  color: #111827;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}


.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
  background: #f7cf89;
}

.btn-outline {
  background: transparent;
  color: #787a7d;
  border: 1px solid rgba(248, 250, 252, 0.4);
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.8);
  transform: translateY(-1px);
}

/* Hero-Karte rechts */
.hero-panel {
  background: rgba(15, 23, 42, 0.8);
  border-radius: 24px;
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.hero-panel h2 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.hero-panel p {
  font-size: 0.9rem;
  color: #cbd5f5;
  margin-bottom: 0.8rem;
}

.hero-panel-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #e5e7eb;
}

/* Hero – responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 4rem;
  }

  .hero-panel {
    order: 2;
  }
}

/* --------------------------------------------------
   Generelle Sections unterhalb des Hero
-------------------------------------------------- */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

.section-light {
  background: white;
}

.section-soft {
  background: var(--bg-soft);
  border-radius: 32px 32px 0 0;
  margin-top: 2.5rem;
  padding-top: 3rem;
  padding-bottom: 3.5rem;
}

.section-header {
  margin-bottom: 1.8rem;
}

.section-header h2 {
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}


/* Text + Bild */
.split {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: center;
}

.img-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #0f172a;
  min-height: 230px;
  background-image: url("img/bauernspiess.png");
  background-size: cover;
  background-position: center;
}

/* Highlights / kleine Karte-Auszüge */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.3rem;
}

.card {
  background: white;
  border-radius: 18px;
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow-soft);
}

.dish-header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.dish-desc {
  font-size: 0.9rem;
  color: var(--text-light);
}

.dish-tag {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-soft);
}

/* Galerie */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
  transform: translateY(0);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  background: #0f172a;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
  opacity: 0.96;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.55);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* Reservierung / Kontakt-Karten */
/* Reservierung / Kontakt-Karten */
.flex-two {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Ab Desktop-Breite: nebeneinander in zwei Spalten */
@media (min-width: 900px) {
  .flex-two {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
    align-items: stretch;
  }
}

.info-card {
  background: white;
  border-radius: 20px;
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-soft);
}

.info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.info-card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

.info-row {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.info-row strong {
  display: inline-block;
  width: 120px;
}

/* Form – wenn du später Reservierung per Formular möchtest */
form {
  display: grid;
  gap: 0.9rem;
}

label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
}

input, textarea, select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #d4d8e0;
  padding: 0.6rem 0.75rem;
  font: inherit;
  background: #f9fafb;
}

textarea {
  min-height: 80px;
  resize: vertical;
}

/* --------------------------------------------------
   Speisekarten-Seite (gleiche Klassen wie vorher)
-------------------------------------------------- */
.menu-page {
  max-width: var(--max-width);
  margin: 3rem auto;
  padding: 0 1.5rem 3rem;
}

.menu-page .menu-header {
  text-align: center;
  margin-bottom: 3rem;
}

.menu-page .menu-header h1 {
  font-size: 2.2rem;
  margin-bottom: 0.4rem;
  color: var(--primary);
}

.menu-page .menu-header p {
  color: var(--text-light);
}

/* Grid der Kategorien */
.menu-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.menu-category h3 {
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
  color: var(--primary);
}

.menu-items {
  list-style: none;
}

.menu-item {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-main {
  display: flex;
  justify-content: space-between;
  gap: 0.9rem;
  font-size: 0.95rem;
}

.menu-item-name {
  font-weight: 500;
}

.menu-item-price {
  font-weight: 600;
  white-space: nowrap;
  color: var(--accent-warm);        /* warmes gold nur in der Speisekarte */
}

.menu-item-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.2rem;
}

.menu-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

/* Über-uns Bereich auf Handy untereinander statt nebeneinander */
@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;   /* statt 2 Spalten nur noch 1 */
  }

  .img-card {
    min-height: 220px;            /* etwas kleinere, aber schöne Höhe */
  }
}

/* Reservierung / Öffnungszeiten Boxen auf Handy untereinander */
@media (max-width: 900px) {
  .flex-two {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* --------------------------------------------------
   Footer
-------------------------------------------------- */
.footer {
  padding: 2rem 1.5rem 2.5rem;
  text-align: center;
  font-size: 0.83rem;
  color: #9ca3af;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  margin-top: 2rem;
}

/* Sub-Hero für Speisekarte / Unterseiten */
.subhero {
  background: linear-gradient(
    135deg,
    rgba(33, 68, 114, 0.96),
    rgba(50, 93, 156, 0.92)
  );
  color: #f9fafb;
  padding: 3.5rem 1.5rem 2.6rem;
}

.subhero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.subhero h1 {
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.subhero p {
  font-size: 0.95rem;
  max-width: 520px;
}

.subhero-note {
  opacity: 0.9;
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

/* Menüpage leicht abheben */
.menu-page {
  max-width: var(--max-width);
  margin: 0 auto 3rem;
  padding: 2.5rem 1.5rem 3rem;
  background: #ffffff;
}

.menu-page .menu-header h2 {
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .hero-panel {
    width: 100%;
    margin-top: 1.2rem;
    border-radius: 20px;
    padding: 1.6rem;
  }

  .hero-panel-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 0.95rem;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    padding-right: 0;
  }
}










