/* ======================================================
   Hotel Alter Posthof - Stylesheet
   ====================================================== */

/* --- Custom properties --- */
:root {
  --gold:       #b8965a;
  --gold-light: #d4b07a;
  --gold-dark:  #8a6c38;
  --dark:       #1a1612;
  --dark-2:     #231f1a;
  --dark-3:     #2e2820;
  --light:      #f9f6f0;
  --light-2:    #ede8df;
  --white:      #ffffff;
  --text:       #3d3530;
  --text-muted: #7a6e64;
  --radius:     6px;
  --radius-lg:  12px;
  --shadow:     0 4px 24px rgba(0,0,0,.12);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.18);
  --trans:      .3s ease;
  --max-w:      1200px;
}

/* --- Reset & base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
  width: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.7;
  overflow-x: clip;
  width: 100%;
  position: relative;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: inherit;
}

em { font-style: italic; color: var(--gold); }

.section-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1.25rem;
}

.section-desc {
  max-width: 560px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* --- Layout helpers --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section { padding-block: 5rem; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-desc { margin-inline: auto; }

/* Section variants */
.section-light { background: var(--light); color: var(--text); }
.section-light-alt { background: #d0bf9e; color: var(--text); }
.section-dark  { background: var(--dark);  color: var(--white); }
.section-dark  .section-eyebrow { color: var(--gold-light); }
.section-dark  .section-desc    { color: rgba(255,255,255,.6); }
.section-wine  { background: var(--dark-2); color: var(--white); }
.section-wine  .section-eyebrow { color: var(--gold-light); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: .8em 2em;
  border-radius: var(--radius);
  font-weight: 500;
  letter-spacing: .03em;
  cursor: pointer;
  transition: background var(--trans), color var(--trans), border-color var(--trans), transform var(--trans);
  border: 2px solid transparent;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-secondary {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--dark);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

.btn-sm { padding: .55em 1.4em; font-size: .9rem; }
.btn-full { width: 100%; text-align: center; }


/* ======================================================
   NAVIGATION
   ====================================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 22, 18, .97);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  transition: background var(--trans), box-shadow var(--trans);
}

#navbar.scrolled {
  background: rgba(26, 22, 18, .97);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  gap: .25rem;
}

.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}

.logo-sub {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  padding: .45em .8em;
  border-radius: var(--radius);
  transition: color var(--trans), background var(--trans);
}
.nav-links a:hover { color: var(--gold-light); }

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--dark);
  padding: .45em 1.2em;
  margin-left: .5rem;
}
.nav-links .nav-cta:hover { background: var(--gold-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}


/* ======================================================
   HERO
   ====================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    url('img/Hotel_Alter_Posthof_Spay.png'),
    linear-gradient(160deg, #3d3530 0%, #1a1612 60%, #2e2820 100%);
  background-size: cover;
  background-position: center 55%;
  background-color: var(--dark-3);
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,22,18,.15) 0%,
    rgba(26,22,18,.25) 55%,
    rgba(26,22,18,.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 2rem 1.5rem;
  max-width: 740px;
  animation: fadeUp .9s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.55), 0 1px 3px rgba(0,0,0,.4);
}

.hero-title em { color: var(--gold-light); }

.hero-title-sub {
  display: inline-block;
  margin-top: .35em;
  font-size: .8em;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--gold-light);
}

.hero-tagline {
  font-size: clamp(.9rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.92);
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: .05em;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-actions .btn { padding: .6em 1.5em; font-size: .88rem; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  z-index: 2;
  animation: bounce 2.5s infinite;
}
.hero-scroll svg { width: 32px; height: 32px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}


/* ======================================================
   HIGHLIGHTS BAR
   ====================================================== */
.highlights {
  background: var(--dark);
  padding-block: 2rem;
  border-top: 1px solid rgba(184,150,90,.2);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  min-width: 0;
}
.highlight-item > div { min-width: 0; overflow-wrap: break-word; }

.highlight-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  color: var(--gold);
}
.highlight-icon svg { width: 100%; height: 100%; }

.highlight-item strong {
  display: block;
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: .15rem;
}
.highlight-item span {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}


/* ======================================================
   ABOUT
   ====================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.about-text .btn { margin-top: 1rem; }

.about-image-block {
  position: relative;
  height: 500px;
}

.about-image-block--single {
  height: auto;
  aspect-ratio: 425 / 283;
}

.about-img {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-img-main {
  width: 78%; height: 85%;
  top: 0; left: 0;
  background-color: var(--dark-3);
}

.about-img-accent {
  width: 48%; height: 52%;
  bottom: 0; right: 0;
  background-color: var(--dark-2);
  border: 4px solid var(--light);
}

/* Single image variant */
.about-image-block--single { display: flex; align-items: center; justify-content: center; }

.about-img-single {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background-image:
    url('img/Hotel_Alter_Posthof.png'),
    linear-gradient(135deg, #2e2820 30%, #3d3530 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--light-2);
}

.about-badge {
  position: absolute;
  bottom: .75rem;
  right: .75rem;
  background: var(--gold);
  color: var(--dark);
  padding: .5rem .9rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  z-index: 1;
}
.about-badge strong { display: block; font-family: 'Playfair Display', serif; font-size: .9rem; }
.about-badge span   { font-size: .6rem; letter-spacing: .08em; text-transform: uppercase; }


/* ======================================================
   ROOMS
   ====================================================== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.room-card {
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
  border: 1px solid rgba(255,255,255,.05);
  min-width: 0;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.room-card--featured { border-color: rgba(184,150,90,.3); }

.room-img {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center;
  background-color: var(--dark-2);
}

.room-img--single {
  background-image:
    url('img/Einzelzimmer_Hotel_Spay.jpg'),
    linear-gradient(135deg, #2a3a4a 0%, #1e2c3a 40%, #2e2318 100%);
}
.room-img--double {
  background-image:
    url('img/Doppelzimmer_Hotel_Spay.jpg'),
    linear-gradient(135deg, #3a2a1a 0%, #4a3420 40%, #2a1e10 100%);
}
.room-img--komfort {
  background-image:
    url('img/Komfortzimmer_Hotel_Spay.jpg'),
    linear-gradient(135deg, #4a3820 0%, #6b5230 40%, #3a2a14 100%);
}

.room-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3em .8em;
  border-radius: 100px;
  z-index: 1;
}

.room-body {
  padding: 1.75rem;
  color: var(--white);
}
.room-item {
  display: flex;
  flex-direction: column;
}
.room-item .room-card {
  flex: 1;
}
.room-btn {
  display: block;
  margin-top: 1rem;
  text-align: center;
}

.room-body h3 {
  font-size: 1.35rem;
  margin-bottom: .75rem;
  color: var(--white);
}

.room-body p {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.room-features {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.5rem;
}

.room-features li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
}

.room-features svg {
  width: 14px; height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

.rooms-note {
  text-align: center;
  margin-top: 2.5rem;
  color: rgba(255,255,255,.45);
  font-size: .9rem;
  font-style: italic;
}


/* ======================================================
   RESTAURANT
   ====================================================== */
.restaurant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.restaurant-images {
  position: relative;
  height: 520px;
}

.ws-img {
  position: absolute;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}

.ws-img-1 {
  width: 72%; height: 78%;
  top: 0; left: 0;
  background-image:
    url('img/Restaurant.jpg'),
    linear-gradient(135deg, #231f1a 30%, #2e2820 100%);
  background-color: var(--dark-3);
}
.ws-img-2 {
  width: 55%; height: 52%;
  bottom: 0; right: 0;
  background-image:
    url('img/Essen.jpg'),
    linear-gradient(135deg, #2e2820 30%, #3d3530 100%);
  background-repeat: no-repeat;
  background-color: var(--dark-2);
  border: 3px solid rgba(184,150,90,.3);
}

.restaurant-text p {
  color: rgba(255,255,255,.65);
  margin-bottom: 1rem;
}

.ws-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
  margin: 2rem 0;
}

.ws-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ws-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 2.5rem;
  text-align: center;
}

.ws-feature strong { display: block; color: var(--white); font-size: .95rem; }
.ws-feature span   { font-size: .85rem; color: rgba(255,255,255,.5); }

/* Restaurant opening hours */
.restaurant-hours {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}

.restaurant-hours h4 {
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.restaurant-hours ul {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.restaurant-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
}

.restaurant-hours li span:first-child {
  color: rgba(255,255,255,.45);
}


/* ======================================================
   GALERIE
   ====================================================== */
.gallery-carousel {
  position: relative;
  padding-inline: 3.75rem;
}

.gallery {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: .25rem;
}
.gallery::-webkit-scrollbar { display: none; }

.gallery-item {
  position: relative;
  display: block;
  flex: 0 0 calc((100% - 3rem) / 4);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: transform var(--trans), box-shadow var(--trans);
  background: var(--light-2);
  scroll-snap-align: start;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background var(--trans), color var(--trans), opacity var(--trans);
}
.gallery-nav:hover { background: var(--gold-dark); }
.gallery-nav:disabled { opacity: .35; cursor: default; }
.gallery-nav--prev { left: 0; }
.gallery-nav--next { right: 0; }
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 8, 6, .94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem 2rem;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity .25s ease;
}
.lightbox.open {
  display: flex;
  opacity: 1;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
  cursor: default;
  animation: lightboxIn .3s ease;
}

@keyframes lightboxIn {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans), border-color var(--trans);
  z-index: 1;
}
.lightbox-close svg { width: 20px; height: 20px; }
.lightbox-close:hover {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .4);
  transform: rotate(90deg);
}

