/* ─────────────────────────────────────────────────────────────
   Schaumburger Hof – Vollständiges Stylesheet
   Historisches Kupferstich- & Gravur-Design (XAMPP Ready)
   ───────────────────────────────────────────────────────────── */

:root {
  --bg-parchment: #F4EFE6;
  --bg-parchment-light: #FAF7F0;
  --bg-parchment-dark: #E8DFCE;
  --border-copper: #8B7355;
  --border-copper-light: #C4B59D;
  --timber: #2A1D17;
  --timber-soft: #423229;
  --wine: #7A1F2D;
  --wine-hover: #5F1722;
  --wine-trans: rgba(122, 31, 45, 0.88);
  --gold: #C29B38;
  --gold-soft: #DFC27D;
  --white: #FFFDF9;
  --shadow-warm: rgba(42, 29, 23, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
  background-color: var(--bg-parchment);
  color: var(--timber);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--timber);
  font-weight: 700;
}

a {
  color: var(--wine);
  text-decoration: none;
  transition: all 0.2s ease;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── HEADER / NAVIGATION ───────────────────────────────────── */
.site-header {
  background: #EEDCC7;
  border-bottom: 2px solid var(--border-copper);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 10px rgba(42, 29, 23, 0.15);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.logo-box {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: 'Cinzel', serif;
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--timber);
  letter-spacing: 2px;
  line-height: 1.1;
}

.brand-sub {
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--timber-soft);
  margin-top: 2px;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-menu a {
  font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--timber);
  padding: 4px 8px;
}

.nav-menu a:hover {
  color: var(--wine);
}

.nav-menu .sep {
  color: var(--border-copper);
  font-weight: 300;
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-copper);
  font-size: 1.5rem;
  padding: 4px 10px;
  cursor: pointer;
  color: var(--timber);
}

/* ── HERO SECTION: RHEIN-PANORAMA ALS SEPIA-GRAVUR ─────────── */
.hero-vintage {
  position: relative;
  min-height: 82vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px 90px;
  overflow: visible;
  background-color: #3B2E24;
}

.hero-sketch {
  position: absolute;
  inset: 0;
  background: url('../uploads/schaumburger-hof-panorama.jpg') center 35% / cover no-repeat;
  filter: sepia(0.7) saturate(1.3) brightness(0.78) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38, 26, 18, 0.28) 0%, rgba(38, 26, 18, 0.42) 50%, rgba(38, 26, 18, 0.62) 100%);
}

.panorama-frame {
  position: relative;
  width: 100%;
  max-width: 1240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

/* Hero Headline & CTA */
.hero-headline-wrap {
  text-align: center;
  max-width: 820px;
  margin: 30px auto;
  z-index: 5;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 4.6rem;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.75), 0 0 25px rgba(0,0,0,0.4);
  line-height: 1.1;
}

.hero-subtitle {
  font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 1.45rem;
  color: #FFFFFF;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.85);
  margin: 15px auto 25px;
  max-width: 680px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-wine {
  background-color: var(--wine);
  color: #FFFFFF !important;
  border: 1px solid #5A141F;
  box-shadow: 0 4px 12px rgba(90, 20, 31, 0.35);
}

.btn-wine:hover {
  background-color: var(--wine-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(90, 20, 31, 0.45);
}

.btn-trans {
  background: transparent;
  color: #FFFFFF !important;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
}

.btn-trans:hover {
  background: rgba(0, 0, 0, 0.85);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* ── SCHWEBENDES GUTSCHEIN-WIDGET (RECHTS UNTEN) ───────────── */
.voucher-panel {
  position: absolute;
  right: 25px;
  bottom: -45px;
  width: 480px;
  max-width: calc(100% - 50px);
  background: #ECE5D7;
  border: 2px solid var(--border-copper);
  box-shadow: 0 16px 40px rgba(35, 25, 18, 0.3);
  padding: 16px;
  z-index: 50;
  border-radius: 4px;
}

/* Vorschau-Karte */
.voucher-preview-card {
  background: #FAF7EF;
  border: 1px solid #CCC0AC;
  padding: 14px 16px;
  box-shadow: inset 0 0 12px rgba(0,0,0,0.04);
  margin-bottom: 12px;
  border-radius: 2px;
}

.vpc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #DFD5C2;
  padding-bottom: 6px;
  margin-bottom: 10px;
}

.vpc-name {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--timber);
}

.vpc-tagline {
  display: block;
  font-size: 0.65rem;
  color: var(--timber-soft);
  font-style: italic;
}

.vpc-heading {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--timber);
}

