/* ============================================================
   Hotel Zur Post Holzkirchen — styles.css
   Design: Warm ivory, serif elegance, left sidebar nav
   ============================================================ */

/* ----------------------------------------------------------
   0. CUSTOM PROPERTIES
   ---------------------------------------------------------- */
:root {
  --ivory:        #faf6ef;
  --ivory-dark:   #f0e9dc;
  --warm:         #2c1f0e;
  --warm-mid:     #4a3520;
  --gold:         #b8933f;
  --gold-light:   #d4b06a;
  --gold-pale:    #f0e4ca;
  --stone:        #8a7a6a;
  --stone-light:  #c2b5a5;
  --line:         rgba(44, 31, 14, 0.10);
  --line-strong:  rgba(44, 31, 14, 0.20);

  --sidebar-w:    180px;

  --font-serif:   'Playfair Display', Georgia, serif;
  --font-body:    'Lato', system-ui, sans-serif;

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --transition:   0.35s var(--ease-out);
}

/* ----------------------------------------------------------
   1. RESET & BASE
   ---------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--ivory);
  color: var(--warm);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  display: flex;
  min-height: 100vh;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--warm);
}

address {
  font-style: normal;
  line-height: 1.9;
}

ul {
  list-style: none;
}

/* ----------------------------------------------------------
   2. TYPOGRAPHY SCALE
   ---------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--warm);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 500;
}

h4 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--warm-mid);
  line-height: 1.8;
}

em {
  font-style: italic;
}

/* ----------------------------------------------------------
   3. BUTTONS
   ---------------------------------------------------------- */
.btn-primary {
  display: inline-block;
  background-color: var(--gold);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85em 2.2em;
  border: 2px solid var(--gold);
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}

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

.btn-primary.btn-small {
  font-size: 0.76rem;
  padding: 0.7em 1.6em;
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75em 1.8em;
  border: 1.5px solid var(--gold);
  transition: background-color var(--transition), color var(--transition);
}

.btn-outline:hover {
  background-color: var(--gold);
  color: var(--ivory);
}

/* ----------------------------------------------------------
   4. SIDEBAR NAVIGATION (DESKTOP)
   ---------------------------------------------------------- */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background-color: var(--warm);
  z-index: 100;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sidebar-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2.5rem 1.4rem 2rem;
  position: relative;
}

/* Thin gold accent line on right */
.sidebar::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--gold) 20%,
    var(--gold) 80%,
    transparent 100%
  );
  opacity: 0.4;
}

/* Brand block */
.sidebar-brand {
  text-align: center;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(184, 147, 63, 0.25);
  margin-bottom: 2.5rem;
}

.brand-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin-bottom: 0.4rem;
}

.brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-light);
  opacity: 0.7;
}

/* Nav links */
.nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.nav-link {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone-light);
  padding: 0.7rem 0.8rem;
  border-left: 2px solid transparent;
  transition:
    color var(--transition),
    border-color var(--transition),
    background-color var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
  border-left-color: var(--gold);
  background-color: rgba(184, 147, 63, 0.07);
}

/* Sidebar address */
.sidebar-address {
  padding-top: 2rem;
  border-top: 1px solid rgba(184, 147, 63, 0.2);
  text-align: center;
}

.sidebar-address p {
  font-family: var(--font-body);
  font-size: 0.62rem;
  color: var(--stone-light);
  opacity: 0.6;
  line-height: 1.9;
}

.sidebar-tel {
  font-family: var(--font-serif) !important;
  font-style: italic;
  font-size: 0.7rem !important;
  opacity: 0.85 !important;
  color: var(--gold-light) !important;
  margin-top: 0.4rem;
}

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  align-self: flex-end;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--ivory);
  transition: transform var(--transition), opacity var(--transition);
}

/* ----------------------------------------------------------
   5. MAIN CONTENT WRAPPER
   ---------------------------------------------------------- */
.main-content {
  margin-left: var(--sidebar-w);
  flex: 1;
  min-width: 0;
}

/* ----------------------------------------------------------
   6. SECTION SHARED
   ---------------------------------------------------------- */
