/* ===== Brot, Wein, Fisch und... ===== */

:root {
  --black: #0d0d0c;
  --black-soft: #161512;
  --gold: #e8b04b;
  --gold-soft: #f0c878;
  --cream: #f5ecd9;
  --grey: #b8b2a4;
  --max-width: 1140px;
  --radius: 4px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: var(--black);
  color: var(--cream);
  line-height: 1.6;
  cursor: url('images/cursor-fish.png') 4 4, auto;
}

a { color: inherit; text-decoration: none; cursor: url('images/cursor-fish.png') 4 4, auto; }

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

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

h1, h2, h3 {
  font-weight: 400;
  letter-spacing: 0.5px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 10px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 8px;
  border: none;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 48px;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 18px auto 0;
}

section { padding: 90px 0; }

.btn {
  display: inline-block;
  padding: 14px 34px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.82rem;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  cursor: url('images/cursor-fish-hover.png') 5 5, pointer;
  background: transparent;
}

.btn:hover { background: var(--gold); color: var(--black); }

.btn-solid {
  background: var(--gold);
  color: var(--black);
}

.btn-solid:hover { background: var(--gold-soft); }

/* ---------- Header ---------- */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,13,12,0.92);
  border-bottom: 1px solid rgba(232,176,75,0.15);
  backdrop-filter: blur(6px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo-link { display: flex; align-items: center; gap: 10px; }
.logo-link img { height: 44px; width: auto; }

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

nav a { transition: color 0.2s ease; }
nav a:hover { color: var(--gold); }

.ig-link { display: flex; align-items: center; color: var(--cream); }
.ig-link:hover { color: var(--gold); }

.nav-toggle { display: none; background: none; border: none; color: var(--gold); font-size: 1.6rem; cursor: url('images/cursor-fish-hover.png') 5 5, pointer; }

/* ---------- Hero ---------- */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, rgba(13,13,12,0.55), rgba(13,13,12,0.85)), url('images/bild2.jpg') center/cover no-repeat;
}

.hero-content img {
  height: 320px;
  width: auto;
  max-width: 95%;
  margin: 0 auto 24px;
  opacity: 0;
  animation: fadeInLogo 2.2s ease forwards;
  animation-delay: 0.2s;
}

@keyframes fadeInLogo {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.hero p {
  color: var(--grey);
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-style: italic;
}

.hero p.hero-address {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--gold-soft);
  margin-bottom: 34px;
}

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Intro / Über uns ---------- */
.intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.intro p { color: var(--grey); font-size: 1.05rem; }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}

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

/* ---------- Speisekarte ---------- */
.menu-section { background: var(--black-soft); }

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.menu-tab {
  padding: 10px 26px;
  border: 1px solid rgba(232,176,75,0.4);
  border-radius: 30px;
  background: transparent;
  color: var(--cream);
  cursor: url('images/cursor-fish-hover.png') 5 5, pointer;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.menu-tab.active, .menu-tab:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
}

.menu-group h3 {
  color: var(--gold);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(232,176,75,0.3);
  padding-bottom: 10px;
  margin-bottom: 18px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.menu-item .name { font-size: 1rem; }
.menu-item .desc { color: var(--grey); font-size: 0.85rem; font-style: italic; display: block; }
.menu-item .price { color: var(--gold-soft); white-space: nowrap; font-family: 'Helvetica Neue', Arial, sans-serif; }

.menu-note {
  text-align: center;
  color: var(--grey);
  font-size: 0.85rem;
  margin-top: 40px;
  font-style: italic;
}

/* ---------- Reservierung ---------- */
.reservation {
  background: linear-gradient(180deg, rgba(13,13,12,0.8), rgba(13,13,12,0.95)), url('images/bild1.jpg') center/cover no-repeat;
  text-align: center;
}

.reservation-box {
  max-width: 560px;
  margin: 0 auto;
  background: rgba(13,13,12,0.7);
  border: 1px solid rgba(232,176,75,0.3);
  border-radius: 6px;
  padding: 44px 36px;
}

.reservation-box p { color: var(--grey); margin-bottom: 28px; }

.reservation-widget-placeholder {
  border: 1px dashed rgba(232,176,75,0.5);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--grey);
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* ---------- Bewertungen ---------- */
.reviews { background: var(--black-soft); text-align: center; }

.reviews-widget-placeholder {
  border: 1px dashed rgba(232,176,75,0.5);
  border-radius: var(--radius);
  padding: 40px 24px;
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: var(--grey);
  font-size: 0.9rem;
}

.stars { color: var(--gold); font-size: 1.6rem; letter-spacing: 4px; margin-bottom: 14px; }

/* ---------- Info: Öffnungszeiten + Adresse ---------- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.hours-table td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(232,176,75,0.15);
}

.hours-table td:last-child { text-align: right; color: var(--gold-soft); }
.hours-table tr.closed td:last-child { color: var(--grey); }

.info-block { margin-bottom: 34px; }
.info-block h3 {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1rem;
  margin-bottom: 16px;
}

.address-block p { color: var(--grey); margin-bottom: 6px; }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(232,176,75,0.2);
}

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

/* ---------- Footer ---------- */
footer {
  background: var(--black-soft);
  padding: 50px 0 30px;
  text-align: center;
  border-top: 1px solid rgba(232,176,75,0.15);
}

footer img { height: 50px; margin: 0 auto 16px; }

footer p { color: var(--grey); font-size: 0.85rem; margin-bottom: 6px; }

.footer-links {
  margin-top: 18px;
  display: flex;
  gap: 20px;
  justify-content: center;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.8rem;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .menu-groups { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  nav ul {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: center;
    padding: 24px 0;
    gap: 18px;
    border-bottom: 1px solid rgba(232,176,75,0.15);
    display: none;
  }
  nav ul.open { display: flex; }
  .nav-toggle { display: block; }
  .hero h1 { font-size: 1.9rem; }
  .hero-content img { height: 190px; }
  section { padding: 60px 0; }
}
