/* ==========================================================
   BOOTSVERLEIH WIESBADEN
   Farbsystem: alle Farben sind Tints/Shades von
   Primärfarbe #f3b562 und Schriftfarbe #020202
   ========================================================== */

:root {
  /* Primärfarbe + Tints (heller) */
  --amber: #f3b562;
  --amber-tint-1: #f7cd91; /* +20% Weiß */
  --amber-tint-2: #fbe4c0; /* +60% Weiß */
  --amber-tint-3: #fef6ea; /* +90% Weiß – Seitenhintergrund */

  /* Primärfarbe Shades (dunkler) */
  --amber-shade-1: #c2914e; /* -20% */
  --amber-shade-2: #916d3b; /* -40% */
  --amber-shade-3: #614827; /* -60% */

  /* Schriftfarbe + Tints */
  --ink: #020202;
  --ink-tint-1: #353535; /* weiche Überschriften */
  --ink-tint-2: #676767; /* Fließtext sekundär */
  --ink-tint-3: #9a9a9a; /* Captions */

  /* Typografie */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  /* Layout */
  --max-width: 1100px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(2, 2, 2, 0.08);
  --header-height: calc(52px + 2 * 1.1rem);
}

/* ---------- Reset & Basis ---------- */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--amber-tint-3);
}

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

/* ---------- Typografie ---------- */

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
}
h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

h1 em {
  font-style: italic;
  color: var(--amber-shade-1);
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-shade-2);
  margin-bottom: 0.75rem;
}

.section-sub {
  max-width: 55ch;
  color: var(--ink-tint-2);
  margin-bottom: 2.5rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition:
    transform 0.15s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}
.btn:focus-visible {
  outline: 3px solid var(--amber-shade-1);
  outline-offset: 3px;
}

.btn--primary {
  background-color: var(--amber);
  color: var(--ink);
}
.btn--primary:hover {
  background-color: var(--amber-shade-1);
}

.btn--dark {
  background-color: var(--ink);
  color: var(--amber-tint-2);
}
.btn--dark:hover {
  background-color: var(--ink-tint-1);
}

.btn--ghost {
  border-color: var(--amber-shade-1);
  color: var(--amber-shade-2);
  background: transparent;
}
.btn--ghost:hover {
  background-color: var(--amber-tint-2);
}

.btn--full {
  width: 100%;
}

/* ---------- Ankündigungsleiste ---------- */

.announcement-bar {
  display: block;
  text-align: center;
  padding: 0.6rem 1.5rem;
  background-color: var(--amber);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.announcement-bar:hover {
  background-color: var(--amber-shade-1);
}

/* ---------- Header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--amber-tint-3);
  transition: transform 0.25s ease;
}

.header--hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
}

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

.logo-img {
  height: 52px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  color: var(--ink-tint-1);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease;
}
.nav-link:hover {
  color: var(--amber-shade-2);
}

.nav-link--cta {
  background-color: var(--amber);
  color: var(--ink);
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-weight: 500;
}
.nav-link--cta:hover {
  background-color: var(--amber-shade-1);
  color: var(--ink);
}

.nav-link--cta-ghost {
  border: 2px solid var(--amber-shade-1);
  color: var(--ink);
  padding: calc(0.55rem - 2px) calc(1.2rem - 2px);
  border-radius: 999px;
  font-weight: 500;
}
.nav-link--cta-ghost:hover {
  background-color: var(--amber-tint-2);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--ink);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;

  display: flex;
  align-items: center;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.397), rgba(0, 0, 0, 0.322)),
    url('bilder/hero.webp');
  background-size: cover;
  background-position: center;
}

.hero-inner {
  position: relative;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.hero-text {
  max-width: 46ch;
}

.hero-text .eyebrow {
  color: var(--amber-tint-1);
}

.hero-text h1 {
  color: #fff;
}

.hero-text h1 em {
  color: var(--amber);
}

.hero-sub {
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.85);
  margin: 1.4rem 0 2.2rem;
}

.hero-actions .btn--ghost {
  border-color: #fff;
  color: #fff;
}
.hero-actions .btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- Sections allgemein ---------- */

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.section > .eyebrow,
.section > h2 {
  text-align: center;
}

.revier-text .eyebrow,
.revier-text h2,
.revier-text .section-sub {
  text-align: center;
}

.section--tinted {
  max-width: none;
  background-color: var(--amber-tint-2);
}
.section--tinted > * {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

/* ---------- USP ---------- */

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.usp-card {
  text-align: center;
  background-color: #fff;
  border-radius: var(--radius);
  padding: 2.2rem 1.6rem;
  box-shadow: var(--shadow);
}

.usp-icon {
  font-size: 2.4rem;
  color: var(--amber-shade-2);
  margin-bottom: 0.8rem;
}

.usp-card h3 {
  margin-bottom: 0.4rem;
}

.usp-card p {
  color: var(--ink-tint-2);
  font-size: 0.98rem;
}

/* ---------- Ablauf / How it works ---------- */

.hiw-rows {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  margin-top: 3rem;
  max-width: 850px;
}

.hiw-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.hiw-row--reverse .hiw-text {
  order: 2;
}
.hiw-row--reverse .hiw-media {
  order: 1;
  justify-self: start;
}

.hiw-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--amber-tint-1);
  margin-bottom: 0.6rem;
}

