
:root {
  --espresso: #23120A;
  --brown: #3F2420;
  --puce: #51322D;
  --gold: #D89F55;
  --cream: #F7F1E8;
  --paper: #FFFDFC;
  --text: #2B211D;
  --muted: #6E625D;
  --shadow: 0 24px 60px rgba(35, 18, 10, .18);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(35, 18, 10, .96);
  backdrop-filter: blur(12px);
  color: white;
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand img { width: 150px; max-height: 58px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a { text-decoration: none; font-size: .95rem; }
.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--espresso);
  font-weight: 700;
}
.menu-toggle { display: none; }


.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: center;
  background:
    linear-gradient(rgba(35,18,10,.12), rgba(35,18,10,.22)),
    url("../images/hotelfront.jpg") center/cover no-repeat;
  padding: 130px 0 70px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(35,18,10,.42), rgba(35,18,10,.05));
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.hero-card {
  width: min(920px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(34px, 5vw, 64px);
  background: rgba(35,18,10,.82);
  color: white;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  text-align: center;
}
.hero-logo {
  width: 210px;
  margin: 0 auto 26px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
}
h1, h2, h3 { line-height: 1.15; margin-top: 0; }
h1 { font-size: clamp(2.4rem, 5vw, 5rem); margin-bottom: 22px; }
h2 { font-size: clamp(2rem, 3.6vw, 3.6rem); margin-bottom: 20px; }
h3 { font-size: 1.35rem; }
.hero-text { font-size: 1.14rem; width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  text-align: center;}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}
.button-primary { background: var(--gold); color: var(--espresso); }
.button-secondary { background: transparent; color: inherit; border: 1px solid currentColor; }

.section { padding: 100px 0; }
.section-light { background: var(--cream); }
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.section-heading { max-width: 720px; margin-bottom: 40px; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.room-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(35,18,10,.09);
}
.room-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: #ddd; }
.card-content { padding: 26px; }
.text-link { color: var(--puce); font-weight: 800; text-decoration: none; }

.event-section { background: var(--espresso); color: white; }
.event-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
.event-image img { border-radius: var(--radius); min-height: 460px; object-fit: cover; width: 100%; background: #ddd; }
.feature-list { padding-left: 20px; margin: 28px 0; }

.benefits { background: var(--gold); }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.benefit-grid div { display: grid; gap: 8px; }
.benefit-grid strong { font-size: 1.05rem; }
.benefit-grid span { color: rgba(35,18,10,.78); }

.map-placeholder {
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(35,18,10,.68), rgba(35,18,10,.68)),
    url("../images/karte.jpg") center/cover no-repeat;
  color: white;
  padding: 30px;
}

.request-section { background: white; }
.request-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.request-form {
  background: var(--cream);
  padding: 34px;
  border-radius: var(--radius);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: grid; gap: 8px; font-weight: 700; margin-bottom: 18px; }
input, select, textarea {
  width: 100%;
  border: 1px solid #cdbeb3;
  border-radius: 10px;
  padding: 13px 14px;
  font: inherit;
  background: white;
}
.checkbox { grid-template-columns: auto 1fr; align-items: start; font-weight: 400; }
.checkbox input { width: auto; margin-top: 6px; }

.site-footer { background: var(--espresso); color: white; padding: 70px 0 25px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo { width: 170px; margin-bottom: 20px; }
.site-footer a { color: white; text-decoration: none; }
.site-footer h3 { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  margin-top: 45px;
  padding-top: 24px;
  color: rgba(255,255,255,.68);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: grid;
    gap: 5px;
    background: transparent;
    border: 0;
    padding: 10px;
  }
  .menu-toggle span { width: 27px; height: 2px; background: white; }
  .main-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    background: var(--espresso);
  }
  .main-nav.open { display: flex; }
  .two-column,
  .event-grid,
  .request-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1180px); }
  .hero { min-height: auto; padding-top: 112px; }
  .hero-card { padding: 28px 22px; }
  .section { padding: 72px 0; }
  .card-grid,
  .benefit-grid,
  .footer-grid,
  .form-row { grid-template-columns: 1fr; }
}


.gallery-section { background: var(--paper); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-auto-rows: 260px;
  gap: 18px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 14px 35px rgba(35,18,10,.10);
}
.gallery-grid img:first-child {
  grid-row: span 2;
}

@media (max-width: 760px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .gallery-grid img:first-child {
    grid-row: auto;
  }
}


.event-buttons {
  justify-content: flex-start;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 34px;
  align-items: stretch;
}

.location-details {
  background: white;
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 14px 35px rgba(35,18,10,.08);
}

.location-details .feature-list {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr;
  }

  .event-buttons {
    justify-content: flex-start;
  }
}


.maintenance-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background:
    linear-gradient(rgba(35,18,10,.72), rgba(35,18,10,.82)),
    url("../images/hotelfront.jpg") center/cover no-repeat;
}

