/* ==========================================================================
   fewo-ar.ch – Landhaus & Bienenhaus, Speicher AR
   Farbwelt: Tannengrün (Appenzeller Hügel), Honiggold (Bienenhaus),
   Leinen (Bauernhaus-Kalk), dunkle Fichte (Text)
   ========================================================================== */

:root {
  --linen: #F6F3EA;
  --paper: #FFFFFF;
  --hay: #EDE6D2;
  --spruce: #1E3A2C;
  --spruce-deep: #152A20;
  --ink: #24352C;
  --moss: #52705F;
  --honey: #C08A17;
  --honey-deep: #A57310;
  --line: #DDD5C2;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(21, 42, 32, 0.10);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--linen);
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--spruce);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

a { color: var(--spruce); }

.container { max-width: 1120px; margin: 0 auto; padding: 0 22px; }

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--honey-deep);
  margin-bottom: 0.9em;
}

/* --- Header ------------------------------------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 243, 234, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 22px;
  max-width: 1220px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: auto;
}

.brand img { height: 56px; width: auto; }

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--spruce);
  line-height: 1.1;
}

.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--moss);
  text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: 4px; }

.main-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 8px;
}

.main-nav a:hover { background: var(--hay); }
.main-nav a.active { color: var(--honey-deep); font-weight: 600; }

.nav-cta {
  background: var(--honey);
  color: #fff !important;
  font-weight: 600 !important;
  border-radius: 999px !important;
  padding: 9px 18px !important;
}

.nav-cta:hover { background: var(--honey-deep) !important; }

/* Sprachmenü */
.lang-menu { position: relative; }

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font: 500 0.9rem var(--font-body);
  color: var(--ink);
  cursor: pointer;
}

.lang-btn:hover { background: var(--hay); }

.lang-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 230px;
  padding: 8px;
  display: none;
}

.lang-dropdown.open { display: block; }

.lang-dropdown a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.93rem;
}

.lang-dropdown a:hover { background: var(--hay); }

.lang-note {
  font-size: 0.78rem;
  color: var(--moss);
  padding: 8px 12px 4px;
  border-top: 1px solid var(--line);
  margin-top: 6px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--spruce);
}

/* --- Hero --------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21,42,32,0.15) 0%, rgba(21,42,32,0.72) 100%);
  z-index: -1;
}

.hero-content { padding: 90px 0 60px; max-width: 760px; }

.hero .eyebrow { color: #EBC66B; }

.hero h1 { color: #fff; }

.hero p { font-size: 1.15rem; max-width: 560px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* Sub-Hero für Unterseiten */
.page-hero { min-height: 48vh; }

/* --- Buttons ------------------------------------------------------------ */

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  padding: 13px 26px;
  transition: background 0.15s ease, transform 0.1s ease;
}

.btn:active { transform: translateY(1px); }

.btn-honey { background: var(--honey); color: #fff; }
.btn-honey:hover { background: var(--honey-deep); }

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.55);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); }

.btn-outline {
  background: transparent;
  color: var(--spruce);
  border: 1.5px solid var(--spruce);
}
.btn-outline:hover { background: var(--spruce); color: #fff; }

/* --- Badge-Leiste ------------------------------------------------------- */

.badge-bar { background: var(--spruce); color: #EDE6D2; }

.badge-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 36px;
  justify-content: center;
  padding: 16px 22px;
  font-size: 0.92rem;
  font-weight: 500;
}

.badge-bar span::before { content: "✦ "; color: var(--honey); }

/* --- Sektionen ---------------------------------------------------------- */

.section { padding: 76px 0; }
.section-alt { background: var(--hay); }
.section-dark { background: var(--spruce); color: #EDE6D2; }
.section-dark h2, .section-dark h3 { color: #fff; }

.section-head { max-width: 680px; margin-bottom: 42px; }

/* --- Karten (Angebote) --------------------------------------------------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

.card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
}

.card img { height: 230px; width: 100%; object-fit: cover; }

.card-body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }

.card-facts {
  font-size: 0.88rem;
  color: var(--moss);
  font-weight: 500;
  margin-bottom: 8px;
}

.card p { flex: 1; font-size: 0.97rem; }

.card .btn { align-self: flex-start; margin-top: 10px; padding: 10px 20px; font-size: 0.93rem; }

/* --- Faktenraster ------------------------------------------------------- */

.fact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 34px 0;
}

.fact {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--spruce);
}

.fact span { font-size: 0.88rem; color: var(--moss); }

/* --- Zweispalter --------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.split img { border-radius: var(--radius); box-shadow: var(--shadow); }

.checklist { list-style: none; padding: 0; margin: 0 0 1.2em; }

.checklist li { padding: 6px 0 6px 30px; position: relative; }

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--honey-deep);
  font-weight: 700;
}

/* --- Buchungsbox (Direkt vs. Airbnb) ------------------------------------ */

.booking-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 30px;
}

