/* =========================================
   Modern Hotel Website Styles (2026)
   - clean, elegant, responsive
   ========================================= */

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #121212;
  background: #ffffff;
}

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

a {
  color: inherit;
}

/* ---------- Layout helpers ---------- */
.container {
  width: min(1160px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.bg-light {
  background: #f7f7f6;
}

.text-content p {
  max-width: 70ch;
  color: #2a2a2a;
}

.section-head {
  margin-bottom: 2rem;
}

.section-head h2,
.section h2 {
  font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.section-subtitle {
  margin: 0;
  color: #5a5a5a;
}

/* ---------- Header / Nav ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 0.8rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}


.nav a {
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  color: #1b1b1b;
  transition: background 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.nav a:hover {
  background: rgba(0, 0, 0, 0.06);
}

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

/* ---------- Hero (Home) ---------- */
.hero {
  position: relative;
  padding: 4.8rem 0 3.5rem;
  background:
    radial-gradient(1200px 500px at 20% 20%, rgba(210, 197, 164, 0.30), transparent 60%),
    radial-gradient(900px 400px at 80% 30%, rgba(180, 200, 205, 0.22), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f6f6f5 100%);
}

.home-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}

.home-text h2 {
  font-size: clamp(2rem, 2.2vw + 1.2rem, 3.1rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.home-text p {
  margin: 0 0 1rem;
  color: #2b2b2b;
  max-width: 72ch;
}

.signature {
  margin-top: 1.5rem;
  font-weight: 600;
  color: #1b1b1b;
}

.home-box {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.home-box h3 {
  margin: 0 0 0.8rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.home-box img {
  border-radius: 14px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 0.9rem;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  margin-top: 0.4rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: #121212;
  color: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.link-more:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.home-image {
  margin-top: 2.5rem;
  border-radius: 22px;
  width: 100%;
  height: clamp(260px, 42vw, 520px);
  object-fit: cover;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.family-caption {
  margin: 0.8rem 0 0;
  color: #5a5a5a;
  font-size: 0.95rem;
}

/* ---------- Cards (Zimmer / Features / News) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

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

.card h3 {
  margin: 1rem 1rem 0.35rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0 1rem 1.1rem;
  color: #3b3b3b;
}

.price {
  display: inline-block;
  margin: 0 1rem 1.2rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  font-weight: 700;
  font-size: 0.92rem;
}

/* ---------- Feature list / Info box ---------- */
.features {
  margin-top: 2.5rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 18px;
  padding: 1.4rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.features h3 {
  margin: 0 0 0.8rem;
  font-size: 1.15rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1rem;
}

.feature-list li {
  color: #2e2e2e;
}

.info-box {
  margin-top: 1.6rem;
  border-radius: 18px;
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: linear-gradient(180deg, rgba(210, 197, 164, 0.18), rgba(255, 255, 255, 0.9));
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1.2rem 0 2.2rem;
}

.gallery-title {
  margin: 2.4rem 0 0.8rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.10);
}

.gallery-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

/* ---------- News ---------- */
.news-list {
  display: grid;
  gap: 1.4rem;
}

.news-card {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 1.2rem;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.news-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.news-body {
  padding: 1.2rem 1.2rem 1.3rem;
}

.news-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.news-body p {
  margin: 0 0 0.8rem;
  color: #3b3b3b;
}

.news-link {
  display: inline-flex;
  text-decoration: none;
  font-weight: 700;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
}

.news-link:hover {
  background: rgba(0, 0, 0, 0.09);
}

.news-signature {
  font-weight: 600;
  color: #2a2a2a;
}

/* ---------- External card (YouTube etc.) ---------- */
.external-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  align-items: center;
  text-decoration: none;
  border-radius: 18px;
  padding: 1rem;
  margin: 1.4rem 0 0.4rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.external-card img {
  width: 120px;
  height: 80px;
  border-radius: 14px;
  object-fit: cover;
}

.small-link a {
  color: #5a5a5a;
  font-size: 0.92rem;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.6rem;
}

.contact-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.contact-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.2rem;
}

.contact-card a {
  color: #0f3d3a;
  font-weight: 700;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.map-embed iframe {
  border: 0;
  border-radius: 16px;
  overflow: hidden;
}

/* ---------- Booking ---------- */
.booking-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  align-items: center;
}

.small-note {
  color: #5a5a5a;
  font-size: 0.95rem;
  margin-top: 1rem;
}

/* ---------- Footer ---------- */
.footer {
  margin-top: 3rem;
  padding: 2.2rem 0;
  background: #111111;
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .news-card {
    grid-template-columns: 1fr;
  }
  .news-media img {
    min-height: 260px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .home-grid {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3.8rem 0 3rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .nav a {
    padding: 0.5rem 0.65rem;
    font-size: 0.85rem;
  }
}
section[id] {
  scroll-margin-top: 50px;
}

/* verhindert automatisches "Nach-Scrollen" bei nachladenden Inhalten */
body {
  overflow-anchor: none;
}
.btn-booking {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
margin: 1.5rem auto 2rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;

  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 700;

  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
  transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.btn-booking:hover {
  transform: translateY(-2px);
  opacity: 0.95;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.btn-booking:active {
  transform: translateY(0px);
}
.booking-card .btn-booking {
  margin: 0.5rem auto 1rem;
}

/* Booking-Button wirklich mittig */
#booking .btn-booking {
  display: inline-flex;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 1.5rem 0 2rem;
}
/* Footer */
.site-footer {
  margin-top: 4rem;
  padding: 1.2rem 1rem;
  border-top: 1px solid #e5e5e5;
  background: #fff;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}

.site-footer a {
  color: #1a73e8;
  text-decoration: underline;
  margin: 0 0.3rem;
}

.site-footer a:hover {
  text-decoration: none;
}

.footer-sep {
  margin: 0 0.4rem;
  color: #999;
}

.footer-copy {
  margin-left: 0.8rem;
  color: #999;
  white-space: nowrap;
}
/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.modal.is-open {
  display: block;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.modal-dialog {
  position: relative;
  width: min(900px, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  margin: 1rem auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.25);
  padding: 1.25rem 1.25rem 1rem;
  overflow: auto;
}

.modal-dialog h2 {
  margin: 0 2.5rem 0.75rem 0;
}

.modal-content {
  line-height: 1.6;
  color: #222;
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: #f2f2f2;
  cursor: pointer;
  font-size: 22px;
  line-height: 40px;
}

.modal-close:hover {
  background: #eaeaea;
}

/* optional: verhindert Scroll im Hintergrund */
body.modal-open {
  overflow: hidden;
}
/* ================================
   WARM HOTEL THEME (Override)
   - warm, etwas dunkler, herzlich
   - überschreibt nur Optik
   ================================ */

:root{
  --bg-warm: #f4efe6;          /* warmes Beige */
  --surface-warm: #ffffff;     /* Karten */
  --text-warm: #171717;        /* Text */
  --muted-warm: #5a564f;       /* Sekundärtext */

  --brand-warm: #1f3a2d;       /* Waldgrün */
  --brand-warm-2: #2c4d3b;     /* weicheres Grün */
  --accent-warm: #b07a3b;      /* Kupfer */
  --accent-warm-2: #e6cfad;    /* helles warmes Gold */
  --border-warm: rgba(0,0,0,0.08);
  --shadow-warm: 0 14px 40px rgba(0,0,0,0.10);
}

/* Global */
body{
  color: var(--text-warm);
  background: var(--bg-warm);
}

.bg-light{
  background: rgba(31,58,45,0.06); /* warmes, sehr dezentes Grün statt kühl-grau */
}

.text-content p,
.section-subtitle,
.family-caption,
.small-note{
  color: var(--muted-warm);
}

/* Header / Nav: warm-dunkel statt weiß */
.header{
  background: rgba(31,58,45,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
}

.logo{
  color: #fff;
}

.nav a{
  color: rgba(255,255,255,0.88);
}

.nav a:hover{
  background: rgba(255,255,255,0.10);
}

/* Optional: „Buchung“ als warmer CTA im Menü */
.nav a[href="#booking"]{
  background: linear-gradient(180deg, var(--accent-warm) 0%, #8f5f2c 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}
.nav a[href="#booking"]:hover{
  opacity: 0.95;
}

/* Hero: wärmer, weniger kalt-bläulich */
.hero{
  background:
    radial-gradient(1200px 520px at 20% 15%, rgba(230, 207, 173, 0.38), transparent 60%),
    radial-gradient(900px 420px at 85% 25%, rgba(31, 58, 45, 0.12), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, #f4efe6 100%);
}

/* Cards / Boxes: etwas wärmer + „Hotel“-Shadow */
.card,
.news-card,
.contact-card,
.booking-card,
.home-box,
.features{
  background: var(--surface-warm);
  border: 1px solid var(--border-warm);
  box-shadow: var(--shadow-warm);
}

/* Buttons / Links: warmes Branding */
.link-more{
  background: linear-gradient(180deg, var(--brand-warm) 0%, #13261e 100%);
  box-shadow: 0 14px 35px rgba(0,0,0,0.16);
}

.news-link{
  background: rgba(176,122,59,0.16);
  border: 1px solid rgba(176,122,59,0.20);
}
.news-link:hover{
  background: rgba(176,122,59,0.22);
}

.contact-card a{
  color: var(--brand-warm);
}

/* Preis-Badge wärmer */
.price{
  background: rgba(176,122,59,0.14);
  border: 1px solid rgba(176,122,59,0.18);
}

/* Info-Box: warmes Gold statt neutral */
.info-box{
  background: linear-gradient(180deg, rgba(230, 207, 173, 0.35), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(176,122,59,0.18);
}

/* Booking Button: warm, edel (dein Zentrier-Setup bleibt!) */
.btn-booking{
  background: linear-gradient(180deg, var(--brand-warm) 0%, #13261e 100%);
  box-shadow: 0 18px 55px rgba(0,0,0,0.22);
}

.btn-booking:hover{
  box-shadow: 0 24px 70px rgba(0,0,0,0.26);
}

/* Footer: warm statt kalt-blau */
.site-footer{
  background: rgba(31,58,45,0.08);
  border-top: 1px solid rgba(0,0,0,0.08);
}

.site-footer a{
  color: var(--brand-warm);
}

/* Modal: minimal wärmer */
.modal-dialog{
  border: 1px solid rgba(0,0,0,0.10);
}

.modal-close{
  background: rgba(230, 207, 173, 0.35);
}
.modal-close:hover{
  background: rgba(230, 207, 173, 0.55);
}
/* ================================
   TYPOGRAFIE – warm & herzlich
   ================================ */

/* Fließtext */
body {
  font-family: "Source Sans 3", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: 0.01em;
}

/* Überschriften */
h1, h2, h3, h4,
.section-head h2,
.home-text h2 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  letter-spacing: -0.015em;
}

/* Navigation etwas ruhiger */
.nav a {
  font-family: "Source Sans 3", system-ui, sans-serif;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* Kleine Feinarbeit */
.section-subtitle,
.family-caption,
.small-note {
  font-weight: 500;
}
/* ================================
   Social Media Buttons – Lesachtal
   ================================ */

.social-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.9rem 1.4rem;
  border-radius: 999px;

  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.03em;

  background: #ffffff;
  color: #1f3a2d;

  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);

  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

/* Farbige Akzente (warm & dezent) */
.social-btn.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  color: #fff;
  border: none;
}

.social-btn.youtube {
  background: #b2071d;
  color: #fff;
  border: none;
}

.social-btn.website {
  background: linear-gradient(180deg, #1f3a2d, #13261e);
  color: #fff;
  border: none;
}
/* ================================
   GRÜNE KOPFZEILE – FINAL
   ================================ */

/* Logo als Bild */
.header .logo img {
  height: 44px;          /* steuert die Höhe des Logos */
  width: auto;
  display: block;
}

/* Navigation: gleiche Schrift wie Text-Überschriften */
.header .nav a {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-size: 0.93rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.logo img {
  height: 42px;
  width: auto;
  display: block;
}
/* Header-Layout: Logo darf nie verschwinden */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo bekommt fixen Platz und wird nicht „weggequetscht“ */
.logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.logo img {
  height: 44px;
  width: auto;
  display: block;
}

/* Navigation darf Platz nehmen, aber nicht das Logo killen */
.nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;   /* Menü mittig */
  gap: 0.8rem;
  flex-wrap: wrap;           /* wenn zu eng: umbrechen statt Logo verdrängen */
}

/* Falls du unbedingt 1 Zeile willst: statt wrap horizontales Scrollen */
@media (min-width: 900px) {
  .nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .nav::-webkit-scrollbar { display: none; }
}
/* HEADER: Container im Kopfbereich breiter, damit Logo weiter links sitzt */
.header .container {
  width: min(1400px, calc(100% - 1.8rem)); /* weniger Seitenabstand */
  margin: 0 auto;
}

/* Logo wirklich links ausrichten */
.header-inner {
  justify-content: space-between;
}

.logo {
  margin-left: 0;
  padding-left: 0;
}

.logo img {
  height: 44px;
  width: auto;
  display: block;
}
/* ===== Zweizeiliger Header mit Logo oben ===== */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #3f5f4d; /* dein warmes Grün */
}

/* obere Logo-Zeile */
.header-top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 1rem 0.4rem;
}

.header-logo {
  height: 64px;
  width: auto;
}

/* untere Nav-Zeile */
.header-bottom {
  display: flex;
  justify-content: center;
  padding: 0.4rem 1rem 0.8rem;
}

/* Navigation */
.header-bottom .nav {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.header-bottom .nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
}

.header-bottom .nav a:hover {
  background: rgba(255,255,255,0.15);
}
.header .nav a{
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.07em;
  font-size: 1.0rem;
}
/* HEADER NAV – klassisch & „wie am Haus“ */
.header .nav a {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
/* ================================
   HEADER + LOGO – größer, links bündig, kein Rahmen
   (einfach ans ENDE deiner style.css kopieren)
   ================================ */

.header{
  height: 96px;                 /* Header-Höhe (bei Bedarf anpassen) */
  background: #3f5f4d;          /* dein Grün */
}

/* sorgt dafür, dass Inhalt die volle Header-Höhe nutzt */
.header .container.header-inner{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;  /* Logo links, Nav rechts */
  gap: 2rem;
}

/* Logo bleibt im normalen Layoutfluss, links bündig */
.header .logo{
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Logo-Bild wird groß, ohne extra Hintergrund/Rahmen */
.header .logo img{
  height: 100%;          /* Logo-Größe relativ zur Header-Höhe */
  width: auto;
  display: block;
  background: transparent;
  border: 0;
  box-shadow: none;
}

/* falls du irgendwo noch alte Regeln hast, die das Logo klein machen */
.logo img{
  height: 100%;
  width: auto;
  display: block;
}
/* ================================
   HEADER: Logo volle Höhe, ganz links, Nav bleibt stehen
   ================================ */

/* ================================
   HEADER – Logo ganz links, Abstand kleiner
   ================================ */

:root{
  --header-h: 96px;
  --logo-space: 130px;
}

.header{
  height: var(--header-h);
  background: #3f5f4d;
}

/* Container behält sein normales Padding,
   aber wir gleichen es für das Logo aus */
.header .container.header-inner{
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: var(--logo-space);
}

/* Logo ganz an den Viewport-Rand ziehen */
.header .logo{
  position: absolute;
  top: 0;
  left: -16px; /* zieht Logo aus dem Container heraus */
  height: 100.8%;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

/* Logo füllt komplette Höhe */
.header .logo img{
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Navigation sauber zentriert */
.header-bottom{
  height: 100%;
  display: flex;
  align-items: center;
}


/* ============================
   MODERN HERO SECTION
============================ */

.hero-modern {
  position: relative;
  height: 90vh;
  min-height: 550px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: white;
  font-family: "Playfair Display", serif;
}

/* Slideshow */
.hero-slideshow {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slideshow .slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.hero-slideshow .slide.active {
  opacity: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 700px;
  padding: 40px;
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.35);
  border-radius: 14px;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.signature {
  margin-top: 1.2rem;
  font-style: italic;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Button */
.hero-btn {
  display: inline-block;
  margin-top: 1.6rem;
  padding: 12px 26px;
  background: #345c3c;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 6px;
  transition: 0.2s;
}

.hero-btn:hover {
  background: #26442c;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.3rem;
  }
  .hero-modern {
    height: 80vh;
  }
}

/* ==========================================================
   Modern Boutique Hotel Theme (2026)
   Elegant · Soft · Premium Look
   ========================================================== */

:root {
  --bg: #f5f3ef;               /* warmes Hotel-Beige */
  --surface: #ffffff;          /* Karten & Boxen */
  --text: #1b1b1b;
  --text-muted: #6a665e;

  --brand: #2f4f3e;            /* Waldgrün modern */
  --brand-light: #3e6a52;

  --accent: #c49a6c;           /* warmes Gold/Kupfer */
  --accent-light: #e8dccb;

  --radius: 18px;
  --shadow-soft: 0 18px 35px rgba(0,0,0,0.08);
  --shadow-hover: 0 24px 45px rgba(0,0,0,0.12);

  --max-width: 1180px;
  --transition: 180ms ease;
}


/* ==========================================================
   GLOBAL
========================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  line-height: 1.65;
  font-size: 1.04rem;
  background: var(--bg);
  color: var(--text);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.container {
  width: min(var(--max-width), 92%);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: .5rem;
}

.section-subtitle {
  color: var(--text-muted);
  margin-bottom: 2rem;
}


/* ==========================================================
   HEADER – clean, floating, elegant
========================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 0;
}

.logo img {
  height: 52px;
  width: auto;
}

.nav {
  display: flex;
  gap: 1rem;
}

.nav a {
  text-decoration: none;
  color: #2f2f2f;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: .45rem .75rem;
  border-radius: 999px;
  transition: var(--transition);
}

.nav a:hover {
  background: rgba(0,0,0,0.08);
}


/* ==========================================================
   HERO — modern, cinematic, premium
========================================================== */

.hero-modern {
  position: relative;
  height: 88vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: white;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slideshow .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.hero-slideshow .slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 700px;
  padding: 3rem;
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,0.34);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 3vw + 1rem, 3.5rem);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.15rem;
  color: #e8e8e8;
}

.hero-btn {
  display: inline-block;
  margin-top: 1.6rem;
  padding: .9rem 1.6rem;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
}

.hero-btn:hover {
  background: var(--brand-light);
}


/* ==========================================================
   CARDS — Premium, smooth, hotel-like
========================================================== */

.cards {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card img {
  height: 220px;
  object-fit: cover;
}

.card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  margin: 1rem;
}

.card p {
  margin: 0 1rem 1rem;
  color: var(--text-muted);
}

.price {
  display: inline-block;
  margin: 0 1rem 1.4rem;
  padding: .4rem .85rem;
  border-radius: 999px;
  background: var(--accent-light);
  color: var(--brand);
  font-weight: 700;
}


/* ==========================================================
   FEATURES / INFO BOX
========================================================== */

.features {
  margin-top: 2.5rem;
  padding: 1.8rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-soft);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .6rem;
}

.info-box {
  margin-top: 2rem;
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(196,154,108,0.18),
    rgba(255,255,255,0.9)
  );
  border: 1px solid rgba(0,0,0,0.06);
}


/* ==========================================================
   GALLERY — minimal, clean
========================================================== */

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.gallery-item img {
  height: 210px;
  object-fit: cover;
}


/* ==========================================================
   NEWS
========================================================== */

.news-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
  border: 1px solid rgba(0,0,0,0.06);
}

.news-media img {
  height: 100%;
  object-fit: cover;
}

.news-body {
  padding: 1.5rem;
}

.news-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin-top: 0;
}

.news-link {
  display: inline-block;
  margin-top: .4rem;
  padding: .6rem 1rem;
  border-radius: 999px;
  background: rgba(196,154,108,0.15);
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.news-link:hover {
  background: rgba(196,154,108,0.22);
}


/* ==========================================================
   CONTACT
========================================================== */

.contact-card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,0.05);
}

.contact-card a {
  color: var(--brand);
  font-weight: 700;
}


/* ==========================================================
   BOOKING BUTTON
========================================================== */

.btn-booking {
  display: inline-block;
  padding: .9rem 1.6rem;
  background: var(--brand);
  color: white;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 700;
  box-shadow: 0 20px 50px rgba(0,0,0,0.16);
  transition: var(--transition);
}

.btn-booking:hover {
  background: var(--brand-light);
  transform: translateY(-3px);
}


/* ==========================================================
   FOOTER
========================================================== */

.footer {
  background: var(--brand);
  color: #eee;
  padding: 2.5rem 0;
  text-align: center;
  font-size: .9rem;
}

.footer a {
  color: #fff;
  text-decoration: underline;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 900px) {
  .news-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero-content {
    padding: 2rem;
  }
}

/* ==========================================================
   HERO SPLIT — Slideshow rechts, Text links
========================================================== */

.hero-split {
  padding: 6rem 0 4rem;
  background: var(--bg);
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 3vw + 1rem, 3.4rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.hero-text p {
  font-size: 1.1rem;
  max-width: 65ch;
  color: var(--text-muted);
}

.hero-text .signature {
  margin-top: 1.2rem;
  font-style: italic;
  color: var(--text);
}

/* Slideshow container */
.hero-slideshow-box {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.hero-slideshow {
  position: relative;
  width: 100%;
  height: clamp(300px, 40vw, 520px);
}

.hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  border-radius: var(--radius);
}

.hero-slideshow img.active {
  opacity: 1;
}

/* Mobile layout */
@media (max-width: 880px) {
  .hero-split-grid {
    grid-template-columns: 1fr;
  }

  .hero-slideshow {
    height: 300px;
  }
}
/* ==========================================================
   HERO-SLIDESHOW — Bigger, cinematic, better proportion
========================================================== */

.hero-slideshow-box {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-slideshow {
  position: relative;
  width: 100%;
  height: clamp(420px, 48vw, 650px);  /* ⬅️ deutlich größer */
}

/* Bilder deutlich großflächiger anzeigen */
.hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  /* ⬅️ Verbessertes Format: weniger harte Crops, natürlicher */
  object-fit: cover;          /* Füllt den Container elegant */
  object-position: center;    /* Wichtig für Porträts & Landschaften */

  opacity: 0;
  border-radius: var(--radius);
  transition: opacity 1.2s ease-in-out;
}

.hero-slideshow img.active {
  opacity: 1;
}

/* TEXT / BILD Verhältnis leichter verschieben */
.hero-split-grid {
  grid-template-columns: 1fr 1.2fr;  /* Slideshow bekommt mehr Platz */
  gap: 3.2rem;
}

/* MOBILE: größere Slideshow für besseren Effekt */
@media (max-width: 880px) {
  .hero-slideshow {
    height: 360px;
  }
  .hero-split-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   FORMAT-TRUE SLIDESHOW (keine Verzerrung, echtes Bildformat)
========================================================== */

.hero-slideshow-box {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

/* Höhe richtet sich jetzt nach dem echten Bildformat */
.hero-slideshow {
  position: relative;
  width: 100%;

  /* ✨ WICHTIG: Seitenverhältnis NICHT künstlich festlegen
     → 3:2 entspricht den meisten deiner ursprünglichen Fotos */
  aspect-ratio: 3 / 2;

  border-radius: var(--radius);
}

/* Bilder behalten echtes Format */
.hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  object-fit: contain;     /* 🔥 zeigt das Bild komplett, ohne Beschnitt */
  object-position: center;

  background: #0003;       /* dezenter Hintergrund, falls Letterboxing nötig */
  
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slideshow img.active {
  opacity: 1;
}

/* Der Text-Bild-Bereich bleibt schön ausgewogen */
.hero-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;  /* etwas breiter für die Galerie */
  gap: 3rem;
}

/* Mobile */
@media (max-width: 880px) {
  .hero-split-grid {
    grid-template-columns: 1fr;
  }

  .hero-slideshow {
    aspect-ratio: 4 / 3;  /* mobil etwas höher, angenehmer */
  }
}

/* =============================================
   FIXED: Slideshow uses natural image height
   No grey bars, no stretching
============================================== */

.hero-slideshow-box {
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 38px rgba(0,0,0,0.12);
}

.hero-slideshow {
  position: relative;
  width: 100%;
  height: auto;              /* ❗ wichtig: Höhe ergibt sich vom Bild */
}

.hero-slideshow img {
  width: 100%;
  height: auto;              /* ❗ natürliche Bildhöhe */
  display: none;

  object-fit: cover;         /* schöner, moderner Zuschnitt */
  border-radius: 22px;
}

.hero-slideshow img.active {
  display: block;
}

/* GRID: Bild bekommt mehr Platz */
.hero-split-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;  /* Slideshow größer als Text */
  gap: 3rem;
}

@media (max-width: 880px) {
  .hero-split-grid {
    grid-template-columns: 1fr;
  }
}

.header .nav a {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =============================================
   KOPFZEILE – Dunkelgrün wie im Originaldesign
============================================= */

.header {
  background: #2f4a37;   /* 🌿 Dunkelgrün */
  border-bottom: 1px solid rgba(0,0,0,0.15);
  backdrop-filter: blur(10px);
}

.header-bottom .nav a,
.header .nav a {
  color: #ffffff;
}

.header .nav a:hover {
  background: rgba(255,255,255,0.12);
}

/* Buchungs-Button im Menü (optional schöner) */
.header .nav a[href="#booking"] {
  background: #b8863b;         /* warmes Goldbraun */
  color: #fff;
  box-shadow: 0 8px 26px rgba(0,0,0,0.18);
}

.header .nav a[href="#booking"]:hover {
  opacity: 0.92;
}

/* Logo soll klar & kontrastreich wirken */
.header .logo img {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
}

/* =======================================
   Alm-Info Box – modern, kompakt
======================================= */

.alm-box {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 18px;
  overflow: hidden;

  display: grid;
  grid-template-columns: 1fr;
  gap: 0;

  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Bild optimal darstellen */
.alm-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;       /* schönere Proportionen */
  object-fit: cover;
  display: block;
}

/* Textblock */
.alm-content {
  padding: 1.2rem 1.3rem 1.5rem;
}

.alm-content h3 {
  margin: 0 0 0.6rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  font-family: "Playfair Display", serif;
}

.alm-content p {
  margin: 0 0 1rem;
  line-height: 1.55;
  color: #424242;
}

/* Button */
.alm-btn {
  display: inline-block;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: #2f4a37;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.18s ease;
}

.alm-btn:hover {
  background: #243a2c;
  transform: translateY(-2px);
}

/* RESPONSIV */
@media (min-width: 900px) {
  .alm-box {
    grid-template-columns: 1fr;
    max-width: 400px;        /* kompakte Größe wie gewünscht */
  }
}

/* ==========================================================
   ALM – Split Layout (Text links, Bild rechts)
========================================================== */

.alm-split {
  padding: 5rem 0 4rem;
}

.alm-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;  /* Bild etwas größer */
  gap: 3rem;
  align-items: center;
}

.alm-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 2vw + 1rem, 3rem);
  margin: 0 0 0.5rem;
}

.alm-text p {
  max-width: 60ch;
  color: var(--text-muted);
}

.alm-btn {
  display: inline-block;
  margin-top: 1.6rem;
  padding: 0.9rem 1.6rem;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.alm-btn:hover {
  background: var(--brand-light);
  transform: translateY(-2px);
}

/* Bild */
.alm-image-box {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.alm-image-box img {
  width: 100%;
  height: auto;
  object-fit: cover;          /* schöner, moderner Zuschnitt */
  border-radius: var(--radius);
}

/* Mobile */
@media (max-width: 880px) {
  .alm-split-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   LESACHTAL – Split Layout mit Slideshow rechts
========================================================== */

.lesachtal-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;   /* Bild etwas größer */
  gap: 3rem;
  align-items: center;
}

.lesachtal-text p {
  max-width: 65ch;
  color: var(--text-muted);
}

/* Slideshow Rahmen */
.lesachtal-slideshow-box {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

/* Slideshow */
.lesachtal-slideshow {
  position: relative;
  width: 100%;
  height: clamp(350px, 42vw, 520px);
}

.lesachtal-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  border-radius: var(--radius);

  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.lesachtal-slideshow img.active {
  opacity: 1;
}

/* Mobile Version */
@media (max-width: 880px) {
  .lesachtal-grid {
    grid-template-columns: 1fr;
  }

  .lesachtal-slideshow {
    height: 300px;
  }
}

/* Zweispaltiges Layout */
.lesachtal-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;  /* rechts etwas größer */
  gap: 3rem;
  align-items: start;
}

/* Slideshow-Rahmen */
.lesachtal-slideshow-box {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Slideshow */
.lesachtal-slideshow {
  position: relative;
  width: 100%;
  height: clamp(360px, 40vw, 520px); /* wie oben */
}

.lesachtal-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;    /* ➝ gleiche Bildwirkung wie oben */
  object-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.lesachtal-slideshow img.active {
  opacity: 1;
}

/* Mobile */
@media (max-width: 880px) {
  .lesachtal-grid {
    grid-template-columns: 1fr;
  }
  .lesachtal-slideshow {
    height: 300px;
  }
}

.lesachtal-grid {
  display: grid !important;
  grid-template-columns: 1fr 1.1fr !important;
  gap: 3rem;
  align-items: start;
}

.lesachtal-slideshow {
  height: 380px;               /* nicht zu groß */
  position: relative;
}

.lesachtal-slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lesachtal-slideshow-box {
  margin-top: 1.8rem; /* Höhe kann angepasst werden */
}

.lesachtal-slideshow-box {
  align-self: center;
}
body {
  background: #f4efe6 !important;  /* Warmes, dezentes Beige */
}
.hero-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;  /* Abstand zwischen Titel & Punkten */
}

.hero-dots {
  font-size: 2.8rem;      /* gleiche Größe wie Titel anpassen */
  line-height: 1;  
  display: inline-block;
  margin-top: 0.1rem;     /* perfekter vertikaler Ausgleich */
}
body, .section, .hero, .bg-light {
  background: #f4efe6 !important;
}
.hero-title {
  font-size: clamp(2rem, 2.2vw + 1.2rem, 3.1rem); /* ORIGINALGRÖSSE */
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  line-height: 1.12;

  display: inline-flex;       /* Punkte in derselben Zeile */
  align-items: center;
  gap: 0.45rem;               /* Abstand zwischen Text und Punkten */
}

.hero-dots {
  font-size: 0.9em;           /* etwas kleiner als die Headline */
  font-weight: 700;
  line-height: 1;
  margin-top: 0.15rem;        /* vertikal perfekt ausgerichtet */
}
/* Einheitlicher Hintergrund auf der ganzen Seite */
body,
.section,
.hero,
.hero-modern,
.hero-split,
.home-grid,
.bg-light {
  background: #f4efe6 !important; /* dein warmes Beige */
}
/* Alle Überschriften ca. 20% kleiner */
h1, h2, h3, h4, h5, h6,
.section-head h2,
.home-text h2 {
  font-size: 1.9em !important; /* 80% der bisherigen Größe */
}
.card {
  text-decoration: none;
  color: inherit;
}

.card * {
  text-decoration: none !important;
}
.card {
  cursor: pointer;
}
.card:hover h3 {
  opacity: 0.85;
}
.price-table {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0.6rem 1rem;
  margin-top: 2rem;
  max-width: 800px;
}

.price-header {
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  padding-bottom: 0.6rem;
}

.price-header.empty {
  background: none;
}

.price-label {
  font-size: 1.1rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}

.price-value {
  font-size: 1.1rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  text-align: right;
}
/* ------------------------------
   SLIDESHOW NAVIGATION
------------------------------ */
.slide-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.slide-btn {
  pointer-events: all;
  background: rgba(0,0,0,0.35);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  border-radius: 10px;
  transition: 0.2s;
}

.slide-btn:hover {
  background: rgba(0,0,0,0.55);
}


/* ------------------------------
   LIGHTBOX (Popup)
------------------------------ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.40);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2.3rem;
  color: white;
  cursor: pointer;
}
.room-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.room-text {
    font-size: 1.1rem;
}

.room-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.room-table th {
    text-align: left;
    padding: 8px;
    background: #eadecf;
}

.room-table td {
    padding: 8px;
    border-bottom: 1px solid #ddd;
}

.room-slideshow {
    width: 100%;
}

.slide-container {
    position: relative;
    width: 100%;
    height: 260px; /* ⭐ kleiner als vorher */
    overflow: hidden;
    border-radius: 14px;
}

.slide-container img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .6s ease;
}

.slide-container img.active {
    opacity: 1;
}

/* Pfeile */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    border: none;
    font-size: 28px;
    padding: 6px 12px;
    color: white;
    cursor: pointer;
    border-radius: 8px;
}

.prev { left: 10px; }
.next { right: 10px; }

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    font-size: 1.05rem;
}

.price-table thead th {
    text-align: center;
    background: #e8dccb;
    padding: 0.8rem;
    font-weight: 700;
}

.price-table thead th span {
    font-weight: 400;
    font-size: 0.9rem;
    color: #5f5f5f;
}

.price-table tbody td {
    padding: 0.9rem;
    border-bottom: 1px solid #ddd;
}

.price-table tbody td:first-child {
    font-weight: 600;
}

.simple-price-table {
    width: 60%;
    max-width: 500px;
    border-collapse: collapse;
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.simple-price-table td {
    padding: 0.8rem 0.5rem;
    border-bottom: 1px solid #bfbfbf;
}

.simple-price-table td:first-child {
    font-weight: 600;
}
.room-gallery {
    position: relative;
    width: 450px;
    max-width: 100%;
    margin: 2rem 0;
}

.gallery-container {
    width: 100%;
    overflow: hidden;
}

.gallery-container img {
    width: 100%;
    border-radius: 6px;
    display: none;
    cursor: pointer;
}

.gallery-container img.active {
    display: block;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #8c8c8c;
    color: white;
    border: none;
    padding: 0.6rem 0.9rem;
    font-size: 1.6rem;
    cursor: pointer;
    border-radius: 6px;
    opacity: 0.8;
}

.gallery-prev:hover,
.gallery-next:hover {
    opacity: 1;
}

.gallery-prev {
    left: -10px;
}

.gallery-next {
    right: -10px;
}

.room-gallery {
    position: relative;
    width: 360px;              /* etwas kleiner → passt besser rechts ins Layout */
    max-width: 100%;
    margin: 2rem 0;
}

.gallery-container {
    width: 100%;
    aspect-ratio: 4/3;         /* verhindert extrem hohe Box, wirkt immer harmonisch */
    overflow: hidden;
}

.gallery-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;         /* Bilder füllen den Rahmen sauber aus */
    border-radius: 6px;
    display: none;
    cursor: pointer;
}

.gallery-container img.active {
    display: block;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #8c8c8c;
    color: white;
    border: none;
    padding: 0.6rem 0.9rem;
    font-size: 1.6rem;
    cursor: pointer;
    border-radius: 6px;
    opacity: 0.85;
}

/* Hover */
.gallery-prev:hover,
.gallery-next:hover {
    opacity: 1;
}

/* Pfeile etwas näher ans Bild herangeholt */
.gallery-prev {
    left: 8px;
}

.gallery-next {
    right: 8px;
}

/* ===========================
   GALLERY GRID
=========================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,0.10);
  transition: transform .25s ease, box-shadow .25s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* ===========================
   LIGHTBOX
=========================== */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

/* Close Button */
.lightbox .close {
  position:absolute;
  top: 30px;
  right: 40px;
  font-size: 45px;
  color:white;
  cursor:pointer;
}

/* Navigation */
.lightbox-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: 60px;
  user-select: none;
}

.lightbox-controls span {
  cursor: pointer;
  padding: 0 20px;
  transition: .2s;
}

.lightbox-controls span:hover {
  transform: scale(1.2);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(0,0,0,0.4);
}

.lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 48px;
  color: white;
  cursor: pointer;
}

.lightbox .prev,
.lightbox .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 60px;
  color: white;
  cursor: pointer;
  padding: 20px;
  user-select: none;
}

.lightbox .prev { left: 30px; }
.lightbox .next { right: 30px; }


/* ============== LIGHTBOX BASIC ============== */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

.lightbox-controls span {
  position: absolute;
  top: 50%;
  font-size: 60px;
  color: white;
  cursor: pointer;
  user-select: none;
}

.lightbox .prev {
  left: 30px;
}

.lightbox .next {
  right: 30px;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.lightbox-controls span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.3);
  padding: 12px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.2s;
  user-select: none;
}

.lightbox-controls span:hover {
  background: rgba(0,0,0,0.5);
  color: white;
}

.lightbox .prev {
  left: 30px;
}

.lightbox .next {
  right: 30px;
}
/* Hintergrund */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox.open {
  display: flex;
}

/* Bild */
.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

/* Schließen */
.lightbox .close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 40px;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: 0.2s;
}

.lightbox .close:hover {
  color: white;
}

/* Pfeile */
.lightbox-controls span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.3);
  padding: 12px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.2s;
  user-select: none;
}

.lightbox-controls span:hover {
  background: rgba(0,0,0,0.5);
  color: white;
}

.lightbox .prev {
  left: 30px;
}

.lightbox .next {
  right: 30px;
}

#lesachtal .container {
  display: flex;
  justify-content: space-between;
  align-items: center; /* <-- sorgt für vertikale Zentrierung */
  gap: 40px;
}

/* Layout für Lesachtal-Sektion */
.lesachtal-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;   /* <--- WICHTIG: vertikal mittig ausrichten */
  gap: 40px;
}

/* Text links */
.lesachtal-grid .text-content {
  flex: 1;
}

/* Slideshow rechts */
.lesachtal-slideshow-box {
  flex: 1;
  display: flex;
  justify-content: center;
}

.lesachtal-slideshow {
  max-width: 100%;
}


.lesachtal-grid {
  align-items: center !important;
}

.lesachtal-slideshow-box {
  margin-top: -200px;   /* Höhe nach Geschmack anpassen */
}

.hero-split .hero-slideshow-box {
  margin-top: -40px;   /* nach Bedarf anpassen */
}

.lesachtal-slideshow {
  height: 500px; 
}

.lesachtal-slideshow img {
  object-fit: cover;
  height: 100%;
}

/* ===== FORCE SLIDESHOW SIZE (OVERRIDE) ===== */

.lesachtal-slideshow-box {
  height: 900px !important;     /* Höhe der Box – kannst du anpassen */
  display: flex;
  align-items: center;          /* hebt sie optisch */
}

.lesachtal-slideshow {
  height: 100% !important;
  position: relative;
}

.lesachtal-slideshow img {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover !important;  /* füllt die Box schön */
}

/* ==== Lesachtal Slideshow Größe korrigieren ==== */

.lesachtal-slideshow-box {
  height: 360px !important;    /* Höhe wie ursprünglich */
  display: flex;
  align-items: center;         /* vertikal ausbalanciert */
}

.lesachtal-slideshow {
  height: 100% !important;
  border-radius: 18px;
  overflow: hidden;
}

.lesachtal-slideshow img {
  height: 100% !important;
  width: 100%;
  object-fit: cover;
}

.header .logo {
  width: 140px;   /* gleicht den Button rechts aus */
  display: flex;
  align-items: center;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.header .nav {
  justify-self: center;
}

/* BUCHUNG – immer gleich, auf allen Seiten */
.header .nav .nav-booking {
  background: #c7923e;
  color: #ffffff;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 26px rgba(0,0,0,0.18);
}

.header .nav .nav-booking:hover {
  opacity: 0.92;
}

.lesachtal-slideshow img {
  width: 100%;
  border-radius: 18px;
  display: none;
}


.auto-slideshow-box {
  width: 100%;
  max-width: 520px;     /* Größe steuerbar */
}

.auto-slideshow {
  position: relative;
  width: 100%;
  height: 340px;        /* 👈 WICHTIG: feste Höhe */
  overflow: hidden;
  border-radius: 18px;
}

/* JEDER SLIDE */
.auto-slideshow .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

/* NUR DER AKTIVE */
.auto-slideshow .slide.active {
  opacity: 1;
}


.lesachtal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center; /* ⭐ DAS ist der Schlüssel */
}

.lesachtal-slideshow-box {
  align-self: flex-start;
  margin-top: 20px; /* 👈 HIER feinjustieren */
}

#lesachtal .auto-slideshow-box {
  display: flex;
  align-items: center;   /* ⭐ DAS ist der Schlüssel */
}

#lesachtal .auto-slideshow-box {
  transform: translateY(-10px);
}

#lesachtal .auto-slideshow-box {
  align-self: center;
  margin-top: -150px;
}