.vpc-body {
  display: flex;
  gap: 14px;
  align-items: center;
}

.vpc-thumb img {
  width: 84px;
  height: 60px;
  object-fit: cover;
  border: 1px solid var(--border-copper);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.vpc-meta {
  flex: 1;
  font-size: 0.78rem;
}

.vpc-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted #D2C5B0;
  padding: 2px 0;
}

.vpc-row .k {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: var(--timber-soft);
}

.vpc-row .v {
  font-weight: 600;
  color: var(--wine);
}

/* Widget Controls */
.voucher-form .v-section-title {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  color: var(--timber);
}

.v-type-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 10px;
}

.v-pill {
  background: #DFD4C0;
  border: 1px solid #B8AA93;
  color: var(--timber);
  padding: 5px 6px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.15s;
}

.v-pill.active {
  background: var(--wine);
  color: #FFFFFF;
  border-color: var(--wine-hover);
}

.v-name-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.v-name-grid label,
.v-order-row label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.v-name-grid input,
.v-col-amount input,
.v-col-qty input {
  width: 100%;
  padding: 5px 8px;
  background: #FFFDF9;
  border: 1px solid #B8AA93;
  font-family: inherit;
  font-size: 0.85rem;
  border-radius: 2px;
}

.v-order-row {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  margin-bottom: 12px;
}

.v-col-amount { flex: 1; }
.v-col-qty { width: 65px; }
.v-col-del {
  flex: 1.4;
  font-size: 0.75rem;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  line-height: 1.3;
}

.radio-item input {
  margin: 0;
}

.btn-cart {
  width: 100%;
  background: var(--wine);
  color: #FFFFFF;
  border: none;
  padding: 10px;
  font-family: 'Cinzel', serif;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 1.2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  border-radius: 2px;
  box-shadow: 0 4px 10px rgba(122, 31, 45, 0.3);
}

.btn-cart:hover {
  background: var(--wine-hover);
}

.voucher-form .form-msg {
  padding: 8px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
}
.voucher-form .form-msg.ok { background: #E2ECE7; color: #2A5A3B; }
.voucher-form .form-msg.err { background: #F5E1E0; color: var(--wine); }
.voucher-note {
  font-size: 0.68rem;
  color: var(--timber-soft);
  text-align: center;
  margin-top: 8px;
  opacity: .8;
}

/* ── GESCHICHTE SECTION ────────────────────────────────────── */
.history-section {
  padding: 90px 20px 60px;
  max-width: 960px;
  margin: 0 auto;
}

.history-header {
  text-align: center;
  margin-bottom: 30px;
}

.history-header h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.3rem;
  letter-spacing: 2px;
  color: var(--timber);
}

.history-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--border-copper);
  margin-top: 4px;
}

.history-figure {
  margin: 0 0 40px;
  border: 3px double var(--border-copper);
  box-shadow: 0 12px 30px rgba(42, 29, 23, 0.18);
  background: #FAF7F0;
}
.history-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.history-figure figcaption {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--timber-soft);
  padding: 10px 16px;
  border-top: 1px solid var(--border-copper-light);
}

.history-quote {
  margin: 8px 0 22px;
  padding: 18px 24px;
  border-left: 3px solid var(--wine);
  background: #FAF7F0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--timber);
}
.history-quote cite {
  display: block;
  margin-top: 6px;
  font-family: 'Source Sans 3', sans-serif;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--border-copper);
}

.history-story p {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: justify;
}

/* ── SECTIONS ALLGEMEIN ────────────────────────────────────── */
section {
  padding: 70px 0;
}

.alt-bg {
  background-color: var(--bg-parchment-light);
  border-top: 1px solid var(--border-copper-light);
  border-bottom: 1px solid var(--border-copper-light);
}

.section-title {
  text-align: center;
  margin-bottom: 45px;
}

.section-title h2 {
  font-size: 2.2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 2px;
  background: var(--wine);
}