.booking-option {
  border-radius: var(--radius);
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.booking-option.primary {
  background: var(--spruce);
  color: #EDE6D2;
  border: none;
  position: relative;
}

.booking-option.primary h3 { color: #fff; }

.booking-option.primary .tag {
  position: absolute;
  top: -13px;
  left: 26px;
  background: var(--honey);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 5px 14px;
}

.booking-option ul { padding-left: 20px; margin: 0 0 1.2em; font-size: 0.95rem; }

.booking-option .btn { margin-top: 4px; }

.small-note { font-size: 0.85rem; color: var(--moss); margin-top: 12px; }

.booking-option.primary .small-note { color: #C9D6CC; }

.booking-option.primary a:not(.btn) { color: #EBC66B; }

/* --- Galerie ------------------------------------------------------------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.gallery figure { margin: 0; }

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

.gallery figcaption { font-size: 0.85rem; color: var(--moss); padding: 8px 4px 0; }

/* --- FAQ ------------------------------------------------------------------ */

.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 22px;
  margin-bottom: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  padding: 14px 0;
  color: var(--spruce);
  list-style: none;
  position: relative;
  padding-right: 34px;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 10px;
  font-size: 1.4rem;
  color: var(--honey-deep);
}

.faq details[open] summary::after { content: "–"; }

.faq details p { padding-bottom: 14px; margin: 0; }

/* --- Bewertung ------------------------------------------------------------ */

.rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--spruce);
}

.rating-chip .stars { color: var(--honey); letter-spacing: 2px; }

/* --- CTA-Band -------------------------------------------------------------- */

.cta-band { text-align: center; }

.cta-band h2 { margin-bottom: 0.4em; }

.cta-band p { max-width: 560px; margin: 0 auto 26px; }

/* --- Footer ----------------------------------------------------------------- */

.site-footer {
  background: var(--spruce-deep);
  color: #B9C7BD;
  padding: 56px 0 30px;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.site-footer h3 {
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer a { color: #E4D9B8; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 4px 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* --- Responsiv ----------------------------------------------------------------- */

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 30px; }
  .booking-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }

  .menu-toggle { display: block; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--linen);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 18px 18px;
    gap: 6px;
  }

  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 14px; }
  .nav-cta { text-align: center; }
}

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

:focus-visible {
  outline: 3px solid var(--honey);
  outline-offset: 2px;
}

/* --- Ausflugsziele-Seite -------------------------------------------------- */

.aus-nav {
  position: sticky;
  top: 68px;
  z-index: 40;
  background: var(--hay);
  border-bottom: 1px solid var(--line);
}

.aus-nav .container {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.aus-nav a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--spruce);
  padding: 6px 12px;
  border-radius: 999px;
}

.aus-nav a:hover { background: var(--paper); color: var(--honey-deep); }

.aus-sektion { padding: 56px 0; }
.aus-sektion:nth-of-type(even) { background: var(--hay); }

.aus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
}

.aus-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.aus-card img { width: 100%; height: 220px; object-fit: cover; }

.aus-card .aus-body { padding: 20px 22px 22px; }

.aus-card h3 { margin-bottom: 0.4em; font-size: 1.15rem; }

.aus-card p { font-size: 0.95rem; margin: 0 0 0.6em; }

.aus-card.aus-text { background: transparent; box-shadow: none; border-style: dashed; }

.aus-links { font-size: 0.88rem; }
.aus-links a { color: var(--honey-deep); font-weight: 600; text-decoration: none; }
.aus-links a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .aus-nav { top: 62px; }
}