/* =========================================
   ALM UNTERSEITE LAYOUT
========================================= */

.alm-page-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.page-title {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

.alm-main-content p {
  margin-bottom: 1.1rem;
  max-width: 70ch;
}

.alm-list {
  padding-left: 1.2rem;
  margin: 1.5rem 0;
}

.alm-list li {
  margin-bottom: 0.8rem;
}

/* Galerie */
.alm-gallery {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.2rem;
}

.alm-gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  transition: transform .2s ease;
}

.alm-gallery img:hover {
  transform: translateY(-3px);
}

/* Sidebar */
.alm-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.alm-highlight-box {
  background: #2f4a37;
  color: white;
  padding: 2rem;
  border-radius: 18px;
}

.alm-highlight-box h3 {
  margin-top: 0;
  font-family: "Playfair Display", serif;
}

.alm-sidebar-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}

.alm-sidebar-card img {
  width: 100%;
  border-radius: 12px;
  margin: 1rem 0;
}

/* Responsive */
@media (max-width: 900px) {
  .alm-page-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================
   ALM BUTTON (Unterseiten-Link)
===================================== */

.btn-alm {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.9rem 1.6rem;

  background: #2f4a37;         /* dein Dunkelgrün */
  color: #ffffff;

  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;

  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  transition: 0.2s ease;
}

.btn-alm:hover {
  background: #243a2c;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.16);
}
/* ROOM SLIDESHOW FIX */

.room-slideshow {
  width: 100%;
  max-width: 600px;   /* hier kannst du größer machen */
}

.slide-container {
  position: relative;
  width: 100%;
  height: 420px;      /* HIER steuerst du die Größe */
  overflow: hidden;
  border-radius: 18px;
}

.slide-container img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.slide-container img.active {
  opacity: 1;
}

/* Buttons */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border: none;
  color: white;
  font-size: 28px;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 8px;
  z-index: 10;
}