.maintenance-card {
  width: min(720px, 100%);
  padding: clamp(30px, 6vw, 58px);
  border-radius: var(--radius);
  background: rgba(35,18,10,.88);
  color: white;
  text-align: center;
  box-shadow: var(--shadow);
}

.maintenance-card img {
  width: 220px;
  margin: 0 auto 28px;
}

.maintenance-card a {
  color: var(--gold);
}

.maintenance-card hr {
  border: 0;
  border-top: 1px solid rgba(255,255,255,.18);
  margin: 28px 0;
}

.maintenance-en {
  color: rgba(255,255,255,.72);
}


.main-nav a.active {
  color: var(--gold);
  position: relative;
  font-weight: 800;
}
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--gold);
}

.subpage-main { padding-top: 78px; }
.page-hero {
  min-height: 48vh;
  display: grid;
  align-items: end;
  padding: 90px 0 70px;
  color: white;
  background:
    linear-gradient(rgba(35,18,10,.56), rgba(35,18,10,.72)),
    url("../images/hotelfront.jpg") center/cover no-repeat;
}
.page-hero-zimmer {
  background:
    linear-gradient(rgba(35,18,10,.56), rgba(35,18,10,.72)),
    url("../images/doppelzimmer.jpg") center/cover no-repeat;
}
.page-hero-events {
  background:
    linear-gradient(rgba(35,18,10,.56), rgba(35,18,10,.72)),
    url("../images/saal.jpg") center/cover no-repeat;
}
.compact-hero { min-height: 38vh; }

.comparison-wrap { overflow-x: auto; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(35,18,10,.09);
}
.comparison-table th,
.comparison-table td {
  padding: 18px;
  border-bottom: 1px solid #eadfd6;
  text-align: left;
  vertical-align: top;
}
.comparison-table thead th {
  background: var(--espresso);
  color: white;
}
.comparison-table tbody th {
  background: #f7f1e8;
}
.table-note { margin-top: 16px; color: var(--muted); }

.room-detail-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 55px;
  align-items: start;
}
.room-detail-image, .rounded-image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.price-box {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  margin: 28px 0;
  border-radius: 12px;
  background: var(--cream);
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.contact-card {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--cream);
}

@media (max-width: 900px) {
  .main-nav a.active::after { display: none; }
  .room-detail-grid, .contact-cards { grid-template-columns: 1fr; }
}


.request-form fieldset {
  margin: 0 0 28px;
  padding: 0;
  border: 0;
}

.request-form legend {
  width: 100%;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d8c8bc;
  color: var(--espresso);
  font-size: 1.08rem;
  font-weight: 800;
}

.notice-box {
  margin-top: 26px;
  padding: 22px;
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  background: var(--cream);
}

.notice-box p {
  margin-bottom: 0;
}

.price-summary {
  display: grid;
  gap: 12px;
  margin: 30px 0;
  padding: 24px;
  border-radius: 14px;
  background: var(--espresso);
  color: white;
}

.price-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.price-summary .price-total {
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.2);
  color: var(--gold);
  font-size: 1.12rem;
}

.price-summary small {
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}


.group-discount-note {
  margin: 18px 0;
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  background: var(--cream);
  border-radius: 8px;
}


.price-footnote {
  margin: 14px 0 22px;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
}


.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.nav-dropdown-toggle.active {
  color: var(--gold);
  font-weight: 800;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  z-index: 1200;
  display: none;
  min-width: 240px;
  padding: 12px;
  border-radius: 14px;
  background: var(--espresso);
  box-shadow: 0 18px 45px rgba(0,0,0,.24);
}

.nav-dropdown-menu-right {
  left: auto;
  right: 0;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: grid;
}

.nav-dropdown-menu a {
  display: block;
  padding: 11px 13px;
  border-radius: 9px;
  color: white;
  text-decoration: none;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
  background: rgba(216,159,85,.16);
  color: var(--gold);
}

.nav-dropdown-cta .nav-dropdown-toggle {
  padding: 11px 18px;
  border-radius: 999px;
}

@media (hover: hover) and (min-width: 901px) {
  .nav-dropdown:hover .nav-dropdown-menu {
    display: grid;
  }
}