body.lightbox-open { overflow: hidden; }

@media (max-width: 768px) {
  .lightbox        { padding: 3.5rem 1rem 1rem; }
  .lightbox-close  { top: .75rem; right: .75rem; width: 40px; height: 40px; }
}


/* ======================================================
   WANDERN / TRAILS
   ====================================================== */
.trails-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.trail-card {
  display: block;
  padding: 2rem 1.5rem;
  border: 1px solid var(--light-2);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans);
  min-width: 0;
  overflow-wrap: break-word;
}
.trail-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.trail-card--link { cursor: pointer; }
.trail-card--link:hover { transform: translateY(-4px); }

.trail-link-hint {
  display: inline-block;
  margin-top: 1rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--gold);
  transition: color var(--trans);
}
.trail-card:hover .trail-link-hint { color: var(--gold-dark); }

.trail-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(184,150,90,.25);
  line-height: 1;
  margin-bottom: 1rem;
}

.trail-card h4 {
  color: var(--text);
  font-size: 1.15rem;
  margin-bottom: .6rem;
}

.trail-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Extra wandern section */
.wandern-extra {
  background: var(--light-2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.wandern-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.events-intro {
  text-align: center;
  margin-top: 3rem;
  max-width: 720px;
  margin-inline: auto;
}
.events-intro p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
}

.wandern-extra h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

/* Partner & Guides grid */
.wandern-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.wandern-link-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--light-2);
  border-radius: var(--radius);
  transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans);
}
a.wandern-link-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.wandern-link-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  color: var(--gold);
}
.wandern-link-icon svg { width: 100%; height: 100%; }

