/* ============================================================
   Pension Deifel — Demo-Stylesheet
   Palette: Weinrebengrün #3D6B52 / Amber #A0703A / Creme #F7F2EA
   Fonts: Libre Baskerville (Überschriften) + Nunito Sans (Body)
   ============================================================ */

/* --- Fonts lokal ------------------------------------------- */
@font-face {
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/libre-baskerville-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/libre-baskerville-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/nunito-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/nunito-sans-600.woff2') format('woff2');
}

/* --- CSS-Variablen ----------------------------------------- */
:root {
  --gruen: #3D6B52;
  --gruen-dunkel: #2d5040;
  --amber: #A0703A;
  --amber-hell: #c4924e;
  --creme: #F7F2EA;
  --creme2: #EDE8DC;
  --dunkel: #1E1A14;
  --text-mid: #4A3F30;
  --radius: 4px;
  --max: 1160px;
  --font-serif: 'Libre Baskerville', Georgia, serif;
  --font-sans: 'Nunito Sans', system-ui, sans-serif;
}

/* --- Reset & Basis ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dunkel);
  background: var(--creme);
}
img { display: block; max-width: 100%; }
a { color: inherit; }
ul { list-style: none; }

/* --- Grain-Textur (subtiles Hintergrund-Overlay) ----------- */
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* --- Demo-Leiste ------------------------------------------- */
.demo-bar {
  background: var(--amber);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-align: center;
  padding: 0.45rem 1rem;
  line-height: 1.4;
  position: relative;
  z-index: 100;
}

/* --- Hilfskassen ------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.eyebrow {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 0.5rem;
}
.mark { color: var(--amber); }

/* --- Header / Navigation ----------------------------------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--gruen);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.site-head__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.85rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
}
.brand__emblem {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.brand__name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.15;
  color: #fff;
}
.brand__name small {
  display: block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav a {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius);
  transition: background 0.18s, color 0.18s;
}
.nav a:hover,
.nav a[aria-current="page"] {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.nav__cta {
  background: var(--amber) !important;
  color: #fff !important;
  padding: 0.4rem 1rem !important;
  border-radius: 2rem !important;
  font-weight: 600 !important;
  margin-left: 0.5rem;
}
.nav__cta:hover { background: var(--amber-hell) !important; }

/* Burger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- Buttons ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.5rem;
  border-radius: 2rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn--solid {
  background: var(--amber);
  color: #fff;
}
.btn--solid:hover { background: var(--amber-hell); }
.btn--ghost {
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  background: transparent;
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}
.btn--gruen {
  background: var(--gruen);
  color: #fff;
}
.btn--gruen:hover { background: var(--gruen-dunkel); }
.btn--outline-amber {
  border: 2px solid var(--amber);
  color: var(--amber);
  background: transparent;
}
.btn--outline-amber:hover {
  background: var(--amber);
  color: #fff;
}

/* --- Reveal-Animationen (CSS-only) ------------------------- */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  animation: revealUp 0.65s ease both;
  animation-play-state: paused;
}
.reveal.is-visible { animation-play-state: running; }
.reveal[data-delay="1"] { animation-delay: 0.12s; }
.reveal[data-delay="2"] { animation-delay: 0.24s; }
.reveal[data-delay="3"] { animation-delay: 0.36s; }
.reveal[data-delay="4"] { animation-delay: 0.48s; }

/* --- Hero -------------------------------------------------- */
.hero {
  background: var(--gruen);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 60%, rgba(160,112,58,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.hero .eyebrow { color: rgba(255,255,255,0.65); }
.hero h1 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.1rem;
}
.hero .lead {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 52ch;
  margin-bottom: 2rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero__emblem {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Haus-Emblem SVG */
.house-emblem {
  width: 160px;
  height: 180px;
  opacity: 0.92;
}

/* --- Wellen-Trenner ---------------------------------------- */
.wave-divider {
  display: block;
  width: 100%;
  line-height: 0;
}
.wave-divider svg {
  display: block;
  width: 100%;
}

/* --- Sektionen --------------------------------------------- */
.section {
  padding: 4.5rem 0;
}
.section--creme2 {
  background: var(--creme2);
  position: relative;
}
.section--gruen {
  background: var(--gruen);
  color: #fff;
  position: relative;
}
.section--gruen .eyebrow { color: rgba(255,255,255,0.6); }
.section--gruen h2 { color: #fff; }
.section--gruen p { color: rgba(255,255,255,0.85); }

.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.section__head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--dunkel);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.section__head p {
  color: var(--text-mid);
  font-size: 1rem;
}

/* --- Highlights (drei Kernstärken) ------------------------- */
.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.highlight {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.highlight__icon {
  width: 44px;
  height: 44px;
  color: var(--amber);
  flex-shrink: 0;
}
.highlight h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dunkel);
  line-height: 1.3;
}
.highlight p {
  color: var(--text-mid);
  font-size: 0.95rem;
}
.highlight__line {
  width: 36px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
  margin-top: 0.25rem;
}

/* --- Story-Sektion (zwei Spalten) -------------------------- */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.story__art {
  display: flex;
  justify-content: center;
  align-items: center;
}
.story h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--dunkel);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.story p {
  color: var(--text-mid);
  margin-bottom: 1rem;
}
.story blockquote {
  border-left: 3px solid var(--amber);
  padding-left: 1rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gruen);
  font-size: 1.05rem;
  margin: 1.25rem 0;
  line-height: 1.5;
}

