:root {
  --green: #2f4f3e;
  --links: #4F6F5A;
  --bg: #f4f1ec;

  --panel: #F7F4EF;
  --text: #2e2e2e;
  --muted: #6a6a6a;
  --gold: #C9A24D;
  --line: rgba(0, 0, 0, 0.08);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
  --radius: 10px;
  --container: 1240px;
  --gutter: 22px;
}

html {
  font-size: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  background-color: var(--bg) !important;
  color: var(--text);
}

body {
  margin: 0;
  font-family: "Source Sans 3", Arial !important;
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
}

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

a {
  color: var(--links) !important;
}

.topbar {
  background: var(--green);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}

.topbar__inner {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar__controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand {
  display: flex;
}

.brand__logo {
  height: auto;
  width: 150px;
}

.status {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #fff;
}

[data-status][data-status-state="closed"] {
  background: rgb(255 48 48 / 37%);
}

.lang-switch {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  overflow: hidden;
}

.lang-switch button {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 6px 10px;
  line-height: 1;
}

.lang-switch button.is-active {
  background: rgba(255, 255, 255, 0.22);
}

.lang-switch button:hover {
  background: rgba(255, 255, 255, 0.12);
}



/* Mini-Hero */
.hero {
  position: relative;
  height: 70vh;
  min-height: 440px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(31, 58, 46, 0.32), rgba(31, 58, 46, 0.32)), url("images/hero.jpg") center/cover no-repeat;
}

.hero__inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 52px 0;
}

.hero__logo {
  min-width: 130px;
  width: 16%;
  margin: 0 auto 24px auto;
}

.hero__title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: clamp(38px, 4.4vw, 60px);
  /* etwas größer */
  margin: 0 0 8px;
  letter-spacing: 0.2px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.hero__sub {
  margin: 0;
  font-size: 17px;
  letter-spacing: 0.6px;
  opacity: 0.92;
  text-transform: none;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

section {
  margin-bottom: 5rem;
}

.welcome-section {
  margin-top: 5rem;
}


.welcome-img {
  background: url("images/welcome.png");
  background-size: cover;
  min-height: 250px;
}

.welcome-h2 {
  margin-bottom: 10px;
}

.subline {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 40px;
}

.box {
  background-color: var(--panel);
  border-radius: var(--radius);
}

.fa-sun,
.fa-snowflake,
.fa-exclamation-triangle,
.fa-phone,
.fa-envelope,
.fa-clock,
.fa-water,
.fa-shoe-prints,
.fa-info-circle {
  color: var(--green);
  opacity: 0.85;
}

h2 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 40px;
  color: var(--text);
}

h3 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 24px;
  margin: 0 0 12px;
  color: var(--text);
}

.meta {
  color: var(--muted);
  font-size: 0.95rem;
  /* größer */
}

.list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #2f2f2f;
  font-size: 0.95rem;
}

.list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

/* Story */

hr.sep {
  border: none;
  border-top: 1px solid var(--line);
  margin: 3rem 0 5rem 0;
}

/* Hiking block */
.hike {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.title-big {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  margin: 0;
}

.sub {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.appartment {
  text-align: center;
  margin: 0 auto;
}

.appartment img {
  object-fit: cover;

}

.appartment .subline {
  margin-bottom: 24px;
}

.appartment .btn-request {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  margin-bottom: 70px;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--gold) !important;
  text-decoration: none;
}

.appartment .btn-request:hover {
  background: #254236;
}

/* Footer */
footer {
  background: var(--green);
  color: rgba(255, 255, 255, 0.92);
  margin-top: 70px;
  padding: 70px 0 30px;
}

footer a {
  color: #dfe7e1 !important;
}

.footer__logo {
  width: 240px;
  opacity: 0.95;
}

.footer__title {
  font-weight: 600;
  margin: 12px 0 10px;
}

.footer__small {
  font-size: 0.85rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  flex-wrap: wrap;
}

/* Floating contact buttons (optional) */
.fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
}


.fab i {
  color: white;
  opacity: 0.95;
  font-size: 1.1rem;
}

.fab a {
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  animation: fabIn 420ms cubic-bezier(.2, .8, .2, 1) forwards;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--green);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  text-decoration: none;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.fab a:nth-child(1) {
  animation-delay: 140ms;
}

.fab a:nth-child(2) {
  animation-delay: 220ms;
}

@keyframes fabIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .fab a {
    animation: none;
    opacity: 1;
    transform: none;
  }
}


.season-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.season {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text);
}

.season i {
  font-size: 18px;
  text-align: center;
}

/* .icon-fire {
  color: #ff4500;
}
.icon-clock {
  color: #6a6a6a;
}
.icon-warning {
  color: #daa520;
}
.icon-map {
  color: #228b22;
}
.icon-phone {
  color: #2f7a4f;
}
.icon-mail {
  color: #4a6fa5;
} */

.icon-row,
.contact {
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 8px;
  align-items: start;
}

.icon-row i,
.contact i {
  width: 28px;
  font-size: 18px;
  text-align: center;
  line-height: 1.2;
}

.contact {
  row-gap: 6px;
}

.maps-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-weight: 600;
  color: #1a73e8;
}

.icon-placeholder {
  opacity: 0;
}

.maps-link i {
  font-size: 16px;
}

.opening-hours .icon-row {
  margin-bottom: 6px;
}

.opening-hours .season-list {
  margin-top: 4px;
}

.prestory-title {
  padding-left: 18px;
  border-left: 3px solid var(--green-2);
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.6;
  color: #3a3a3a;
  opacity: 0.95;
  text-align: center;
}

.title-geschichte {
  padding-top: 0;
  padding-bottom: 0;
}

.hike-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hike-card i {
  font-size: 20px;
  color: var(--green-2);
}

.story-eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--green-2);
  margin-bottom: 6px;
}

.story-timeline {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.story-timeline li {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
}

.story-timeline strong {
  color: var(--green-2);
  min-width: 60px;
}

.hike-facts {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text);
}

.hike-facts li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #444;
}

.hike-facts i,
.hike-note {
  color: var(--green-2);
  width: 18px;
  margin-right: 10px;
}

.hike-note i {
  color: var(--green-2);
  margin-right: 10px;
}

@media (max-width: 576px) {
  .prestory-title {
    font-size: 20px;
  }

  .hero {
    height: 80vh;
  }

  .status {
    font-size: 0.6rem;
    padding: 6px 10px;
  }


  .brand__logo {
    height: auto;
    width: 120px;
  }
}

@media (max-width: 375px) {
  .topbar__inner {
    gap: 8px;
  }

  .topbar__controls {
    gap: 6px;
  }

  .lang-switch button {
    font-size: 0.62rem;
    padding: 6px 8px;
  }
}