.hiw-text p {
  color: var(--ink-tint-2);
  max-width: 42ch;
}

.hiw-media {
  position: relative;
  max-width: 70%;
  justify-self: end;
}

.hiw-media::before {
  content: '';
  position: absolute;
  inset: 8%;
  background-color: var(--amber-tint-2);
  border-radius: 50%;
  z-index: 0;
}

.hiw-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 9999px;
  box-shadow: var(--shadow);
}

/* ---------- Revier ---------- */

.revier {
  max-width: none;
  background-image:
    linear-gradient(rgba(2, 2, 2, 0.55), rgba(2, 2, 2, 0.55)),
    url('bilder/revier.webp');
  background-size: cover;
  background-position: center bottom;
  padding: 6rem 1.5rem;
}

.revier-text {
  max-width: 640px;
  margin: 0 auto;
}

.revier-text .eyebrow {
  color: var(--amber-tint-1);
}
.revier-text h2 {
  color: #fff;
}
.revier-text .section-sub {
  color: rgba(255, 255, 255, 0.85);
}

.revier-highlights {
  list-style: none;
  margin-top: 1.8rem;
  display: grid;
  gap: 0.9rem;
  color: #fff;
}

.revier-highlights li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.05rem;
}

.revier-highlights ion-icon {
  font-size: 1.3rem;
  color: var(--amber-tint-1);
  flex-shrink: 0;
}

/* ---------- Pricing ---------- */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pricing-table-wrap {
  max-width: 900px;
  margin: 2.5rem auto 0;
  background-color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pricing-table-usp {
  color: var(--ink-tint-2);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 1.1rem 1.4rem;
  text-align: left;
}

.pricing-table thead th {
  background-color: var(--amber-tint-3);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-tint-1);
}

.pricing-table-action-col {
  width: 1%;
}

.pricing-table tbody tr:not(:last-child) {
  border-bottom: 1px solid var(--amber-tint-2);
}

.pricing-table tbody td:first-child {
  font-weight: 500;
}

.pricing-table tbody td:nth-child(2) {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--amber-shade-2);
  white-space: nowrap;
}

.pricing-table tbody td:last-child {
  text-align: right;
}

.pricing-table-row--featured {
  background-color: var(--amber-tint-3);
}

.badge-inline {
  display: inline-block;
  margin-left: 0.4rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--amber-tint-2);
  background-color: var(--ink);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  vertical-align: middle;
  white-space: nowrap;
}

.pricing-table .btn--sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.92rem;
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.92rem;
  color: var(--ink-tint-3);
}

/* ---------- FAQ ---------- */

.faq {
  max-width: 700px;
  margin: 2rem auto 0;
}

.faq-item {
  background-color: var(--amber-tint-2);
  border-radius: var(--radius);
  margin-bottom: 0.9rem;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.4rem;
  font-weight: 500;
  list-style: none;
  position: relative;
  padding-right: 3rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--amber-shade-2);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  padding: 0 1.4rem 1.2rem;
  color: var(--ink-tint-2);
}

/* ---------- Kontaktformular ---------- */

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
  max-width: 640px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 500;
}

.contact-field--full {
  grid-column: 1 / -1;
}

.contact-field input,
.contact-field textarea {
  font: inherit;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--amber-tint-1);
  border-radius: var(--radius);
  background-color: #fff;
  color: var(--ink);
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: 2px solid var(--amber-shade-1);
  outline-offset: 1px;
}

.contact-form .btn {
  grid-column: 1 / -1;
  justify-self: start;
}

/* ---------- Footer ---------- */

.footer {
  background-color: var(--ink);
  color: var(--amber-tint-2);
  padding: 3rem 1.5rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  font-size: 0.95rem;
}

.footer-logo-img {
  height: 64px;
  width: auto;
  margin-bottom: 0.6rem;
}

.footer a {
  color: var(--amber-tint-1);
  text-decoration: none;
}
.footer a:hover {
  color: var(--amber);
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-social {
  display: flex;
  gap: 0.9rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--amber);
  color: var(--ink);
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}
.footer-social a:hover {
  background-color: rgba(254, 246, 234, 0.08);
  color: var(--amber-tint-1);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ---------- Scroll-Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn:hover {
    transform: none;
  }
}

#booking-result-view {
  display: none;
}

/* ---------- Gutschein-Aktion Popup ---------- */

.promo-modal[hidden] {
  display: none;
}

.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.promo-modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(2, 2, 2, 0.55);
  animation: promo-fade-in 0.25s ease;
}

.promo-modal-box {
  position: relative;
  max-width: 440px;
  width: 100%;
  background-color: var(--amber-tint-3);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.6rem 2.2rem 2.2rem;
  text-align: center;
  animation: promo-pop-in 0.3s ease;
}

.promo-modal-box h3 {
  font-size: clamp(1.5rem, 4vw, 1.9rem);
  margin-bottom: 0.9rem;
}

.promo-modal-box p {
  color: var(--ink-tint-2);
  margin-bottom: 1.6rem;
}

.promo-modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--ink-tint-2);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}
.promo-modal-close:hover {
  background-color: var(--amber-tint-2);
  color: var(--ink);
}

@keyframes promo-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes promo-pop-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-modal-backdrop,
  .promo-modal-box {
    animation: none;
  }
}