.section {
  padding: 6rem 5vw;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.section-title {
  margin-bottom: 1.2rem;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--stone);
  line-height: 1.85;
  max-width: 600px;
  margin: 0 auto;
}

/* ----------------------------------------------------------
   7. HERO SECTION
   ---------------------------------------------------------- */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5vw;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #3a2a16; /* fallback */
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(44, 31, 14, 0.68) 0%,
    rgba(44, 31, 14, 0.42) 50%,
    rgba(44, 31, 14, 0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--ivory);
  max-width: 780px;
}

.hero-est {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  letter-spacing: 0.25em;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.hero-headline {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1.6rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

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

.hero-tagline {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(250, 246, 239, 0.85);
  line-height: 1.8;
  margin-bottom: 2.4rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold-light);
  opacity: 0.7;
  animation: bounce 2.4s ease-in-out infinite;
  z-index: 2;
}

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

/* ----------------------------------------------------------
   8. ZIMMER SECTION
   ---------------------------------------------------------- */
.zimmer-section {
  background-color: var(--ivory);
  padding-bottom: 5rem;
}

.zimmer-panels {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.zimmer-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.zimmer-panel:last-child {
  border-bottom: none;
}

/* Alternate panels flip image/text order */
.zimmer-panel--alt {
  direction: rtl;
}

.zimmer-panel--alt > * {
  direction: ltr;
}

.zimmer-img-wrap {
  position: relative;
  overflow: hidden;
}

.zimmer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.zimmer-panel:hover .zimmer-img {
  transform: scale(1.05);
}

.zimmer-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(44,31,14,0.15), transparent);
}

.zimmer-panel--alt .zimmer-img-overlay {
  background: linear-gradient(to left, rgba(44,31,14,0.15), transparent);
}

/* Fallback background when image missing */
.zimmer-img-wrap {
  background-color: var(--ivory-dark);
}

.zimmer-info {
  padding: 3.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--ivory);
}

.zimmer-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.zimmer-cat {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.zimmer-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--warm);
}

.zimmer-name {
  font-size: 1.55rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.2rem;
}

.zimmer-desc {
  font-size: 0.95rem;
  color: var(--stone);
  line-height: 1.85;
  margin-bottom: 1.4rem;
}

.zimmer-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem 1rem;
  margin-bottom: 2rem;
}

.zimmer-features li {
  font-size: 0.8rem;
  color: var(--warm-mid);
  font-family: var(--font-body);
  padding-left: 1rem;
  position: relative;
}

.zimmer-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}

.zimmer-note {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.zimmer-note p {
  font-size: 0.82rem;
  color: var(--stone);
  font-style: italic;
}

/* ----------------------------------------------------------
   9. RESTAURANT SECTION
   ---------------------------------------------------------- */
.restaurant-section {
  background-color: var(--ivory-dark);
  padding: 6rem 5vw;
}

.restaurant-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.restaurant-text .section-label {
  margin-bottom: 0.6rem;
}

.restaurant-text .section-title {
  margin-bottom: 0.5rem;
}

.restaurant-lead {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.restaurant-body {
  font-size: 0.97rem;
  color: var(--stone);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.restaurant-hours {
  margin-top: 2rem;
  padding: 1.8rem 2rem;
  background-color: var(--ivory);
  border-left: 3px solid var(--gold);
  margin-bottom: 1.5rem;
}

.hours-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line);
}

.hours-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-row--note .hours-time {
  color: var(--stone);
  font-style: italic;
}

.hours-day {
  font-weight: 600;
  color: var(--warm);
  font-family: var(--font-body);
}

.hours-time {
  color: var(--stone);
  font-family: var(--font-body);
}

.restaurant-reserve {
  font-size: 0.9rem;
  color: var(--stone);
}

.restaurant-reserve a {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
}

.restaurant-img-wrap {
  position: relative;
  border-radius: 0;
  overflow: hidden;
}

.restaurant-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
  background-color: var(--warm-mid);
}