.wandern-link-card strong {
  display: block;
  font-size: .92rem;
  color: var(--text);
  margin-bottom: .2rem;
}

.wandern-link-card span {
  display: block;
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.wandern-link-contact {
  margin-top: .35rem;
  font-size: .78rem !important;
}
.wandern-link-contact a {
  color: var(--gold);
  transition: color var(--trans);
}
.wandern-link-contact a:hover { color: var(--gold-dark); }


/* ======================================================
   AMENITIES
   ====================================================== */
#ausstattung { background: var(--light-2); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.amenity-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform var(--trans), box-shadow var(--trans);
  border: 1px solid var(--light-2);
  min-width: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}
.amenity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.amenity-icon {
  width: 48px; height: 48px;
  margin: 0 auto 1rem;
  color: var(--gold);
}
.amenity-icon svg { width: 100%; height: 100%; }

.amenity-card h4 {
  font-size: 1rem;
  margin-bottom: .4rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.amenity-card p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
}


/* ======================================================
   SIGHTS / UMGEBUNG
   ====================================================== */
.sights-section { border-top: 1px solid rgba(255,255,255,.05); }

.sights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.sight-card {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.03);
  transition: border-color var(--trans), background var(--trans);
  min-width: 0;
  overflow-wrap: break-word;
}
.sight-card:hover {
  border-color: rgba(184,150,90,.35);
  background: rgba(184,150,90,.05);
}

.sight-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(184,150,90,.2);
  line-height: 1;
  margin-bottom: 1rem;
}

.sight-card h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: .6rem;
}

.sight-card p {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}


