:root {
  --bg-main: #1a1a1d;
  --bg-sec: #222226;
  --bg-darker: #111113;
  --text-main: #a1a1aa;
  --text-heading: #ffffff;
  --border: #333338;
  --gold: #c7b07a;
  --gold-soft: rgba(199, 176, 122, 0.25);
  --gold-glow: rgba(199, 176, 122, 0.18);
  --overlay-bg: rgba(26, 26, 29, 0.98);
  --overlay-text: var(--text-heading);
  --overlay-muted: rgba(255, 255, 255, 0.65);
  --overlay-line: rgba(255, 255, 255, 0.08);
  --overlay-accent: var(--gold);
  --container: 1300px;
  --header-h: 86px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus {
  outline: none !important;
}

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent; 
}

body {
  background: var(--bg-main);
  color: var(--text-main);
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  line-height: 1.8;
  font-size: 15px;
  overflow-x: hidden;
}

h1, h2, h3, .serif {
  font-family: "Playfair Display", serif;
  color: var(--text-heading);
  font-weight: 300;
}

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

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
header {
  background-color: rgba(26, 26, 29, 0.95);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  gap: 1rem;
}

.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-main {
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--text-heading);
}

.logo-sub {
  font-family: "Montserrat", sans-serif;
  font-size: .55rem;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-left: auto;
  margin-right: 3rem;
}

.nav-links a, .nav-links button {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gold);
  text-decoration: none;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  opacity: .92;
  transition: color .25s ease, opacity .25s ease;
  padding: .35rem .2rem;
  position: relative;
  font-family: "Montserrat", sans-serif;
}

.nav-links a:hover, .nav-links button:hover {
  color: var(--text-heading);
  opacity: 1;
}

.nav-links a::after, .nav-links button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .35s ease;
  opacity: .8;
}

.nav-links a:hover::after, .nav-links button:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.lang-dropdown {
  position: relative;
  font-family: "Montserrat", sans-serif;
}

.lang-btn {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-family: inherit;
  font-size: 1.2rem;
  letter-spacing: 3px;
  padding: 0 0 6px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
  transition: border-color 0.3s;
}

.lang-btn:hover {
  border-bottom-color: var(--gold);
}

.lang-btn .caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #fff;
  transition: transform 0.3s ease;
}

.lang-dropdown:hover .caret {
  transform: rotate(180deg);
}

.lang-content {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--bg-sec);
  border: 1px solid var(--border);
  border-top: none;
  list-style: none;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 15px 30px rgba(0,0,0,0.6);
  padding: 0.5rem 0;
  z-index: 200;
}

.lang-dropdown:hover .lang-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-content li a {
  display: block;
  padding: 10px 15px;
  color: var(--text-main);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 2px;
  transition: all 0.2s;
  text-align: left;
}

.lang-content li a:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold);
}

.lang-content li.active a {
  color: #fff;
  font-weight: 500;
}

.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .02);
  cursor: pointer;
  position: relative;
}

.hamburger span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
}

.hamburger span:nth-child(1) { top: 16px; }
.hamburger span:nth-child(2) { top: 22px; opacity: .95; }
.hamburger span:nth-child(3) { top: 28px; }

section[id], div[id], span[id] {
  scroll-margin-top: calc(var(--header-h) + 18px);
}

/* =========================================
   OVERLAY MENÜ
   ========================================= */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--overlay-bg);
  color: var(--overlay-text);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: all .22s ease;
  backdrop-filter: blur(12px);
}

.overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.overlay-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.2rem;
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid var(--overlay-line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
}

.overlay-close {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--overlay-line);
  background: rgba(255, 255, 255, .02);
  cursor: pointer;
  position: relative;
  flex: 0 0 auto;
}

.overlay-close::before, .overlay-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: var(--overlay-text);
  transform-origin: center;
}

.overlay-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.overlay-close::after { transform: translate(-50%, -50%) rotate(-45deg); }

.overlay-tabs {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-left: .5rem;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .9rem;
}

.overlay-tab {
  background: none;
  border: none;
  cursor: pointer;
  padding: .6rem 0;
  color: var(--overlay-muted);
  position: relative;
  outline: none;
}

.overlay-tab[aria-selected="true"] {
  color: var(--overlay-text);
}

.overlay-tab[aria-selected="true"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--overlay-accent);
  box-shadow: 0 0 18px var(--gold-glow);
}

.overlay-body {
  padding: 2.2rem 1.6rem;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.overlay-panel {
  display: none;
}

.overlay-panel.is-active {
  display: block;
}

.services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: 0;
  margin: 0;
}

