
:root {
  --paper: #f0dec0;
  --paper-light: #f8ecd4;
  --ink: #2d201b;
  --muted: #6f5147;
  --red: #7b2027;
  --red-dark: #4d1219;
  --gold: #d8bd88;
  --line: rgba(123, 32, 39, .36);
  --shadow: rgba(50, 29, 16, .28);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,.55), transparent 34%),
    radial-gradient(circle at 96% 92%, rgba(89,44,21,.28), transparent 30%),
    linear-gradient(135deg, #faefd8, #dbc198);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  background:
    radial-gradient(circle at 0 0, rgba(72, 38, 18, .26), transparent 22%),
    radial-gradient(circle at 100% 0, rgba(72, 38, 18, .22), transparent 20%),
    radial-gradient(circle at 0 100%, rgba(72, 38, 18, .20), transparent 24%),
    radial-gradient(circle at 100% 100%, rgba(72, 38, 18, .28), transparent 26%),
    repeating-linear-gradient(0deg, rgba(66,38,18,.03), rgba(66,38,18,.03) 1px, transparent 1px, transparent 5px);
  mix-blend-mode: multiply;
}

a { color: inherit; }

/* Start-Lounge */

.lounge-page {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.lounge-page::before,
.guest-home::before {
  content: "";
  position: absolute;
  top: 92px;
  left: 0;
  right: 0;
  height: 18px;
  z-index: 1;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(123,32,39,.35) 8% 41%, transparent 41% 59%, rgba(123,32,39,.35) 59% 92%, transparent 92% 100%),
    repeating-linear-gradient(90deg, rgba(123,32,39,.55) 0 5px, transparent 5px 11px);
  opacity: .55;
}

.lounge-main {
  height: 100vh;
  display: grid;
  grid-template-columns: minmax(420px, 1.02fr) minmax(460px, .98fr);
  position: relative;
}

.lounge-photo {
  min-height: 100vh;
  background-image: url("../img/lounge.jpg");
  background-size: cover;
  background-position: 22% center;
  position: relative;
}

.lounge-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(240,222,192,.05) 0%, rgba(240,222,192,.04) 42%, rgba(240,222,192,.78) 86%, rgba(240,222,192,.96) 100%),
    linear-gradient(180deg, rgba(240,222,192,.13), rgba(240,222,192,.23));
}

.lounge-text {
  min-height: 100vh;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 64px 58px 18px;
  text-align: center;
  position: relative;
  top: 0;
  z-index: 6;
}

.logo {
  width: min(390px, 74%);
  max-height: none;
  object-fit: contain;
  margin: 0 auto 22px;
  display: block;
}

.welcome {
  color: var(--red);
  font-style: italic;
  font-size: clamp(3.4rem, 6vw, 5.4rem);
  line-height: .9;
  font-weight: normal;
  margin: 0 0 20px;
}

.kicker {
  color: var(--red-dark);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: clamp(1.2rem, 2vw, 1.72rem);
  margin-bottom: 20px;
}

.divider {
  width: 250px;
  height: 1px;
  background: var(--line);
  margin: 18px auto;
  position: relative;
}

.divider::after {
  content: "♥";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -55%);
  color: var(--red);
  background: var(--paper);
  padding: 0 12px;
  font-size: .82rem;
}

.intro {
  max-width: 600px;
  margin: 12px auto 14px;
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.5;
}

.counter-title {
  margin: 0 0 18px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .34em;
  font-weight: bold;
  font-size: 1.12rem;
}

.counter {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 720px;
  margin: 0 auto 12px;
  padding: 4px 0 6px;
}

.counter-part {
  border-left: 1px solid var(--line);
  padding: 0 11px;
}

.counter-part:first-child { border-left: 0; }

.counter-number {
  display: block;
  color: var(--red);
  font-size: clamp(2.15rem, 4.3vw, 3.65rem);
  line-height: 1;
}

.counter-label {
  display: block;
  text-transform: uppercase;
  margin-top: 8px;
  font-size: .9rem;
}

.since {
  font-style: italic;
  font-size: 1.06rem;
  margin: 0 0 18px;
}

.enter-button {
  display: inline-block;
  color: #f8ead3;
  background: linear-gradient(180deg, #8a2830, #5c151d);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 1.1rem;
  padding: 13px 30px;
  min-width: min(450px, 92vw);
  border: 2px solid #dfc58f;
  outline: 2px solid rgba(77, 18, 25, .95);
  box-shadow: 0 8px 22px var(--shadow);
}

.footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 5;
  text-align: center;
  color: var(--ink);
  font-size: 1rem;
}

.footer::before {
  content: "";
  display: block;
  width: 330px;
  max-width: 45vw;
  height: 1px;
  margin: 0 auto 12px;
  background: var(--line);
}

/* Gastbereich als moderne Frameset-Lounge */

.guest-home {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.guest-nav {
  position: absolute;
  z-index: 8;
  top: 34px;
  left: 42px;
  right: 42px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 26px;
}

.guest-nav .home-link {
  text-decoration: none;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .98rem;
  border-bottom: 1px solid var(--line);
  padding: 8px 0 6px;
  white-space: nowrap;
}

.guest-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-right: 14%;
}