/* ======================================================
   LOCATION
   ====================================================== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.location-address {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-block: 2rem;
}

.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.loc-item svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: .15rem;
}

.loc-item strong { display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .2rem; }
.loc-item span, .loc-item a { font-size: .95rem; color: var(--text); }
.loc-item a:hover { color: var(--gold); }

.anfahrt-info {
  border-top: 1px solid var(--light-2);
  padding-top: 1.5rem;
  margin-top: .5rem;
}

.anfahrt-info h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.anfahrt-info ul { display: flex; flex-direction: column; gap: .6rem; }
.anfahrt-info li { font-size: .9rem; color: var(--text-muted); }
.anfahrt-info strong { color: var(--text); }

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.location-map iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

.map-link {
  display: block;
  text-align: center;
  padding: .75rem;
  background: var(--light-2);
  font-size: .82rem;
  color: var(--text-muted);
  transition: color var(--trans);
}
.map-link:hover { color: var(--gold); }


/* ======================================================
   CONTACT
   ====================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row         { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: .45rem; min-width: 0; }
.form-group input,
.form-group select,
.form-group textarea { min-width: 0; max-width: 100%; width: 100%; }

.form-group label {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255,255,255,.6);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: .75em 1em;
  color: var(--white);
  transition: border-color var(--trans), background var(--trans);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,.09);
}

.form-group select option { background: var(--dark-2); color: var(--white); }

.form-note {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  line-height: 1.6;
}

/* Aside */
.contact-aside { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.contact-card h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.contact-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color var(--trans);
}
.contact-link:last-child { border-bottom: none; }
.contact-link:hover { color: var(--gold-light); }
.contact-link svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* Opening hours in contact sidebar */
.opening-hours {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.oh-row {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
}

.oh-row span:first-child {
  color: rgba(255,255,255,.45);
}

/* Badges */
.badges-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
}


/* ======================================================
   WEITERE HOTELS
   ====================================================== */
.weitere-hotels {
  background: var(--dark-2);
  padding-block: 2.5rem;
  border-top: 1px solid rgba(184,150,90,.15);
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.hotel-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(184,150,90,.15);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: border-color var(--trans);
}
.hotel-card:hover { border-color: var(--gold); }

.hotel-card-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .15rem;
}
.hotel-location {
  font-size: .78rem;
  color: var(--text-muted);
  letter-spacing: .04em;
}

.hotel-link {
  font-size: .8rem;
  font-weight: 500;
  color: var(--gold-light);
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: border-color var(--trans), color var(--trans);
}
.hotel-link:hover { color: var(--white); border-color: var(--white); }

@media (max-width: 700px) {
  .hotels-grid { grid-template-columns: 1fr; }
  .hotel-card  { flex-direction: column; align-items: flex-start; }
}


/* ======================================================
   FOOTER
   ====================================================== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  border-top: 1px solid rgba(184,150,90,.15);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-block: 3.5rem;
}

.footer-brand .logo-sub { color: rgba(184,150,90,.7); }

.footer-brand p {
  margin-top: .75rem;
  font-size: .85rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col li { font-size: .88rem; }
.footer-col a { transition: color var(--trans); }
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  text-align: center;
  padding-block: 1.2rem;
  font-size: .78rem;
  border-top: 1px solid rgba(255,255,255,.06);
}


/* ======================================================
   SCROLL-TO-TOP BUTTON
   ====================================================== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans), transform var(--trans);
  z-index: 900;
  cursor: pointer;
}
.scroll-top svg { width: 20px; height: 20px; }
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); }


/* ======================================================
   FORM MESSAGE
   ====================================================== */
.form-msg {
  padding: .85em 1.1em;
  border-radius: var(--radius);
  font-size: .88rem;
  line-height: 1.5;
}
.form-msg--success {
  background: rgba(74, 170, 100, .15);
  border: 1px solid rgba(74, 170, 100, .35);
  color: #6ecf8a;
}
.form-msg--error {
  background: rgba(220, 80, 70, .12);
  border: 1px solid rgba(220, 80, 70, .3);
  color: #f08080;
}