.services-list a, .services-list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-decoration: none;
  color: var(--overlay-text);
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  padding: .4rem 0;
  border-bottom: 1px solid transparent;
  transition: all .2s ease;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.services-list a:hover, .services-list button:hover {
  color: var(--gold);
  border-color: rgba(199, 176, 122, .25);
  transform: translateX(2px);
}

.services-right {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-family: Montserrat, sans-serif;
  font-size: .95rem;
  color: var(--overlay-muted);
}

.chev {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--overlay-line);
  background: rgba(255, 255, 255, .02);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.chev::before {
  content: "›";
  font-size: 1.4rem;
  color: var(--overlay-text);
  transform: translateX(1px);
  line-height: 1;
}

/* =========================================
   HERO BEREICH
   ========================================= */
.hero {
  position: relative;
  height: 90vh;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background-image: url("images/zimmer1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26, 26, 29, .5), rgba(26, 26, 29, 1));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-heading);
  margin-top: -80px;
}

.hero h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.title-small {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  letter-spacing: 10px;
  color: var(--gold);
  text-transform: uppercase;
  opacity: .95;
}

.title-large {
  font-size: 5rem;
  letter-spacing: 2px;
  line-height: 1;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-main);
  max-width: 650px;
  margin: 0 auto;
  font-family: "Playfair Display", serif;
  font-style: italic;
}

/* =========================================
   BUCHUNGSLEISTE
   ========================================= */
.booking-bar {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-sec);
  display: flex;
  padding: 1.5rem 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .6);
  z-index: 10;
  width: 95%;
  max-width: 1250px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--border);
  flex-wrap: wrap;
}

.booking-field {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex: 1;
  min-width: 140px;
  padding: 0 1rem;
  border-right: 1px solid var(--border);
}

.booking-field.last {
  border-right: none;
}

.booking-field label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-heading);
  margin-bottom: .3rem;
  font-weight: 500;
  opacity: .7;
}

.booking-field input, .booking-field select {
  border: none;
  outline: none;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: var(--text-heading);
  background: transparent;
  cursor: pointer;
}

select option {
  background-color: var(--bg-sec);
  color: var(--text-heading);
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
  opacity: .7;
}

.btn-book {
  background-color: var(--gold);
  color: var(--bg-darker);
  border: none;
  padding: 1.2rem 2.5rem;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: .8rem;
  cursor: pointer;
  transition: all .3s;
  box-shadow: 0 12px 25px var(--gold-glow);
  white-space: nowrap;
  margin-left: 1rem;
}

.btn-book:hover {
  background-color: #d8c38c;
  transform: translateY(-2px);
  box-shadow: 0 16px 35px var(--gold-glow);
}

/* =========================================
   SEKTIONEN & GRIDS
   ========================================= */
.section {
  padding: 8rem 2rem;
  max-width: var(--container);
  margin: 0 auto;
}

.section-bg-light {
  background-color: var(--bg-sec);
}

.text-center {
  text-align: center;
}

.section-header {
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-align: center;
}

.line-divider {
  width: 60px;
  height: 2px;
  background-color: var(--gold);
  margin: 1rem auto 2rem auto;
}

.subtitle {
  max-width: 800px;
  font-size: 1.1rem;
  color: var(--text-main);
  line-height: 1.8;
  text-align: center;
}

/* =========================================
   STANDORTE GRID
   ========================================= */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  text-align: left;
}

.loc-card {
  background: var(--bg-sec);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.loc-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.loc-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.loc-card p {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.7;
}

/* =========================================
   PREMIUM ZIMMER & APARTMENTS
   ========================================= */
.room-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.room-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.premium-card {
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.premium-card:hover {
  border-color: var(--gold-soft);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.p-card-img-wrapper {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.p-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.premium-card:hover .p-card-img-wrapper img {
  transform: scale(1.05);
}

.p-card-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 2rem;
  z-index: 10;
  opacity: 0.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  transition: opacity 0.3s;
  padding: 1rem;
}

.p-card-arrow-left { left: 10px; }
.p-card-arrow-right { right: 10px; }

.p-card-img-wrapper:hover .p-card-arrow {
  opacity: 1;
}

.p-card-content {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.p-card-title {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: var(--text-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-weight: 300;
}

.p-card-line {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2rem;
}

.p-card-desc {
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.p-card-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem 1.5rem;
  margin-bottom: 3.5rem;
}

.feat-box {
  position: relative;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.feat-box::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--gold);
  font-size: 0.75rem;
}

.feat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-main);
  font-family: "Montserrat", sans-serif;
  opacity: 0.8;
}

.feat-val {
  font-size: 1.05rem;
  color: var(--text-heading);
  font-weight: 300;
}

.p-card-actions {
  display: flex;
  gap: 1.5rem;
  margin-top: auto;
  flex-wrap: wrap;
}

.btn-dark {
  background: transparent;
  border: 1px solid var(--text-heading);
  color: var(--text-heading);
  padding: 1.2rem 2rem;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  flex: 1;
  text-align: center;
  text-decoration: none;
  display: grid;
  place-items: center;
}

.btn-dark:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--gold);
  color: var(--gold);
}