.prev { left: 15px; }
.next { right: 15px; }

.slide-container {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 18px;
}

.slide-container img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.slide-container img.active {
  opacity: 1;
}

.auto-slideshow-box {
  position: relative;
  overflow: hidden;
}

.auto-slideshow,
.auto-slideshow img {
  position: relative;
  z-index: 1;
}

.home-text,
.hero-text,
.hero-content {
  position: relative;
  z-index: 3;
}

/* =====================================
   HOME HERO – Vollbild mit Hintergrund
===================================== */

.hero-home {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem 4rem;
}

.hero-home-slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-home-slideshow .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-home-slideshow .slide.active {
  opacity: 1;
}

.hero-home-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
  z-index: 2;
}

.hero-home-content {
  position: relative;
  z-index: 3;
  width: min(900px, 100%);
  text-align: center;
  color: #ffffff;
}

.hero-home-content h1 {
  margin: 0 0 1.2rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(3.8rem, 7vw, 5.5rem);
  line-height: 1.08;
  color: #ffffff;
}

.hero-home-content p {
  max-width: 760px;
  margin: 0 auto 1rem;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.hero-signature {
  margin-top: 1.8rem;
  font-style: italic;
  font-weight: 600;
  color: #ffffff;
}

.hero-home-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}

.hero-btn-primary {
  background: #d39a3d;
  color: #fff;
}

