/* ===========================================================
   Rheindorfer Seele – Stylesheet
   Farben aus dem Logo:
   Creme #FBF6EA · Tannengrün #1C3B2C · Herz-Rot #C8232C · Gold #C49A3A
   =========================================================== */

:root {
  --cream:       #FBF6EA;
  --cream-deep:  #F3EAD3;
  --green:       #1C3B2C;
  --green-soft:  #2E5340;
  --red:         #C8232C;
  --gold:        #C49A3A;
  --ink:         #33352f;
  --shadow:      0 14px 40px rgba(28, 59, 44, .12);
  --radius:      14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--green);
  line-height: 1.2;
  font-weight: 700;
}

a { color: var(--green); text-decoration: none; transition: color .2s; }
a:hover { color: var(--red); }

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

.container { width: min(1140px, 92%); margin-inline: auto; }

/* --- Script-Akzent (wie im Logo) --- */
.script {
  font-family: "Sacramento", cursive;
  color: var(--green);
  font-weight: 400;
}

/* --- Kleiner Ornament-Divider --- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px 0 6px;
  color: var(--gold);
}
.ornament::before,
.ornament::after {
  content: "";
  height: 1px;
  width: 60px;
  background: var(--gold);
}
.ornament .heart { color: var(--red); font-size: 1.1rem; }

/* ============ NAVIGATION ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 234, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-deep);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.nav__brand { display: flex; align-items: center; }
.nav__brand img {
  height: 40px;
  width: auto;
}
.nav__links { display: flex; gap: 28px; list-style: none; }
.nav__links a {
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
}
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; }
.nav__toggle span {
  display: block; width: 26px; height: 2px; background: var(--green); margin: 5px 0;
}

/* ============ HERO (hell & elegant) ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding: 70px 0 90px;
  overflow: hidden;
  background:
    linear-gradient(rgba(251,246,234,.80), rgba(251,246,234,.90)),
    url("img/hero.jpg") center/cover fixed;
}
/* zarte Gold-Linie als Akzent oben */
.hero::before {
  content: "";
  position: absolute;
  top: 96px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 2px;
  background: var(--gold); opacity: .55;
}
/* weicher heller Schein hinter dem Schriftzug (hebt ihn vom Foto ab) */
.hero::after {
  content: "";
  position: absolute;
  left: 50%; top: 42%; transform: translateX(-50%);
  width: 60vw; height: 240px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(251,246,234,.95) 0%, rgba(251,246,234,.55) 45%, transparent 72%);
  filter: blur(14px); pointer-events: none;
}

.hero__tags {
  position: relative; z-index: 1;
  letter-spacing: .34em;
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 700;
  color: var(--gold);
}

.hero__sign {
  position: relative; z-index: 1;
  margin: 6px 0 0;
  width: min(680px, 86%);
  transform-origin: top center;
  animation: sway 6s ease-in-out infinite;
}
.hero__sign img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(251,246,234,.9)) drop-shadow(0 1px 3px rgba(251,246,234,.9));
}
@keyframes sway {
  0%, 100% { transform: rotate(-0.7deg); }
  50%      { transform: rotate(0.7deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__sign { animation: none; }
}

.hero__intro { position: relative; z-index: 1; max-width: 580px; margin-top: 22px; }
.hero__sub { font-size: 1.12rem; color: #4f5249; margin-bottom: 22px; }
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  background: var(--green);
  color: var(--cream);
  padding: 13px 30px;
  border-radius: 40px;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 22px;
  transition: background .25s, transform .15s;
}
.btn:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--green); border: 2px solid var(--gold); }
.btn--ghost:hover { background: var(--gold); color: #fff; }
.btn--light { color: var(--cream); border-color: var(--cream); }
.btn--light:hover { background: var(--cream); color: var(--green); border-color: var(--cream); }

/* ============ SECTIONS ============ */
section { padding: 92px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head .eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .76rem;
  font-weight: 700;
}
.section-head h2 { font-size: clamp(2rem, 4.5vw, 2.9rem); margin: 8px 0; }
.section-head p { color: #5a5d54; }

.alt { background: var(--cream-deep); }

/* ============ ÜBER UNS ============ */
.about { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.about__img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
}
.about h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 6px; }
.about p { margin-top: 14px; color: #4f5249; }

/* ============ MENÜ ============ */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.menu-card {
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(28,59,44,.07);
  transition: transform .25s, box-shadow .25s;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.menu-card img { height: 210px; width: 100%; object-fit: cover; }
.menu-card__body { padding: 26px 26px 30px; }
.menu-card__body h3 {
  font-size: 1.35rem; display: flex; align-items: center; gap: 10px; margin-bottom: 4px;
}
.menu-card__body h3 .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }
.menu-list { list-style: none; margin-top: 14px; }
.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(196,154,58,.4);
  font-size: .95rem;
}
.menu-list li:last-child { border-bottom: 0; }
.menu-list .name { color: var(--green); font-weight: 600; }
.menu-list .desc { display: block; font-size: .82rem; color: #7a7d72; font-weight: 400; }
.menu-list .price { color: var(--red); font-weight: 700; white-space: nowrap; }

/* ============ GALERIE ============ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  filter: saturate(1.02);
  transition: transform .3s, filter .3s;
}
.gallery img:hover { transform: scale(1.04); filter: saturate(1.15); }

/* ============ INFO / KONTAKT ============ */
.info { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.hours { list-style: none; }
.hours li {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid rgba(196,154,58,.35);
}
.hours li span:first-child { font-weight: 700; color: var(--green); }
.hours .closed { color: var(--red); font-weight: 700; }
.contact-block { margin-bottom: 22px; }
.contact-block h3 { font-size: 1.1rem; margin-bottom: 4px; }
.map {
  margin-top: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map iframe { width: 100%; height: 260px; border: 0; display: block; }

/* ============ FOOTER ============ */
.footer {
  background: var(--green);
  color: var(--cream);
  padding: 60px 0 28px;
  text-align: center;
}
.footer .script { color: var(--cream); font-size: 2.6rem; }
.footer__tags {
  letter-spacing: .3em; text-transform: uppercase; font-size: .72rem;
  color: var(--gold); margin-top: 4px;
}
.footer__links {
  display: flex; justify-content: center; gap: 26px; flex-wrap: wrap;
  margin: 26px 0; list-style: none;
}
.footer__links a { color: var(--cream); font-size: .88rem; letter-spacing: .05em; }
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(196,154,58,.3);
  padding-top: 22px; margin-top: 22px;
  font-size: .8rem; color: rgba(251,246,234,.7);
}

/* ============ LEGAL PAGES ============ */
.legal { padding: 70px 0 90px; }
.legal .container { max-width: 820px; }
.legal h1 { font-size: 2.4rem; margin-bottom: 8px; }
.legal h2 { font-size: 1.4rem; margin: 34px 0 10px; }
.legal p, .legal li { color: #4f5249; margin-bottom: 10px; }
.legal ul { padding-left: 22px; }
.legal .back { display: inline-block; margin-bottom: 26px; font-weight: 700; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--cream-deep);
    max-height: 0; overflow: hidden; transition: max-height .3s;
  }
  .nav__links.open { max-height: 360px; }
  .nav__links li { padding: 0 4%; }
  .nav__links a { display: block; padding: 14px 0; border-bottom: 1px solid var(--cream-deep); }
  .nav__toggle { display: block; }
  .about, .info { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .hero { background-attachment: scroll; }
}