/* --- Zimmer-Vorschau --------------------------------------- */
.rooms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.room-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(30,26,20,0.08);
  display: flex;
  flex-direction: column;
}
.room-card__visual {
  background: var(--creme2);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gruen);
  opacity: 0.5;
}
.room-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.room-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dunkel);
}
.room-card__body p {
  color: var(--text-mid);
  font-size: 0.92rem;
  flex: 1;
}
.room-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--creme2);
  color: var(--gruen);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 2rem;
  align-self: flex-start;
}

/* --- Ausstattungs-Liste ------------------------------------ */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0.75rem 2rem;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-mid);
}
.amenity-item svg {
  flex-shrink: 0;
  color: var(--gruen);
}

/* --- Gasthof-Teaser ---------------------------------------- */
.gasthof-band {
  background: var(--creme2);
  padding: 4rem 0;
  position: relative;
}
.gasthof-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.gasthof-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--dunkel);
  margin-bottom: 0.75rem;
}
.gasthof-inner p { color: var(--text-mid); margin-bottom: 0.75rem; }
.menu-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(74,63,48,0.12);
}
.menu-item:last-child { border-bottom: none; }
.menu-item__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}
.menu-item span { font-size: 0.92rem; color: var(--text-mid); }

/* --- Bewertungs-Band --------------------------------------- */
.rating-band {
  background: var(--gruen);
  padding: 3rem 0;
  text-align: center;
}
.rating-band .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.rating-score {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.rating-score span {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.55);
}
.rating-label {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
}
.rating-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--amber-hell);
}

/* --- Infokacheln ------------------------------------------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.info-card {
  background: var(--creme);
  border-radius: 8px;
  padding: 1.5rem;
  border-left: 3px solid var(--amber);
}
.info-card h3 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dunkel);
  margin-bottom: 0.5rem;
}
.info-card p, .info-card li {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.info-card ul { padding-left: 0.1rem; }
.info-card li { padding: 0.1rem 0; }

/* --- CTA-Band ---------------------------------------------- */
.cta-band {
  background: var(--dunkel);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(160,112,58,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.cta-band p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  max-width: 52ch;
  margin: 0 auto 1.5rem;
}
.cta-band .tel {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--amber-hell);
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  transition: color 0.2s;
}
.cta-band .tel:hover { color: #fff; }
.cta-band__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Footer ------------------------------------------------ */
.site-foot {
  background: var(--gruen-dunkel);
  padding: 3.5rem 0 2rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.foot-brand svg { width: 32px; height: 32px; color: var(--amber-hell); }
.foot-brand span {
  font-family: var(--font-serif);
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
}
.site-foot ul { display: flex; flex-direction: column; gap: 0.3rem; }
.site-foot li { font-size: 0.88rem; color: rgba(255,255,255,0.65); }
.site-foot a { color: rgba(255,255,255,0.75); text-decoration: none; }
.site-foot a:hover { color: #fff; }
.site-foot h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
}
.foot-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.foot-meta a { color: rgba(255,255,255,0.55); text-decoration: none; }
.foot-meta a:hover { color: #fff; }

/* --- Seiten-Inhalte (Zimmer, Gasthof, Kontakt) ------------- */
.page-hero {
  background: var(--gruen);
  padding: 3.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(160,112,58,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.page-hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  max-width: 52ch;
  margin: 0 auto;
}

/* Prose (Datenschutz, Impressum) */
.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
}
.prose h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dunkel);
  margin: 2rem 0 0.6rem;
}
.prose h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dunkel);
  margin: 1.5rem 0 0.4rem;
}
.prose p { color: var(--text-mid); margin-bottom: 0.75rem; }
.prose a { color: var(--gruen); text-decoration: underline; }
.prose ul { padding-left: 1.25rem; list-style: disc; }
.prose ul li { color: var(--text-mid); margin-bottom: 0.3rem; }

.notice-box {
  background: var(--creme2);
  border-left: 4px solid var(--amber);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.notice-box p { margin: 0; font-size: 0.92rem; color: var(--text-mid); }

/* Kontakt-Seite */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3.5rem 0;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dunkel);
  margin-bottom: 1.25rem;
}
.contact-detail {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}
.contact-detail svg {
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.contact-detail p, .contact-detail a {
  font-size: 0.95rem;
  color: var(--text-mid);
  text-decoration: none;
  line-height: 1.5;
}
.contact-detail a:hover { color: var(--gruen); }
.contact-detail strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--amber); margin-bottom: 0.1rem; }

.opening-hours {
  background: var(--creme2);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.opening-hours h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dunkel);
  margin-bottom: 0.75rem;
}
.oh-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(74,63,48,0.1);
  color: var(--text-mid);
}
.oh-row:last-child { border-bottom: none; }
.oh-row .label { font-weight: 600; color: var(--dunkel); }

.map-placeholder {
  background: var(--creme2);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.map-placeholder h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dunkel);
}
.map-placeholder p { font-size: 0.9rem; color: var(--text-mid); }

/* --- Responsive -------------------------------------------- */
@media (max-width: 900px) {
  .highlights { grid-template-columns: 1fr 1fr; }
  .story { grid-template-columns: 1fr; gap: 2rem; }
  .story__art { display: none; }
  .gasthof-inner { grid-template-columns: 1fr; gap: 2rem; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 680px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__emblem { display: none; }
  .highlights { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.8rem; }

  .nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--gruen-dunkel);
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
  .nav.is-open { display: flex; }
  .nav a { width: 100%; padding: 0.5rem 0.75rem; }
  .nav__cta { margin-left: 0; margin-top: 0.5rem; }
  .nav-toggle { display: flex; }
  .site-head { position: relative; }
}

@media (max-width: 480px) {
  .info-grid { grid-template-columns: 1fr; }
  .amenity-grid { grid-template-columns: 1fr; }
  .cta-band .tel { font-size: 1.8rem; }
}