.hero-btn-primary:hover {
  background: #bc8733;
  transform: translateY(-2px);
}

.hero-btn-secondary {
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
}

.hero-btn-secondary:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-home {
    min-height: 78vh;
    padding-top: 6rem;
  }

  .hero-home-content h1 {
    font-size: clamp(2.2rem, 9vw, 3.4rem);
  }

  .hero-home-content p {
    font-size: 1rem;
  }
}

.hero-home-content h1 {
  font-size: 4.6rem !important;
  line-height: 1.05 !important;
}

.cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.55);

  display: none;
  align-items: center;
  justify-content: center;

  z-index: 9999;
}

.cookie-overlay.show {
  display: flex;
}

.cookie-modal {
  background: #fff;
  max-width: 500px;
  width: 90%;

  padding: 40px;
  border-radius: 10px;

  text-align: center;

  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

.cookie-modal h2 {
  margin-top: 0;
  margin-bottom: 15px;
}

.cookie-modal p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.cookie-btn {
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  border-radius: 5px;
}

.cookie-btn.accept {
  background: #b89b72;
  color: white;
}

.cookie-btn.decline {
  background: #ddd;
}

/* ===========================
   cookies*/
.cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.cookie-overlay.show {
  display: flex;
}

.cookie-modal {
  background: #fff;
  max-width: 500px;
  width: 90%;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.cookie-btn {
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  border-radius: 5px;
}

.cookie-btn.accept {
  background: #b89b72;
  color: white;
}

.cookie-btn.decline {
  background: #ddd;
}

.cookie-links {
  margin-top: 20px;
  font-size: 14px;
}

.cookie-links a {
  color: #666;
  margin: 0 10px;
  text-decoration: underline;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 10000;
}

.modal.show {
  display: block;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.modal-dialog {
  position: relative;
  width: min(800px, 90%);
  max-height: 85vh;
  overflow-y: auto;
  margin: 5vh auto;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  z-index: 2;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: none;
  font-size: 28px;
  cursor: pointer;
}

.section {
  padding: 60px 0;
}

.home-image {
  margin-top: 10px;
  border-radius: 5px;
}