/* ============================================================
   Gasthof Forellenhof – Waldhölzbach / Losheim am See
   Farbwelt: Waldgrün, Creme, dunkles Braun, Akzent Gold
   Schriften: Playfair Display (Überschriften), Inter (Fließtext)
   ============================================================ */

:root {
  --forest: #2f5d3a;      /* Primärfarbe: Waldgrün */
  --forest-dark: #1f4128; /* Hover */
  --ink: #26211a;         /* Text */
  --cream: #faf6ee;       /* Hintergrund */
  --white: #fffdf8;
  --gold: #c9a05a;        /* Akzent */
  --radius: 14px;
}

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

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 { font-family: "Playfair Display", serif; line-height: 1.15; font-weight: 600; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }

img { max-width: 100%; height: auto; display: block; }
.container { width: min(1120px, 92%); margin-inline: auto; }
.text-balance { text-wrap: balance; }

.eyebrow {
  text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.78rem; font-weight: 600;
  color: var(--gold); margin-bottom: 0.6rem;
}
.lead { font-size: 1.15rem; margin: 1rem 0 1.8rem; max-width: 36rem; }
.section-intro { max-width: 40rem; margin-bottom: 0.6rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 238, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(38, 33, 26, 0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 0; }
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--ink); font-size: 1.05rem; }
.brand-mark {
  display: grid; place-items: center;
  width: 2.3rem; height: 2.3rem;
  background: var(--forest); color: var(--white);
  border-radius: 50%; padding: 0.35rem;
}
.brand-mark svg { width: 100%; height: 100%; }
.nav-list { display: flex; align-items: center; gap: 1.6rem; list-style: none; }
.nav-list a { text-decoration: none; color: var(--ink); font-weight: 500; font-size: 0.95rem; }
.nav-list a:hover { color: var(--forest); }
.nav-cta { background: var(--forest); color: var(--white) !important; padding: 0.55rem 1.1rem; border-radius: 999px; }
.nav-cta:hover { background: var(--forest-dark); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.4rem; }
.nav-toggle-bar { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; }

/* Hero mit Vollbild-Foto */
.hero {
  position: relative; min-height: 78vh;
  display: flex; align-items: center;
  color: var(--white); overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(38, 33, 26, 0.35), rgba(38, 33, 26, 0.65));
}
.hero-content { position: relative; z-index: 1; padding: 5rem 0; max-width: 44rem; }
.hero .eyebrow { color: var(--gold); }
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  font-weight: 600; font-size: 0.98rem; font-family: "Inter", sans-serif;
  padding: 0.85rem 1.7rem; border-radius: 999px; border: 2px solid transparent;
  transition: background 0.25s, color 0.25s, transform 0.15s;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--forest); color: var(--white); }
.btn-primary:hover { background: var(--forest-dark); }
.btn-light { border-color: var(--white); color: var(--white); background: transparent; }
.btn-light:hover { background: var(--white); color: var(--ink); }

/* Sektionen */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--forest-dark); color: var(--cream); }
.section-dark .eyebrow { color: var(--gold); }

/* Speisekarten-Raster */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.4rem; margin-top: 2rem; }
.menu-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; border: 1px solid rgba(38, 33, 26, 0.08);
  border-bottom: 3px solid var(--gold);
  transition: transform 0.25s, box-shadow 0.25s;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 18px 32px -20px rgba(47, 93, 58, 0.4); }
.menu-card p { font-size: 0.94rem; }

/* Karten (Umgebung) */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.4rem; margin-top: 2rem; }
.card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.8rem 1.5rem; border: 1px solid rgba(38, 33, 26, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 32px -20px rgba(47, 93, 58, 0.4); }
.card-icon { width: 2.6rem; height: 2.6rem; color: var(--forest); margin-bottom: 1rem; }
.card-icon svg { width: 100%; height: 100%; }
.card p { font-size: 0.95rem; }

/* Split-Layout */
.split { display: flex; gap: 3rem; align-items: flex-start; flex-wrap: wrap; }
.split-text { flex: 1 1 26rem; }
.note { font-size: 0.88rem; opacity: 0.75; margin-top: 0.8rem; }

.checklist { list-style: none; margin-top: 1.2rem; }
.checklist li { padding-left: 1.7rem; position: relative; margin-bottom: 0.5rem; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 0.42em;
  width: 0.9em; height: 0.5em;
  border-left: 2.5px solid var(--gold); border-bottom: 2.5px solid var(--gold);
  transform: rotate(-45deg);
}

/* Zitat-Box */
.quote-box {
  flex: 1 1 18rem;
  background: var(--cream); border-radius: var(--radius);
  padding: 2rem; border: 1px solid rgba(38, 33, 26, 0.08);
}
.quote-box blockquote p {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem; line-height: 1.4; margin-bottom: 1rem;
}
.quote-box footer { font-size: 0.9rem; opacity: 0.75; }

/* Kontakt */
.contact-list { font-style: normal; margin-top: 1rem; display: grid; gap: 0.8rem; }
.contact-list a { color: var(--gold); text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

.contact-form {
  flex: 1 1 22rem; background: var(--white); color: var(--ink);
  border-radius: var(--radius); padding: 1.8rem; display: grid; gap: 1rem;
}
.form-row { display: grid; gap: 0.35rem; }
.form-row-group { display: flex; gap: 1rem; }
.form-row-group .form-row { flex: 1; }
.form-row label { font-weight: 600; font-size: 0.9rem; }
.form-row input {
  font: inherit; padding: 0.7rem 0.9rem;
  border: 1px solid rgba(38, 33, 26, 0.2); border-radius: 8px;
  background: var(--cream); width: 100%;
}
.form-row input:focus { outline: 2px solid var(--forest); outline-offset: 1px; }
.form-status { font-size: 0.9rem; min-height: 1.2em; color: var(--forest-dark); }

/* Footer */
.site-footer { background: var(--ink); color: var(--cream); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding: 1.4rem 0; font-size: 0.9rem; }
.site-footer a { color: var(--gold); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

/* Scroll-Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Responsive */
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-list {
    position: absolute; top: 100%; right: 0; left: 0;
    flex-direction: column; align-items: flex-start;
    background: var(--white); padding: 1.2rem 4%;
    border-bottom: 1px solid rgba(38, 33, 26, 0.1);
    display: none;
  }
  .nav-list.open { display: flex; }
  .hero { min-height: 65vh; }
  .section { padding: 3rem 0; }
  .form-row-group { flex-direction: column; gap: 1rem; }
}