/* HIER IST DIE MAGIE: Der Vorschlaghammer für alle goldenen Buttons! */
.btn-gold {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--bg-darker);
  padding: 1.2rem 2rem;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer !important;
  transition: all 0.3s;
  flex: 1;
  text-align: center;
  text-decoration: none;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 20px var(--gold-glow);
  
  /* Der Fix, der alle Buttons an die Oberfläche holt und klickbar macht: */
  position: relative !important;
  z-index: 999999 !important;
  pointer-events: auto !important;
}

.btn-gold:hover {
  background: #d8c38c;
  border-color: #d8c38c;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px var(--gold-glow);
}

.room-grid-2 .p-card-img-wrapper {
  height: 320px;
}

.room-grid-2 .p-card-content {
  padding: 2.5rem;
}

.room-grid-2 .p-card-title {
  font-size: 1.8rem;
}

.room-grid-2 .p-card-desc {
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.room-grid-2 .p-card-features {
  margin-bottom: 2.5rem;
  gap: 1.5rem;
}

.room-grid-2 .feat-val {
  font-size: 0.95rem;
}

/* =========================================
   EDLE BEWERTUNGEN (Reviews)
   ========================================= */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.review-card {
  background: linear-gradient(145deg, var(--bg-sec) 0%, var(--bg-main) 100%);
  border: 1px solid rgba(199, 176, 122, 0.15);
  padding: 3rem 2.5rem;
  position: relative;
  border-radius: 4px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border-color: var(--gold-soft);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 10rem;
  color: rgba(199, 176, 122, 0.06);
  font-family: "Playfair Display", serif;
  line-height: 1;
  z-index: -1;
}

.review-card .stars {
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 3px;
}

.review-card .review-text {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-main);
  flex-grow: 1;
}

.review-card .review-author {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
}

.review-card .review-author strong {
  color: var(--text-heading);
  font-weight: 500;
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.2rem;
  font-family: "Montserrat", sans-serif;
}

.review-card .review-author span {
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.review-badge {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================================
   EDLE MISSIONEN
   ========================================= */
.mission-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 2rem;
}

.mission-elegant-card {
  display: flex;
  align-items: center;
  background: var(--bg-sec);
  border: 1px solid var(--border);
  padding: 4rem;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  transition: border-color 0.4s ease;
}

.mission-elegant-card:hover {
  border-color: var(--gold-soft);
}

.mission-number {
  font-family: "Playfair Display", serif;
  font-size: 12rem;
  color: rgba(199, 176, 122, 0.08);
  line-height: 0.8;
  position: absolute;
  top: -20px;
  right: 20px;
  user-select: none;
}

.mission-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.mission-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

.mission-content p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-heading);
  font-family: "Playfair Display", serif;
  margin-bottom: 1.5rem;
}

.mission-content ul {
  list-style: none;
  margin-top: 1.5rem;
}

.mission-content li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-main);
}

.mission-content li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

/* =========================================
   KARTE DARK MODE CSS
   ========================================= */