.section-title p {
  color: var(--border-copper);
  font-style: italic;
  margin-top: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
}

/* ── RÄUME GRID ────────────────────────────────────────────── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}

.room-card {
  background: var(--white);
  border: 1px solid #DED3BF;
  padding: 24px 18px;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(42, 29, 23, 0.05);
}

.room-card.highlight-card {
  border-color: var(--gold);
  background: #FAF6ED;
}

.room-card .icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.room-card h3 {
  font-size: 1.25rem;
  color: var(--wine);
  margin-bottom: 6px;
}

.room-card p {
  font-size: 0.9rem;
  color: var(--timber-soft);
  margin-bottom: 10px;
}

.room-card .capacity {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--border-copper);
}

/* ── SPEISEKARTE TEASER ────────────────────────────────────── */
.menu-teaser {
  background: var(--timber);
  color: var(--bg-parchment-light);
}

.menu-teaser .section-title h2 {
  color: var(--white);
}

.menu-teaser .section-title h2::after {
  background: var(--gold);
}

.menu-teaser .section-title p {
  color: var(--gold-soft);
}

.menu-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.menu-cat h3 {
  color: var(--gold);
  font-size: 1.25rem;
  border-bottom: 1px solid rgba(194, 155, 56, 0.4);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.menu-item .name {
  font-weight: 600;
}

.menu-item .desc {
  font-size: 0.85rem;
  font-style: italic;
  color: #CBBCA5;
}

.menu-item .price {
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.vegan-tag {
  background: #4B634E;
  color: #FFF;
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 2px;
  margin-left: 6px;
}

.menu-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── VERANSTALTUNGEN ───────────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.event-card {
  background: var(--white);
  padding: 28px;
  border: 1px solid #DED3BF;
  border-radius: 4px;
}

.event-card h3 {
  color: var(--wine);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

/* ── RESERVIERUNGSFORMULAR ─────────────────────────────────── */
.reservation {
  background: #3B2E24;
  color: var(--bg-parchment);
}

.reservation .section-title h2 {
  color: #FFF;
}

.reservation .section-title h2::after {
  background: var(--gold);
}

.res-form {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  color: var(--timber);
  padding: 30px;
  border: 1px solid var(--border-copper);
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.res-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.res-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 14px;
  margin-bottom: 4px;
  color: var(--timber-soft);
}

.res-form input,
.res-form select,
.res-form textarea {
  width: 100%;
  padding: 10px 12px;
  background: #FAF7F0;
  border: 1px solid #C4B59D;
  font-family: inherit;
  font-size: 0.95rem;
  border-radius: 2px;
}

.form-msg {
  padding: 12px;
  border-radius: 3px;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 600;
}
.form-msg.ok { background: #E2ECE7; color: #2A5A3B; }
.form-msg.err { background: #F5E1E0; color: var(--wine); }

/* ── KONTAKT & FOOTER ──────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.contact-info p {
  margin-bottom: 12px;
}

.map-frame {
  height: 320px;
  border: 1px solid var(--border-copper);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

footer {
  background: #1A120E;
  color: #B5A48F;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.88rem;
  border-top: 2px solid var(--gold);
}

footer a {
  color: var(--gold);
}

.footer-links {
  margin-top: 8px;
}

/* ── RESPONSIVITÄT ─────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero-vintage {
    min-height: 70vh;
    padding: 50px 20px 40px;
    flex-direction: column;
  }
  .hero-title {
    font-size: 3.4rem;
  }
  .voucher-panel {
    position: static;
    width: 100%;
    max-width: 640px;
    margin-top: 36px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav-menu {
    display: none;
    width: 100%;
  }
  .nav-menu.open {
    display: block;
  }
  .nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 12px;
    gap: 10px;
  }
  .nav-menu .sep {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .hero-vintage {
    min-height: 62vh;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-subtitle br {
    display: none;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }
  .v-type-pills {
    grid-template-columns: 1fr;
  }
  .v-order-row {
    flex-direction: column;
    align-items: stretch;
  }
  .v-col-qty {
    width: 100%;
  }
  .v-name-grid {
    grid-template-columns: 1fr;
  }
  .res-form .row {
    grid-template-columns: 1fr;
  }
}
