/* Pegasos Lindhorst — Nachbau
   Referenz: pegasos-lindhorst.de (Wix) */

@font-face {
  font-family: "thermal";
  font-style: normal;
  font-weight: 300 700;
  src: url("https://static.parastorage.com/fonts/v2/bb3128e8-3fee-4391-bd9d-6c6dad2bbe50/v1/thermal.latin.woff2") format("woff2");
  font-display: swap;
}

:root {
  --gold: #D4AF37;
  --cream: #F5F5DC;
  --navy: #1A2B4F;
  --navy-2: #16233f;
  --sand: #B3A58D;
  --heading-font: "thermal", "Times New Roman", serif;
  --body-font: Arial, Helvetica, sans-serif;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--body-font);
  line-height: 1.6;
}

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

a { color: inherit; text-decoration: none; }

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

/* Header */
.site-header {
  padding: 28px 0 18px;
  border-bottom: 1px solid rgba(245,245,220,0.15);
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.site-header nav a {
  color: var(--cream);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.site-header nav a.active,
.site-header nav a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Eyebrow (EST. 2026 — LINDHORST) */
.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 40px 0 10px;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--sand);
  text-transform: uppercase;
}

.eyebrow .line {
  width: 60px;
  height: 1px;
  background: var(--sand);
}

/* Hero */
.hero {
  text-align: center;
  padding: 10px 0 60px;
}

.hero h1 {
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 92px);
  letter-spacing: -2px;
  color: var(--cream);
  margin: 0 0 28px;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.badge {
  border: 1px solid rgba(245,245,220,0.35);
  border-radius: 6px;
  padding: 18px 26px;
  min-width: 130px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;
}

.badge .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin: 0 auto 10px;
  overflow: hidden;
}

.badge .icon img { width: 100%; height: 100%; object-fit: cover; }

.hero .tagline {
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--cream);
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 14px 34px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid var(--gold);
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,245,220,0.4);
}

/* Two-column intro section */
.intro {
  padding: 60px 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro .image-box {
  border: 1px dashed var(--gold);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.intro .image-box img { width: 100%; height: 100%; object-fit: cover; }

.section-label {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--sand);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.section-label .line { width: 40px; height: 1px; background: var(--gold); }

.intro h2 {
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 36px;
  margin: 0 0 16px;
}

.intro p { color: rgba(245,245,220,0.85); margin-bottom: 20px; }

.quote {
  font-style: italic;
  font-size: 15px;
  border: 1px solid rgba(245,245,220,0.3);
  border-radius: 30px;
  padding: 16px 26px;
  display: inline-block;
  margin: 10px 0 24px;
}

.pill-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }

.pill {
  border: 1px solid rgba(245,245,220,0.35);
  border-radius: 4px;
  padding: 10px 18px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mini-card {
  border: 1px solid rgba(245,245,220,0.25);
  border-radius: 4px;
  padding: 16px 20px;
  font-size: 13px;
  max-width: 320px;
}

.mini-card .label {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 6px;
  display: block;
}

/* Three-tile section (Genießen vor Ort / Zum Mitnehmen / Lieferservice) */
.tiles {
  padding: 40px 0 60px;
  text-align: center;
}

.tiles .section-label { justify-content: center; }

.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.tile-card {
  border: 1px solid rgba(212,175,55,0.6);
  border-radius: 60px 6px 6px 6px;
  padding: 40px 28px 32px;
  text-align: center;
  background: transparent;
}

.tile-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
}

.tile-icon img { width: 100%; height: 100%; object-fit: cover; }

.tile-card h3 {
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 24px;
  margin: 0 0 12px;
}

.tile-card p { font-size: 13px; color: var(--sand); margin-bottom: 22px; }

/* Genussmomente section */
.showcase {
  padding: 60px 0;
}

.showcase .gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.showcase .gallery img { border-radius: 6px; width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.showcase h2 { font-family: var(--heading-font); font-weight: 400; font-size: 34px; margin: 0 0 16px; }
.showcase p { color: rgba(245,245,220,0.85); margin-bottom: 20px; }
.showcase .subrow { display: flex; gap: 32px; margin-top: 26px; font-size: 12px; letter-spacing: 1px; color: var(--sand); }
.showcase .subrow strong { display: block; color: var(--cream); font-family: var(--heading-font); font-size: 16px; margin-bottom: 4px; }

/* Contact / visit section */
.visit {
  padding: 60px 0 30px;
  text-align: center;
}

.visit h2 { font-family: var(--heading-font); font-weight: 400; font-size: 34px; margin: 6px 0 40px; }

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  border-top: 1px solid rgba(245,245,220,0.15);
  padding-top: 36px;
}

.visit-grid .label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 0;
}

.gallery-strip img { border-radius: 6px; aspect-ratio: 1/1; object-fit: cover; }

/* Ticker */
.badge-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 30px 0;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-top: 1px solid rgba(245,245,220,0.15);
}

.ticker {
  background: var(--navy-2);
  color: var(--gold);
  padding: 14px 0;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Footer */
.site-footer {
  padding: 50px 0 30px;
  text-align: center;
  font-size: 12px;
  color: var(--sand);
}

.site-footer .logo-mark { width: 44px; margin: 0 auto 16px; opacity: 0.9; }

.site-footer .links { margin-top: 16px; display: flex; justify-content: center; gap: 18px; letter-spacing: 1.5px; text-transform: uppercase; }
.site-footer .links a { border: 1px solid rgba(245,245,220,0.25); padding: 8px 16px; border-radius: 4px; }

/* Menus page */
.menu-hero {
  padding: 40px 0 20px;
  text-align: center;
}

.menu-hero h1 {
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(36px, 6vw, 56px);
  margin: 8px 0 18px;
}

.menu-hero p { max-width: 640px; margin: 0 auto 26px; color: rgba(245,245,220,0.85); font-size: 14px; }

.menu-category { padding: 30px 0; border-top: 1px solid rgba(245,245,220,0.12); }

.menu-category h2 {
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 26px;
  color: var(--gold);
  margin: 0 0 4px;
}

.menu-category .cat-note { font-size: 13px; color: var(--sand); margin-bottom: 20px; font-style: italic; }

.menu-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px dotted rgba(245,245,220,0.2);
}

.menu-item .name-wrap { flex: 1; }
.menu-item .name { font-size: 16px; font-weight: bold; }
.menu-item .desc { font-size: 13px; color: rgba(245,245,220,0.7); margin-top: 2px; }
.menu-item .price { font-family: var(--heading-font); color: var(--gold); font-size: 16px; white-space: nowrap; }

/* Legal pages */
.legal { padding: 50px 0 80px; max-width: 760px; margin: 0 auto; }
.legal h1 { font-family: var(--heading-font); font-weight: 400; font-size: 40px; margin-bottom: 30px; }
.legal h2 { font-family: var(--heading-font); font-weight: 400; font-size: 22px; color: var(--gold); margin: 34px 0 12px; }
.legal p, .legal ul { color: rgba(245,245,220,0.85); font-size: 14px; }
.legal a { color: var(--gold); text-decoration: underline; }

/* Responsive */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .tile-grid, .visit-grid, .gallery-strip { grid-template-columns: 1fr; }
  .showcase .gallery { grid-template-columns: 1fr 1fr; }
  .site-header nav { gap: 18px; }
}