.guest-links button {
  font: inherit;
  cursor: pointer;
  background: transparent;
  border: 0;
  color: var(--red-dark);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .93rem;
  padding: 8px 0 6px;
  border-bottom: 1px solid transparent;
}

.guest-links button:hover,
.guest-links button.active {
  color: var(--red);
  border-bottom-color: var(--line);
}

.guest-landing {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(380px, .88fr) minmax(520px, 1.12fr);
  align-items: start;
}

.guest-photo {
  height: 100vh;
  min-height: 100vh;
  background-image: url("../img/guest-lounge.jpg");
  background-size: cover;
  background-position: 37% center;
  background-repeat: no-repeat;
  position: sticky;
  top: 0;
}

.guest-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(240,222,192,0) 0%,
      rgba(240,222,192,0) 72%,
      rgba(240,222,192,.55) 88%,
      rgba(240,222,192,.92) 100%
    ),
    linear-gradient(
      90deg,
      rgba(240,222,192,.08) 0%,
      rgba(240,222,192,.08) 46%,
      rgba(240,222,192,.82) 86%,
      rgba(240,222,192,.97) 100%
    ),
    radial-gradient(circle at center, transparent 42%, rgba(58,29,14,.24));
}

.guest-panel {
  position: relative;
  z-index: 4;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 130px 64px 78px 64px;
}

.guest-panel-inner {
  width: min(690px, 100%);
  margin: 0 auto;
}

.guest-panel h1,
.guest-panel h2 {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .12em;
  line-height: 1.06;
  font-weight: normal;
  margin: 0 0 22px;
}

.guest-panel h1 {
  font-size: clamp(2.8rem, 5.2vw, 5.4rem);
}

.guest-panel h2 {
  font-size: clamp(2.05rem, 4vw, 3.7rem);
}

.guest-panel p {
  font-size: clamp(.98rem, 1.25vw, 1.18rem);
  line-height: 1.55;
}

.content-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center 30%;
  border: 1px solid rgba(123, 32, 39, .24);
  margin: 8px 0 24px;
  box-shadow: 0 8px 18px rgba(54,31,17,.12);
}

.placeholder {
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 18px;
  color: var(--muted);
  font-style: italic;
}

.panel-actions {
  margin-top: 28px;
}

.hidden {
  display: none;
}

@media (max-width: 1060px) {
  .lounge-main,
  .guest-landing {
    grid-template-columns: 1fr;
  }

  .lounge-photo,
  .guest-photo {
    min-height: 48vh;
  }

  .lounge-photo::after,
  .guest-photo::after {
    background:
      linear-gradient(180deg, rgba(240,222,192,.04) 0%, rgba(240,222,192,.18) 55%, rgba(240,222,192,.96) 100%),
      radial-gradient(circle at center, transparent 42%, rgba(58,29,14,.22));
  }

  .lounge-text,
  .guest-panel {
    min-height: auto;
    padding: 34px 22px 86px;
  }

  .guest-nav {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    padding: 24px 22px 8px;
    flex-direction: column;
    align-items: flex-start;
  }

  .guest-home::before,
  .lounge-page::before {
    top: 72px;
  }

  .guest-links {
    justify-content: flex-start;
  }
}

@media (max-width: 650px) {
  .counter {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .counter-part {
    border-left: 0;
  }

  .welcome {
    font-size: 3.2rem;
  }
 
}

.menu-list {
  margin: 0 0 28px 22px;
  padding: 0;
  list-style: none;
}

.menu-list li {
  margin-bottom: 10px;
}

.menu-block p {
  margin: 0 0 6px;
}

.guest-panel h3 {
  color: var(--red);
  margin-top: 26px;
  margin-bottom: 10px;
  font-size: 1.25rem;
  letter-spacing: .05em;
}

.sitzplan-image {
  display: block;
  width: auto;
  max-width: 92%;
  max-height: 82vh;
  height: auto;
  object-fit: contain;
  margin: 12px auto 24px;
  border: 2px solid rgba(90, 45, 45, 0.35);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.anfahrt-section {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.anfahrt-block {
  margin-top: 30px;
}

.anfahrt-text h3 {
  color: var(--red);
  margin: 24px 0 8px;
  font-size: 1.22rem;
  letter-spacing: .04em;
  border-bottom: 1px solid var(--line);
  display: inline-block;
}

.anfahrt-text p {
  margin: 0 0 16px;
}

.anfahrt-button {
  display: inline-block;
  margin: 10px 0 18px;
  padding: 11px 20px;
  color: #f8ead3;
  background: linear-gradient(180deg, #8a2830, #5c151d);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .9rem;
  border: 1px solid #dfc58f;
  box-shadow: 0 5px 14px rgba(50, 29, 16, .22);
}

.anfahrt-button:hover {
  filter: brightness(1.06);
}

@media (max-width: 650px) {
  .anfahrt-section {
    text-align: center;
  }

  .anfahrt-text h3 {
    font-size: 1.1rem;
  }
}

.motto {
  margin: -6px 0 24px;
  color: var(--red-dark);
  letter-spacing: .18em;
  text-transform: none;
  font-size: clamp(.72rem, 1vw, .92rem);
  opacity: .72;
}

.program-block p {
  margin: 0 0 6px;
}