.restaurant-img-badge {
  position: absolute;
  bottom: 2.5rem;
  right: -1.2rem;
  background-color: var(--gold);
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  text-align: center;
  box-shadow: 0 4px 28px rgba(0,0,0,0.22);
}

.restaurant-img-badge span {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.restaurant-img-badge strong {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

/* ----------------------------------------------------------
   10. LAGE SECTION
   ---------------------------------------------------------- */
.lage-section {
  background-color: var(--ivory);
  padding: 6rem 5vw;
}

.lage-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.lage-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
}

.distance-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.distance-item {
  display: grid;
  grid-template-columns: 2.2rem 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  transition: background-color 0.2s;
}

.distance-item:last-child {
  border-bottom: none;
}

.distance-item:hover {
  background-color: rgba(184, 147, 63, 0.04);
}

.distance-icon {
  font-size: 1.2rem;
  text-align: center;
}

.distance-item div strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--warm);
  margin-bottom: 0.15rem;
}

.distance-item div span {
  font-size: 0.78rem;
  color: var(--stone);
}

.distance-km {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

.lage-directions {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.direction-block {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.direction-block:last-child {
  border-bottom: none;
}

.direction-block h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  font-style: italic;
  color: var(--warm);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.6rem;
}

.direction-block p {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.85;
}

/* ----------------------------------------------------------
   11. KONTAKT SECTION
   ---------------------------------------------------------- */
.kontakt-section {
  background-color: var(--warm);
  padding: 6rem 5vw;
}

.kontakt-section .section-label {
  color: var(--gold-light);
}

.kontakt-section .section-title {
  color: var(--ivory);
}

.kontakt-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 4rem;
}

.kontakt-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(184, 147, 63, 0.2);
  padding: 2.8rem 2.2rem;
  transition: background-color var(--transition);
}

.kontakt-card:hover {
  background-color: rgba(184, 147, 63, 0.06);
}

.kontakt-card-icon {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  display: block;
}

.kontakt-card h3 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.kontakt-card p,
.kontakt-card address {
  font-size: 0.92rem;
  color: var(--stone-light);
  line-height: 1.9;
  margin-bottom: 0.3rem;
}

.kontakt-card a {
  color: var(--ivory);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
}

.kontakt-card a:hover {
  color: var(--gold-light);
}

.kontakt-hours {
  font-size: 0.78rem !important;
  color: var(--stone) !important;
  margin-bottom: 0.8rem !important;
}

.kontakt-anfrage-text {
  font-size: 0.88rem !important;
  margin-bottom: 1.5rem !important;
}

/* ----------------------------------------------------------
   12. FOOTER
   ---------------------------------------------------------- */
.footer {
  background-color: #1a1108;
  color: var(--stone-light);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.8rem 5vw;
  border-bottom: 1px solid rgba(184, 147, 63, 0.12);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gold-light);
}

.footer-loc {
  font-size: 0.7rem;
  font-family: var(--font-body);
  color: var(--stone);
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--gold-light);
}

.footer-legal p {
  font-size: 0.76rem;
  color: var(--stone);
  opacity: 0.6;
}