/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1024px) {
  .highlights-grid  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .amenities-grid   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sights-grid      { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trails-grid      { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rooms-grid       { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-item     { flex: 0 0 calc((100% - 2rem) / 3); }
  .footer-inner     { grid-template-columns: 1fr 1fr; row-gap: 2.5rem; }
  .footer-brand     { grid-column: span 2; }
}

@media (max-width: 820px) {
  .about-grid         { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image-block  { height: 340px; }
  .restaurant-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
  .restaurant-images  { height: 320px; order: -1; }
  .ws-features        { grid-template-columns: 1fr; }
  .location-grid      { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid       { grid-template-columns: 1fr; }
  .form-row           { grid-template-columns: 1fr; gap: 1.25rem; }
}

@media (max-width: 768px) {
  .container          { padding-inline: 1.25rem; }
  .nav-inner          { padding: .9rem 1.25rem; }
  .logo-main          { font-size: 1.35rem; }
  .logo-sub           { font-size: .68rem; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 82vw);
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: .5rem;
    box-shadow: -4px 0 32px rgba(0,0,0,.4);
    transition: transform var(--trans);
    overflow-y: auto;
  }
  .nav-links.open     { display: flex; }
  .nav-links a        { font-size: 1.05rem; padding: .6em 0; width: 100%; min-height: 44px; display: flex; align-items: center; }
  .nav-links .nav-cta { margin-left: 0; margin-top: 1rem; text-align: center; }
  .nav-toggle         { display: flex; z-index: 1001; }

  .highlights         { padding-block: 1.5rem; }
  .highlights-grid    { grid-template-columns: 1fr; gap: 1.25rem; }
  .rooms-grid         { grid-template-columns: 1fr; gap: 1.5rem; }
  .trails-grid        { grid-template-columns: 1fr; }
  .sights-grid        { grid-template-columns: 1fr; }
  .amenities-grid     { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
  .gallery-carousel   { padding-inline: 2.75rem; }
  .gallery            { gap: .6rem; }
  .gallery-item       { flex: 0 0 calc((100% - .6rem) / 2); }
  .gallery-nav        { width: 40px; height: 40px; font-size: 1.5rem; }
  .footer-inner       { grid-template-columns: 1fr; gap: 2rem; padding-block: 2.5rem; }
  .footer-brand       { grid-column: unset; }
  .footer-brand p     { max-width: none; }
  .section            { padding-block: 3.5rem; }
  .section-header     { margin-bottom: 2.5rem; }

  .amenity-card       { padding: 1.25rem .9rem; }
  .amenity-card h4    { font-size: .92rem; }
  .amenity-card p     { font-size: .75rem; }
  .amenity-icon       { width: 40px; height: 40px; margin-bottom: .65rem; }

  .room-body          { padding: 1.25rem; }
  .room-img           { height: 200px; }

  .ws-img-1, .ws-img-2 { background-position: center; }

  .location-map iframe { height: 320px; }

  .hero-content       { padding: 2rem 1.25rem; }
  .hero-tagline       { margin-bottom: 1.75rem; }

  .scroll-top         { width: 42px; height: 42px; bottom: 1.25rem; right: 1.25rem; }

  .wandern-extra      { padding: 1.5rem; }
  .wandern-links-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root              { --radius-lg: 10px; }
  .container         { padding-inline: 1rem; }
  .nav-inner         { padding: .8rem 1rem; }
  .section           { padding-block: 3rem; }
  .section-header    { margin-bottom: 2rem; }
  .section-title     { font-size: 1.75rem; }
  .section-eyebrow   { font-size: .7rem; }
  .section-desc      { font-size: .95rem; }

  .hero              { min-height: 88vh; }
  .hero-title        { font-size: 2rem; }
  .hero-tagline      { font-size: .9rem; }
  .hero-actions      { flex-direction: column; align-items: stretch; gap: .75rem; }
  .hero-actions .btn { width: 100%; }
  .hero-scroll       { bottom: 1.5rem; }
  .hero-scroll svg   { width: 26px; height: 26px; }

  .amenities-grid    { grid-template-columns: 1fr; gap: .85rem; }
  .amenity-card      { padding: 1.1rem 1rem; display: flex; align-items: center; gap: .9rem; text-align: left; }
  .amenity-icon      { margin: 0; flex-shrink: 0; }
  .amenity-card h4   { margin-bottom: .15rem; }
  .amenity-card p    { font-size: .78rem; }

  .highlight-item    { gap: .85rem; }
  .highlight-icon    { width: 38px; height: 38px; }

  .room-body         { padding: 1.1rem; }
  .room-body h3      { font-size: 1.2rem; }

  .sight-card        { padding: 1.5rem 1.25rem; }
  .sight-number      { font-size: 2.4rem; margin-bottom: .5rem; }
  .trail-card        { padding: 1.5rem 1.25rem; }
  .trail-number      { font-size: 2.4rem; margin-bottom: .5rem; }

  .about-image-block { height: 280px; }
  .restaurant-images { height: 260px; }

  .footer-inner      { padding-block: 2rem; }
}

@media (max-width: 360px) {
  .container         { padding-inline: .85rem; }
  .hero-title        { font-size: 1.75rem; }
  .section-title     { font-size: 1.55rem; }
  .logo-main         { font-size: 1.2rem; }
  .logo-sub          { font-size: .62rem; letter-spacing: .08em; }
}

/* --- Scroll-in animations --- */
.fade-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* --- Active nav link --- */
.nav-links a.active { color: var(--gold-light) !important; }