@media (max-width: 900px) {
  .main-nav {
    align-items: stretch;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle,
  .nav-dropdown-cta .nav-dropdown-toggle {
    width: 100%;
    padding: 10px 0;
    text-align: left;
    border-radius: 0;
    background: transparent;
    color: white;
  }

  .nav-dropdown-menu,
  .nav-dropdown-menu-right {
    position: static;
    display: none;
    min-width: 0;
    margin: 4px 0 8px;
    padding: 8px 0 8px 14px;
    border-left: 2px solid var(--gold);
    border-radius: 0;
    box-shadow: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: grid;
  }

  .nav-dropdown-menu a {
    padding: 9px 10px;
  }
}


/* Dropdowns: Browser-Standarddarstellung der Buttons vollständig entfernen */
.main-nav .nav-dropdown-toggle {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  border: 0;
  outline: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: .95rem;
  line-height: 1.2;
  cursor: pointer;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

/* Unsichtbare Brücke zwischen Reiter und Dropdown, damit Hover nicht abreißt */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.nav-dropdown-menu {
  top: calc(100% + 10px);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: grid;
}

.dropdown-section-label {
  display: block;
  padding: 10px 13px 5px;
  color: rgba(255,255,255,.58);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.nav-dropdown-menu .dropdown-subitem {
  padding-left: 30px;
}

.nav-dropdown-menu .dropdown-action {
  margin-top: 5px;
  border-top: 1px solid rgba(255,255,255,.12);
}

/* Hero-Buttons: gleiche Goldfarbe, unterschiedliche Deckkraft */
.hero-choice {
  border: 1px solid rgba(216,159,85,.95);
  color: var(--espresso);
}
.hero-choice-hotel {
  background: rgba(216,159,85,.92);
}
.hero-choice-event {
  background: rgba(216,159,85,.68);
}
.hero-choice:hover,
.hero-choice:focus {
  background: rgba(216,159,85,1);
}

/* Carousel */
.image-carousel {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}
.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(35,18,10,.14);
}
.carousel-track {
  position: relative;
  height: 560px;
  background: var(--espresso);
}
.carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .55s ease;
}
.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.carousel-slide img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  background: rgba(35,18,10,.82);
  color: white;
  font-size: 2rem;
  cursor: pointer;
}
.carousel-prev { left: 18px; }
.carousel-next { right: 18px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}
.carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(35,18,10,.25);
  cursor: pointer;
}
.carousel-dots button.active {
  background: var(--gold);
}

@media (max-width: 900px) {
  .nav-dropdown {
    display: block;
  }

  .main-nav .nav-dropdown-toggle,
  .nav-dropdown-cta .nav-dropdown-toggle {
    width: 100%;
    padding: 10px 0;
    text-align: left;
    color: white;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .carousel-track,
  .carousel-slide img {
    height: 360px;
  }
}


/* Karte mit echtem Standort und halbtransparenter Informationsbox */
.map-embed {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--espresso);
  box-shadow: 0 14px 35px rgba(35,18,10,.10);
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-overlay-card {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(520px, calc(100% - 40px));
  transform: translate(-50%, -50%);
  padding: 30px;
  border: 0;
  border-radius: 16px;
  background: rgba(35,18,10,.68);
  color: white;
  text-align: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 16px 40px rgba(35,18,10,.22);
}

.map-overlay-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.map-overlay-card p {
  margin: 0 0 20px;
}

.map-overlay-card .button {
  color: white;
}

/* Startbox exakt zentrieren */
.hero-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  margin-inline: auto;
  transform: none;
}

/* Beide Hero-Buttons identisch zur bisherigen Veranstaltungs-Deckkraft */
.hero-choice-hotel,
.hero-choice-event {
  background: rgba(216,159,85,.68);
  border-color: rgba(216,159,85,.88);
}

@media (max-width: 620px) {
  .map-overlay-card {
    width: min(92%, 520px);
    padding: 24px 18px;
  }
}


/* Kontakt-Icons */
.contact-card {
  position: relative;
}

.contact-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(216,159,85,.18);
  color: var(--puce);
}

.contact-icon svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

/* Kartenbox deckt den gesamten Kartenausschnitt 1:1 ab */
.map-overlay-card.map-overlay-full {
  inset: 0;
  width: auto;
  height: auto;
  transform: none;
  display: grid;
  place-items: center;
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(35,18,10,.56);
  backdrop-filter: blur(2px);
}

.map-overlay-content {
  max-width: 560px;
  text-align: center;
}

.map-overlay-content strong {
  display: block;
  margin-bottom: 14px;
  font-size: 1.15rem;
}

/* Zimmerübersicht: Überschriften passen sicher in die Karten */
.card-grid .room-card h2 {
  font-size: clamp(1.65rem, 2.4vw, 2.45rem);
  line-height: 1.12;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.card-grid .room-card .card-content {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .card-grid .room-card h2 {
    font-size: clamp(1.45rem, 2.2vw, 2rem);
  }
}


.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.success-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 3000;
  display: grid;
  gap: 4px;
  width: min(430px, calc(100% - 32px));
  padding: 20px 48px 20px 20px;
  border-left: 5px solid var(--gold);
  border-radius: 14px;
  background: var(--espresso);
  color: white;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: .3s ease;
}

.success-toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.success-toast-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: transparent;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.success-toast span {
  color: rgba(255,255,255,.75);
}