.escape-disclaimer {
  background: #030303;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.escape-disclaimer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
}
.escape-disclaimer__inner i { color: rgba(255,255,255,0.3); flex-shrink: 0; margin-top: 0.14rem; }
.escape-disclaimer__inner strong { font-weight: 600; color: rgba(255,255,255,0.6); }
.escape-disclaimer__inner a { color: #eb7005; text-decoration: underline; text-decoration-color: rgba(235,112,5,0.3); }
.escape-disclaimer__inner a:hover { color: #f59034; }

/* ----------------------------------------------------------
   13. SCROLL-IN ANIMATIONS
   ---------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------------
   14. DIVIDER ORNAMENT
   ---------------------------------------------------------- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0;
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line-strong);
}

.ornament span {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

/* ----------------------------------------------------------
   15. MOBILE → TOP HEADER (max-width: 900px)
   ---------------------------------------------------------- */
@media (max-width: 900px) {

  body {
    flex-direction: column;
  }

  /* Sidebar becomes top header */
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    flex-direction: row;
    z-index: 200;
    overflow: visible;
  }

  .sidebar::after {
    display: none;
  }

  .sidebar-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.4rem;
    width: 100%;
    height: auto;
    flex-wrap: wrap;
  }

  .sidebar-brand {
    text-align: left;
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-sub {
    font-size: 0.6rem;
  }

  .hamburger {
    display: flex;
  }

  /* Nav links hidden by default on mobile */
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 1rem 0 0.5rem;
    border-top: 1px solid rgba(184, 147, 63, 0.2);
    margin-top: 0.8rem;
    gap: 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    border-left: none;
    border-bottom: 1px solid rgba(184, 147, 63, 0.12);
    padding: 0.85rem 0.5rem;
    font-size: 0.8rem;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .sidebar-address {
    display: none;
  }

  /* Main content top margin for fixed header */
  .main-content {
    margin-left: 0;
    margin-top: 72px;
  }

  /* Room panels: stack vertically */
  .zimmer-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .zimmer-panel--alt {
    direction: ltr;
  }

  .zimmer-img-wrap {
    height: 300px;
  }

  .zimmer-info {
    padding: 2.5rem 1.8rem;
  }

  /* Restaurant: stack */
  .restaurant-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .restaurant-img {
    height: 360px;
  }

  .restaurant-img-badge {
    right: 1rem;
  }

  /* Lage: stack */
  .lage-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Kontakt: 2-col then 1-col */
  .kontakt-content {
    grid-template-columns: 1fr 1fr;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .footer-nav {
    gap: 1.2rem;
  }

}

@media (max-width: 600px) {

  .section {
    padding: 4rem 1.4rem;
  }

  .hero-section {
    padding: 0 1.2rem;
  }

  .hero-headline {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 0.9rem;
  }

  .zimmer-info {
    padding: 1.8rem 1.2rem;
  }

  .zimmer-features {
    grid-template-columns: 1fr;
  }

  .kontakt-content {
    grid-template-columns: 1fr;
  }

  .restaurant-hours {
    padding: 1.2rem 1.2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .restaurant-img {
    height: 260px;
  }

  .footer-nav {
    gap: 0.9rem;
  }

}

/* ----------------------------------------------------------
   16. UTILITY: IMAGE FALLBACK GRADIENT
   Shown when placeholder images are absent
   ---------------------------------------------------------- */
.zimmer-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
}

.zimmer-panel:nth-child(1) .zimmer-img-wrap {
  background: linear-gradient(135deg, #d4c4b0 0%, #a89080 100%);
}

.zimmer-panel:nth-child(2) .zimmer-img-wrap {
  background: linear-gradient(135deg, #c8b89a 0%, #8a7060 100%);
}

.zimmer-panel:nth-child(3) .zimmer-img-wrap {
  background: linear-gradient(135deg, #b0a090 0%, #7a6858 100%);
}

.restaurant-img-wrap {
  background: linear-gradient(135deg, #c4a870 0%, #785830 100%);
}

.restaurant-img {
  position: relative;
  z-index: 1;
}

/* Label on gradient fallback when img tag has no src */
.zimmer-img[src="Pic/zimmer-einzel.jpg"]:not([src=""]) { display: block; }

/* ----------------------------------------------------------
   17. FOCUS / ACCESSIBILITY
   ---------------------------------------------------------- */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ----------------------------------------------------------
   18. SELECTION COLOR
   ---------------------------------------------------------- */
::selection {
  background-color: var(--gold-pale);
  color: var(--warm);
}

/* ----------------------------------------------------------
   19. SCROLLBAR STYLING (WebKit)
   ---------------------------------------------------------- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--ivory-dark);
}

::-webkit-scrollbar-thumb {
  background-color: var(--stone-light);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--gold);
}

/* ----------------------------------------------------------
   20. PRINT
   ---------------------------------------------------------- */
@media print {
  .sidebar { display: none; }
  .main-content { margin-left: 0; }
  .hero-section { height: 50vh; }
  .btn-primary, .btn-outline { display: none; }
}
