/* ============================================================
   AURO Langen – Offline / Minimal
   Standalone CSS, kein Bootstrap, kein CDN
   ============================================================ */

/* Fonts */
@font-face { font-family:'Raleway'; font-weight:300; font-display:swap;
  src:url('../fonts/raleway-latin-300-normal.woff2') format('woff2'); }
@font-face { font-family:'Raleway'; font-weight:400; font-display:swap;
  src:url('../fonts/raleway-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-weight:300; font-display:swap;
  src:url('../fonts/inter-latin-300-normal.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-weight:400; font-display:swap;
  src:url('../fonts/inter-latin-400-normal.woff2') format('woff2'); }

/* Variables */
:root {
  --gold:         #d3af37;
  --gold-border:  rgba(211,175,55,.22);
  --dark:         #0d0d0d;
  --dark-1:       #141414;
  --dark-2:       #1c1c1c;
  --text:         #f0ebe0;
  --text-muted:   #888;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--dark-1);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.85;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; }
::selection { background: var(--gold); color: var(--dark); }

/* Layout */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Hero ───────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/restaurant-hero-2.webp') center 40% / cover no-repeat;
  transform: scale(1.04);
  transition: transform 7s ease;
}
#hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(13,13,13,.6) 0%,
    rgba(13,13,13,.45) 50%,
    rgba(13,13,13,.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 2.5rem;
  width: 100%;
}

.hero-logo {
  width: clamp(160px, 26vw, 320px);
  margin: 0 auto 2.5rem;
  filter: drop-shadow(0 0 28px rgba(211,175,55,.2));
}

.hero-eyebrow {
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.hero-headline {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.3rem, 7.8vw, 4.8rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: .06em;
  color: var(--text);
  margin-bottom: 1.4rem;
}
.hero-headline span { display: block; white-space: nowrap; }

.hero-sub {
  font-size: .95rem;
  font-weight: 300;
  letter-spacing: .05em;
  color: rgba(240,235,224,.65);
  margin-bottom: 2rem;
}

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

.btn {
  display: inline-block;
  padding: .75rem 2rem;
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .2s, color .2s, border-color .2s;
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #c09d2a;
  border-color: #c09d2a;
  text-decoration: none;
  color: var(--dark);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
  text-decoration: none;
}

.hero-scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 40px;
  margin: 0 auto;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:.3; }
  50%      { opacity:1; }
}

/* ── Info: Öffnungszeiten & Anschrift ───────────────────── */
#info {
  padding: 6rem 0;
  background: var(--dark-1);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 700px) {
  .info-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.eyebrow {
  display: block;
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}

.gold-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2rem;
}

.info-block h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  letter-spacing: .08em;
  margin-bottom: 1.5rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.info-block h2 i { color: var(--gold); font-size: 1.1rem; }

/* Öffnungszeiten-Tabelle */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(211,175,55,.12); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: .7rem 0;
  font-size: .95rem;
  font-weight: 300;
}
.hours-table td:first-child { color: var(--text-muted); width: 44%; }
.hours-table td:last-child  { text-align: right; color: var(--text); }
.hours-table tr.closed td   { color: rgba(136,136,136,.45) !important; }

/* Adresse */
.address-list { list-style: none; display: flex; flex-direction: column; gap: .9rem; }
.address-item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  font-size: .95rem;
  font-weight: 300;
  color: rgba(240,235,224,.72);
}
.address-item i { color: var(--gold); font-size: .95rem; margin-top: .3rem; flex-shrink: 0; }
.address-item a { color: var(--gold); }
.address-item a:hover { text-decoration: underline; }
.address-item strong { color: var(--text); font-weight: 400; }

.parking-note {
  margin-top: 1.5rem;
  padding: .9rem 1.2rem;
  background: rgba(211,175,55,.05);
  font-size: .85rem;
  color: rgba(240,235,224,.6);
}

/* ── Footer ─────────────────────────────────────────────── */
#footer {
  background: var(--dark);
  border-top: 1px solid var(--gold-border);
  padding: 1.4rem 0;
}

.footer-bottom {
  font-size: .7rem;
  color: rgba(136,136,136,.5);
  text-align: center;
}
.footer-bottom a { color: inherit; transition: color .2s; }
.footer-bottom a:hover { color: var(--gold); text-decoration: none; }