.leaflet-layer, .leaflet-control-zoom-in, .leaflet-control-zoom-out, .leaflet-control-attribution {
  filter: invert(100%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

/* =========================================
   LIGHTBOX GALERIE
   ========================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(17, 17, 19, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  backdrop-filter: blur(8px);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: -20px;
  background: transparent;
  border: none;
  color: var(--text-heading);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color .2s;
}

.lightbox-close:hover {
  color: var(--gold);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26, 26, 29, 0.7);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  cursor: pointer;
  border-radius: 50%;
  transition: all .2s;
}

.lightbox-nav:hover {
  background: var(--gold);
  color: var(--bg-darker);
}

.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

.lightbox-counter {
  margin-top: 15px;
  color: var(--text-main);
  font-family: "Montserrat", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* =========================================
   MODALS (Buchung & Auswahl)
   ========================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, .55);
  padding: 1.5rem;
}

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

.modal-card {
  width: 100%;
  max-width: 980px;
  background: rgba(26, 26, 29, .98);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, .7);
  overflow: hidden;
  max-height: 95vh;
  overflow-y: auto;
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .02);
}

.modal-title {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.modal-title small {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 600;
  font-size: .72rem;
}

.modal-title strong {
  font-family: "Playfair Display", serif;
  color: var(--text-heading);
  font-weight: 300;
  font-size: 1.6rem;
}

.modal-x {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .02);
  cursor: pointer;
  position: relative;
}

.modal-x::before, .modal-x::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: var(--text-heading);
}

.modal-x::before { transform: translate(-50%, -50%) rotate(45deg); }
.modal-x::after { transform: translate(-50%, -50%) rotate(-45deg); }

.modal-body {
  padding: 1.4rem;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.2rem;
}

.panel {
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .02);
  border-radius: 10px;
  padding: 1.2rem;
}

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

.field2 {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.field2 label {
  color: rgba(255, 255, 255, .75);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
}

.field2 input, .field2 select {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .25);
  color: var(--text-heading);
  padding: .85rem 1rem;
  outline: none;
  font-family: "Montserrat", sans-serif;
  font-size: .95rem;
}

.field2.full {
  grid-column: 1 / -1;
}

.summary {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.sum-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .98rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

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

.pay-btn {
  margin-top: .8rem;
  width: 100%;
  background: var(--gold);
  color: var(--bg-darker);
  border: none;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  cursor: pointer;
  transition: all .2s ease;
}

.pay-btn:hover {
  background: #d8c38c;
  transform: translateY(-2px);
}

.pay-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  background-color: var(--bg-darker);
  padding: 6rem 2rem 2rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  padding-bottom: 4rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: var(--text-heading);
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .9rem;
  margin-bottom: 1.5rem;
}

.footer-col a {
  color: var(--gold);
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  font-size: .8rem;
  opacity: .8;
}

.footer-bottom a {
  color: var(--text-main);
  text-decoration: none;
}

/* =========================================
   MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: inline-block;
  }
}

@media (max-width: 950px) {
  .modal-body {
    grid-template-columns: 1fr;
  }
  
  .hero {
    height: auto;
    min-height: auto;
    justify-content: flex-start;
    padding-top: 6rem;
    padding-bottom: 2rem; 
    background-attachment: scroll;
  }
  
  .hero-content {
    margin-top: 0;
    margin-bottom: 5rem; 
  }

  .booking-bar {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 1rem auto -4rem auto; 
    width: 92%;
    max-width: 500px;
    border-radius: 12px;
    padding: 1.5rem;
    background: rgba(26, 26, 29, 0.95);
    backdrop-filter: blur(15px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.5rem;
    border: 1px solid rgba(199, 176, 122, 0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
  }

  .booking-field {
    border-right: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
  }
  .booking-field.last {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
  }

  .booking-field:nth-child(1),
  .booking-field:nth-child(2) {
    grid-column: span 2;
  }

  .btn-book {
    grid-column: span 2;
    width: 100%;
    margin-left: 0;
    margin-top: 0.5rem;
    padding: 1rem;
    border-radius: 8px;
  }

  .section {
    padding: 5rem 1.5rem;
  }
  .p-card-content {
    padding: 2rem 1.5rem;
  }
  .p-card-img-wrapper {
    height: 300px;
  }
  .p-card-actions {
    flex-direction: column;
  }
  .mission-elegant-card {
    padding: 2.5rem 1.5rem;
  }
  .mission-number {
    font-size: 6rem;
    right: 0;
    top: 0;
  }
}

@media (max-width: 768px) {
  .lightbox-prev {
    left: 10px;
    border: none;
  }
  .lightbox-next {
    right: 10px;
    border: none;
  }
  .lightbox-close {
    top: -45px;
    right: 0;
  }

  .locations-grid, .review-grid, .room-grid-2 {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 1.2rem;
    padding-bottom: 1.5rem;
    margin-left: -1.5rem; 
    margin-right: -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; 
  }
  .locations-grid::-webkit-scrollbar, .review-grid::-webkit-scrollbar, .room-grid-2::-webkit-scrollbar {
    display: none; 
  }
  
  .loc-card {
    flex: 0 0 85%; 
    max-width: 280px;
    scroll-snap-align: center;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    background: linear-gradient(145deg, var(--bg-sec) 0%, var(--bg-main) 100%);
    border: 1px solid var(--border);
    border-bottom: 3px solid var(--gold); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  }

  .review-card {
    flex: 0 0 85%;
    max-width: 320px;
    scroll-snap-align: center;
    height: auto; 
  }

  .room-grid-2 .premium-card {
    flex: 0 0 88%;
    max-width: 350px;
    scroll-snap-align: center;
    height: auto;
  }
  
  .loc-card:hover, .review-card:hover, .room-grid-2 .premium-card:hover {
    transform: none; 
  }
}

@media (max-width: 600px) {
  .logo-main {
    font-size: 1.3rem;
  }
  .title-large {
    font-size: 2.6rem;
  }
  .title-small {
    font-size: 0.75rem; 
    letter-spacing: 4px; 
    margin-top: 0.8rem !important;
  }
  .hero p {
    font-size: 1rem;
  }
  .section h2 {
    font-size: 2rem;
  }

  .booking-field label {
    font-size: 0.65rem;
  }
  .booking-field input, .booking-field select {
    font-size: 0.95rem; 
    padding: 0.2rem 0;
  }

  .room-grid-2 {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr !important;
  }
}

/* =========================================
   COOKIE BANNER
   ========================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(120%); 
  will-change: transform;
  background: rgba(26, 26, 29, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--gold);
  padding: 1.5rem 2rem;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-container {
  max-width: var(--container);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-main);
  min-width: 300px;
  line-height: 1.6;
}

.cookie-text strong {
  color: var(--text-heading);
  display: block;
  margin-bottom: 0.3rem;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-text a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.btn-cookie {
  padding: 0.8rem 1.8rem;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 4px;
}

.btn-cookie-accept {
  background: var(--gold);
  color: var(--bg-darker);
  border: 1px solid var(--gold);
  box-shadow: 0 5px 15px var(--gold-glow);
}

.btn-cookie-accept:hover {
  background: #d8c38c;
  transform: translateY(-2px);
}

.btn-cookie-reject {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-cookie-reject:hover {
  background: rgba(199, 176, 122, 0.1);
}

@media (max-width: 768px) {
  .cookie-container {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  .btn-cookie {
    width: 100%;
  }
}

/* =============================================
   VERFÜGBARKEITSKALENDER
   ============================================= */
.sh-calendar-wrapper {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 400px;
  margin: 0 auto;
}
.sh-calendar-wrapper h4 {
  font-family: 'Playfair Display', serif;
  color: #d4af37;
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.sh-cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.sh-cal-title {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.1rem;
}
.sh-cal-nav {
  background: none;
  border: 1px solid rgba(212,175,55,0.3);
  color: #d4af37;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.sh-cal-nav:hover {
  background: #d4af37;
  color: #000;
}
.sh-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.sh-cal-dayname {
  text-align: center;
  font-size: 0.7rem;
  color: #888;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 0.5rem;
}
.sh-cal-day {
  text-align: center;
  padding: 8px 4px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: all 0.2s;
}
.sh-cal-empty {
  background: none;
}
.sh-cal-free {
  background: rgba(76, 175, 80, 0.15);
  color: #66bb6a;
  cursor: pointer;
}
.sh-cal-free:hover {
  background: rgba(76, 175, 80, 0.35);
  transform: scale(1.05);
}
.sh-cal-booked {
  background: rgba(244, 67, 54, 0.15);
  color: #ef5350;
  cursor: not-allowed;
  text-decoration: line-through;
}
.sh-cal-past {
  color: #444;
  cursor: not-allowed;
}
.sh-cal-today {
  border: 2px solid #d4af37 !important;
}
.sh-cal-legend {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.sh-cal-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #999;
  font-family: 'Montserrat', sans-serif;
}
.sh-cal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.sh-cal-dot-free { background: #66bb6a; }
.sh-cal-dot-booked { background: #ef5350; }

.sh-calendars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 2rem auto 0;
}
@media (max-width: 768px) {
  .sh-calendars-grid {
    grid-template-columns: 1fr;
  }
  .sh-calendar-wrapper {
    max-width: 100%;
  }
}

/* =============================================
   KALENDER IM BUCHUNGSMODAL
   ============================================= */
#calendarContainer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1rem;
  margin-top: 0.5rem;
}
#calendarContainer .sh-calendar-wrapper {
  max-width: 100%;
  border: none;
  padding: 0;
  background: none;
}
#cal-booking .sh-cal-grid {
  gap: 3px;
}
#cal-booking .sh-cal-day {
  padding: 6px 2px;
  font-size: 0.8rem;
}
.sh-cal-ranges {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.sh-cal-ranges-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ef5350;
  margin-bottom: 0.8rem;
  font-weight: 600;
}
.sh-cal-range-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: #ccc;
  padding: 4px 0;
}
.sh-cal-range-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef5350;
  flex-shrink: 0;
}