/* ========================================
   BLUMENWERKSTATT SCHMALKALDEN - Styles
   ======================================== */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 106px;
}

/* --- Theme Variables --- */
:root {
  --color-primary: var(--color-primary);
  --color-primary-rgb: 74, 124, 89;
  --color-primary-dark: var(--color-primary-dark);
  --color-primary-light: #81c784;
  --color-heading: var(--color-heading);
  --color-bg-alt: var(--color-bg-alt);
  --color-bg-light: var(--color-bg-light);
  --color-accent: #e8f5e9;
  --color-accent-dark: #c8e6c9;
  --color-hero-end: var(--color-hero-end);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #3e3e3e;
  background: #fefefe;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* --- Container --- */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}

.header-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  position: relative;
}

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

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

/* --- Hamburger --- */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: fixed;
  right: 16px;
  top: 20px;
  z-index: 1001;
  border-radius: 8px;
  transition: background 0.2s;
}

.hamburger:hover,
.hamburger:focus-visible {
  background: var(--color-bg-light);
  outline: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* --- Navigation Menu --- */
.nav-menu {
  position: fixed;
  top: 80px;
  right: 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}

.nav-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-link {
  display: block;
  padding: 12px 24px;
  font-size: 1rem;
  color: #3e3e3e;
  transition: background 0.15s, color 0.15s;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: var(--color-bg-light);
  color: var(--color-primary);
  outline: none;
}

/* ========================================
   SEASON BANNER
   ======================================== */
.season-banner {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--color-primary);
  text-align: center;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.season-banner a {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 36px;
}

.season-banner a:hover {
  text-decoration: underline;
}

.season-banner.hidden {
  display: none;
}

.season-banner-close {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}

.season-banner-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* --- When banner is closed --- */
body.no-season-banner .hero {
  padding-top: 100px;
}

@media (min-width: 900px) {
  body.no-season-banner .hero {
    padding-top: 120px;
  }
}

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 136px 20px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -10px;
  background: url('bilder/hero.jpg') center/cover no-repeat;
  filter: blur(6px);
  opacity: 0.8;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-location {
  font-size: 1.15rem;
  color: #d4eeda;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.hero-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 480px;
  margin: 0 auto 32px;
}

.hero-decoration {
  position: absolute;
  bottom: -10px;
  right: -20px;
  opacity: 0.15;
  width: 260px;
  pointer-events: none;
}

.hero-flower {
  width: 100%;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(var(--color-primary-rgb), 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.4);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  min-height: 56px;
  font-size: 1.1rem;
}

.btn-whatsapp:hover {
  background: #20bd5a;
}

.btn-phone {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(var(--color-primary-rgb), 0.3);
  min-height: 56px;
  font-size: 1.1rem;
}

.btn-phone:hover {
  background: var(--color-primary-dark);
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 72px 0;
}

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

.section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-heading);
  text-align: center;
  margin-bottom: 12px;
}

.section-intro {
  text-align: center;
  color: #666;
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}

/* ========================================
   CARDS
   ======================================== */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 24px;
}

.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.card-image svg {
  width: 100%;
  display: block;
}

/* --- Slideshow --- */
.slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f5f5f5;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f5f5f5;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.slide.active {
  opacity: 1;
}

.slide-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.slide-dot.active {
  background: #fff;
}


.card-body {
  padding: 20px 24px 24px;
}

/* --- Anlass-Teaser --- */
.anlass-teaser {
  text-align: center;
  margin-top: 48px;
  padding: 40px 32px;
  background: var(--color-bg-alt);
  border-radius: 16px;
}

.anlass-teaser h3 {
  font-size: 1.4rem;
  color: var(--color-heading);
  margin-bottom: 12px;
}

.anlass-teaser p {
  color: #5a5a5a;
  max-width: 500px;
  margin: 0 auto 24px;
}

/* --- Hochzeit & Trauer Seite --- */
.ht-hero {
  position: relative;
  padding: 140px 24px 80px;
  text-align: center;
  background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-accent) 100%);
  overflow: hidden;
}

.ht-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.ht-hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-heading);
  line-height: 1.2;
  margin-bottom: 16px;
}

.ht-hero p {
  font-size: 1.1rem;
  color: #5a5a5a;
}

.ht-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
}

.ht-hero-deco svg {
  width: 100%;
  height: 100%;
}

/* Cards */
.ht-card {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: #fff;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.ht-card--trauer {
  background: #fff;
}

.ht-card-visual {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.ht-card-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ht-card-badge--rosa {
  background: #fce4ec;
  color: #c2185b;
}

.ht-card-badge--braun {
  background: #efebe9;
  color: #5d4037;
}

.ht-card-body h2 {
  font-size: 1.6rem;
  color: var(--color-heading);
  margin-bottom: 12px;
}

.ht-card-intro {
  font-size: 1.05rem;
  color: #5a5a5a;
  margin-bottom: 24px;
}

.ht-hinweis {
  background: #fff8e1;
  border-left: 4px solid #ffc107;
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 0.92rem;
  color: #6d5a00;
}

.ht-card-note {
  color: #777;
  font-style: italic;
  margin-bottom: 20px;
}

/* Feature grid */
.ht-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.ht-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: #fafafa;
  border-radius: 12px;
  transition: background 0.2s;
}

.ht-feature:hover {
  background: #f0f7f1;
}

.ht-card--trauer .ht-feature:hover {
  background: #f5f0ed;
}

.ht-feature-icon {
  font-size: 1.2rem;
  color: #f48fb1;
  flex-shrink: 0;
  margin-top: 2px;
}

.ht-feature-icon--braun {
  color: #a1887f;
}

.ht-feature strong {
  display: block;
  color: #3e3e3e;
  margin-bottom: 2px;
}

.ht-feature p {
  font-size: 0.88rem;
  color: #888;
  margin: 0;
}

/* Gallery */
.ht-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ht-gallery-item {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.ht-gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.ht-gallery-item:hover img {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .ht-card {
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
  }

  .ht-card-visual {
    flex-direction: row;
    gap: 16px;
  }

  .ht-feature-grid {
    grid-template-columns: 1fr;
  }

  .ht-hero h1 {
    font-size: 1.7rem;
  }
}

/* --- Info Hint --- */
.info-hint {
  position: relative;
  display: inline-block;
  margin-top: 10px;
}

.info-hint--centered {
  display: flex;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 8px;
}

.info-hint-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  background: #fff;
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 700;
  font-style: italic;
  font-family: Georgia, serif;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.info-hint-btn:hover,
.info-hint-btn.active {
  background: var(--color-primary);
  color: #fff;
}

.info-hint-bubble {
  display: none;
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-heading);
  color: #fff;
  font-size: 0.85rem;
  line-height: 1.5;
  padding: 12px 16px;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.info-hint-bubble.visible {
  display: block;
}

.info-hint-bubble::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--color-heading);
  border-radius: 2px;
  transform: translateX(-50%) rotate(45deg);
}

.card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 8px;
}

.card-body p {
  color: #555;
  font-size: 0.95rem;
}

/* --- Info Cards (Termine) --- */
.card-info {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
}

.card-info .card-body {
  padding: 0;
}

.card-icon {
  flex-shrink: 0;
}

/* ========================================
   TERMINE - Redesign
   ======================================== */
.termine-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}

.termin-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 28px 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.termin-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.termin-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.termin-card--birthday .termin-card-accent {
  background: linear-gradient(90deg, #ef6c00, #ffb74d);
}

.termin-card--course .termin-card-accent {
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
}

.termin-card-icon {
  margin-bottom: 20px;
  flex-shrink: 0;
}

.termin-card-icon svg {
  width: 80px;
  height: 80px;
}

.termin-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.termin-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.termin-badge--orange {
  background: #fff3e0;
  color: #e65100;
}

.termin-badge--green {
  background: var(--color-accent);
  color: var(--color-heading);
}

.termin-card-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-heading);
  margin: 0;
}

.termin-card-content p {
  color: #555;
  font-size: 0.95rem;
  max-width: 340px;
  line-height: 1.6;
  margin: 4px 0 8px;
}

.termin-link {
  display: inline-block;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  padding: 10px 24px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  margin-top: 4px;
}

.termin-link:active {
  transform: scale(0.97);
}

.termin-link--orange {
  color: #e65100;
  background: #fff3e0;
}

.termin-link--orange:hover {
  background: #ffe0b2;
  color: #bf360c;
}

.termin-link--green {
  color: var(--color-heading);
  background: var(--color-accent);
}

.termin-link--green:hover {
  background: var(--color-accent-dark);
  color: var(--color-primary-dark);
}

/* --- Termin-Details Toggle --- */
.termin-details-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff3e0;
  color: #e65100;
  border: none;
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  font-family: inherit;
  margin-top: 4px;
}

.termin-details-toggle:hover {
  background: #ffe0b2;
}

.termin-details-toggle:active {
  transform: scale(0.97);
}

.toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #e65100;
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.3s;
}

.termin-details-toggle[aria-expanded="true"] .toggle-icon {
  transform: rotate(45deg);
}

.termin-details {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  width: 100%;
}

.termin-details.open {
  grid-template-rows: 1fr;
}

.termin-details > ul {
  overflow: hidden;
  list-style: none;
  background: #fff8f0;
  border-radius: 12px;
  border: 1px solid #ffe0b2;
  padding: 0;
  margin: 0;
}

.termin-details.open > ul {
  padding: 16px 20px;
  margin-top: 8px;
}

.termin-details > ul li {
  font-size: 0.9rem;
  color: #555;
  padding: 4px 0;
  text-align: left;
}

.termin-details > ul li + li {
  border-top: 1px solid #ffe0b2;
  padding-top: 8px;
  margin-top: 4px;
}

/* --- Termin-Liste (Kurse) --- */
.termin-liste {
  list-style: none;
  width: 100%;
  margin: 8px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.termin-liste li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--color-bg-alt);
  border-left: 3px solid var(--color-heading);
  border-radius: 0 10px 10px 0;
  padding: 12px 16px;
  text-align: left;
}

.termin-datum {
  font-weight: 700;
  color: var(--color-heading);
  font-size: 0.95rem;
}

.termin-zeit {
  font-size: 0.85rem;
  color: #777;
}

.termin-thema {
  font-size: 0.9rem;
  color: #555;
  font-style: italic;
}

/* ========================================
   ABOUT
   ======================================== */
.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
  text-align: center;
}

.about-photo {
  flex-shrink: 0;
  width: 220px;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.about-text p {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 14px;
  max-width: 580px;
}

.about-text strong {
  color: var(--color-heading);
}

/* ========================================
   FAQ
   ======================================== */
.faq-list {
  max-width: 640px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #3e3e3e;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer > p {
  overflow: hidden;
  padding: 0 22px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.open .faq-answer > p {
  padding: 0 22px 18px;
}

/* ========================================
   PREISE (Price Cards)
   ======================================== */
.preis-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}

.preis-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 36px 28px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.preis-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.preis-icon {
  margin-bottom: 8px;
}

.preis-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-heading);
  margin: 0;
}

.preis-betrag {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-primary);
  margin: 4px 0;
}

.preis-betrag span {
  font-size: 0.9rem;
  font-weight: 600;
}

.preis-card p {
  color: #555;
  font-size: 0.95rem;
  max-width: 280px;
  line-height: 1.6;
  margin: 0 0 8px;
}

@media (min-width: 600px) {
  .preis-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* ========================================
   CONTACT
   ======================================== */
.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 400px;
  margin: 32px auto 40px;
}

/* --- Address --- */
.contact-info {
  text-align: center;
  margin-bottom: 8px;
}

.contact-address {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-address p {
  margin: 0;
  text-align: left;
}

/* --- Maps Button & Choice --- */
.btn-maps {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  min-height: 56px;
  font-size: 1.1rem;
}

.btn-maps:hover {
  background: var(--color-primary);
  color: #fff;
}

.maps-choice {
  display: none;
  text-align: center;
  margin-top: -16px;
  margin-bottom: 16px;
  animation: fadeInUp 0.25s ease;
}

.maps-choice.visible {
  display: block;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.maps-choice p {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 10px;
}

.maps-choice-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-maps-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  border: 2px solid var(--color-primary);
  background: #fff;
  color: var(--color-primary);
}

.btn-maps-option:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn-maps-option:active {
  transform: scale(0.97);
}

/* --- Form --- */
.contact-form {
  max-width: 520px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #3e3e3e;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.required {
  color: #d32f2f;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid #dce8dc;
  border-radius: 10px;
  background: #fff;
  color: #3e3e3e;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-heading);
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #d32f2f;
}

.error-msg {
  display: none;
  color: #d32f2f;
  font-size: 0.85rem;
  margin-top: 4px;
}

.form-group.has-error .error-msg {
  display: block;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  margin-top: 8px;
}

/* --- Success --- */
.success-msg {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 32px 20px;
  margin-top: 24px;
  background: #e8f5e9;
  border-radius: 14px;
  border: 2px solid #a5d6a7;
}

.success-msg.visible {
  display: flex;
}

.success-msg p {
  color: #2e7d32;
  font-weight: 600;
  font-size: 1.05rem;
}

/* ========================================
   FLOATING ACTION BUTTONS
   ======================================== */
.fab {
  position: fixed;
  z-index: 900;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.3s, visibility 0.3s, box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.fab:active {
  transform: scale(0.93);
}

.fab-whatsapp {
  right: 24px;
  background: #25d366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.fab-whatsapp:hover {
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  transform: scale(1.05);
}

.fab-top {
  left: 24px;
  background: var(--color-primary);
  box-shadow: 0 4px 16px rgba(var(--color-primary-rgb), 0.3);
  opacity: 0;
  visibility: hidden;
}

.fab-top.visible {
  opacity: 1;
  visibility: visible;
}

.fab-top:hover {
  background: var(--color-primary-dark);
}

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2500;
  background: #fff;
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.1);
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

.cookie-banner p a {
  color: var(--color-primary);
  text-decoration: underline;
}

.cookie-banner-btn {
  padding: 10px 24px;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  animation: lbFadeIn 0.25s ease;
}

@keyframes lbFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 2rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: #fff;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 3rem;
  padding: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.lightbox-arrow:hover {
  color: #fff;
}

.lightbox-prev {
  left: 4px;
}

.lightbox-next {
  right: 4px;
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Touch-friendly slideshow images */
.slideshow {
  cursor: pointer;
}

/* ========================================
   MODAL (Geburtstag)
   ======================================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 4px;
}

.modal-intro {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: #f5f5f5;
  border-radius: 50%;
  font-size: 1.4rem;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}

.modal-close:hover {
  background: #eee;
  color: #333;
}

.modal-phone-btn {
  width: 100%;
  margin-bottom: 0;
}

.modal-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
  color: #aaa;
  font-size: 0.85rem;
}

.modal-divider::before,
.modal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

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

.form-hint {
  font-size: 0.82rem;
  color: #888;
  margin-top: -8px;
  margin-bottom: 4px;
}

.form-row ~ .error-msg {
  margin-bottom: 16px;
}

/* ========================================
   GALLERY BANNER (Laufband)
   ======================================== */
/* ========================================
   REVIEWS BANNER (Laufband)
   ======================================== */
.reviews-section {
  background: #fefefe;
  padding: 48px 0 0;
  text-align: center;
}

.reviews-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 4px;
}

.reviews-subtitle {
  color: #d4a017;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.reviews-banner {
  overflow: hidden;
  padding: 8px 0 24px;
}

.reviews-track {
  display: inline-flex;
  gap: 20px;
  animation: reviews-scroll 35s linear infinite;
}

.reviews-track:hover {
  animation-play-state: paused;
}

.review-card {
  flex-shrink: 0;
  width: 220px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  padding: 16px;
  text-align: left;
  border: 1px solid #f0f0f0;
  transition: transform 0.2s, box-shadow 0.2s;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.review-stars {
  color: #f9a825;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.review-card p {
  color: #555;
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0 0 8px;
  font-style: italic;
}

.review-source {
  font-size: 0.72rem;
  color: #aaa;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

@keyframes reviews-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (min-width: 600px) {
  .reviews-section h2 {
    font-size: 2rem;
  }

  .review-card {
    width: 300px;
    padding: 24px;
  }

  .review-stars {
    font-size: 1.1rem;
  }

  .review-card p {
    font-size: 0.92rem;
  }
}

.gallery-banner {
  overflow: hidden;
  background: #fefefe;
  padding: 20px 0;
}

.gallery-track {
  display: inline-flex;
  gap: 16px;
  animation: gallery-scroll 10s linear infinite;
}

.gallery-track img {
  height: 60vh;
  width: auto;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes gallery-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  text-align: center;
  padding: 28px 20px;
  color: #888;
  font-size: 0.9rem;
  border-top: 1px solid #eee;
}

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

.footer-links a {
  color: #888;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

/* ========================================
   LEGAL PAGES (Impressum, Datenschutz)
   ======================================== */
.legal-content {
  max-width: 640px;
  margin: 32px auto 0;
  text-align: left;
}

.legal-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-top: 28px;
  margin-bottom: 8px;
}

.legal-content p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-content a {
  color: var(--color-primary);
  text-decoration: underline;
}

.legal-content ul {
  margin: 8px 0 16px 20px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-content ul li {
  margin-bottom: 4px;
}

/* ========================================
   RESPONSIVE - Tablet+
   ======================================== */
@media (min-width: 600px) {
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .termine-grid {
    grid-template-columns: 1fr 1fr;
  }

  .termin-card {
    padding: 40px 32px 36px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-text {
    font-size: 1.2rem;
  }

  .contact-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 600px;
  }

  .contact-buttons .btn,
  .contact-buttons button {
    flex: 1;
    min-width: 160px;
  }

  .about-content {
    flex-direction: row;
    text-align: left;
    align-items: center;
  }

  .about-photo {
    width: 240px;
  }

  .section h2 {
    font-size: 2rem;
  }
}

/* ========================================
   RESPONSIVE - Desktop
   ======================================== */
@media (min-width: 900px) {
  .hero h1 {
    font-size: 3.6rem;
  }

  .header-inner {
    height: 80px;
  }

  html {
    scroll-padding-top: 122px;
  }

  .hamburger {
    right: 20px;
  }

  .nav-menu {
    top: 80px;
    right: 20px;
  }

  .season-banner {
    top: 80px;
  }

  .hero {
    padding-top: 156px;
  }

  .hero-decoration {
    width: 340px;
    right: 0;
    bottom: 20px;
    opacity: 0.18;
  }

  .section {
    padding: 96px 0;
  }
}

/* ========================================
   WAVE DIVIDERS
   ======================================== */
.wave-divider {
  width: 100%;
  line-height: 0;
  margin: -1px 0;
  overflow: hidden;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

.wave-divider--to-alt svg path {
  fill: var(--color-bg-alt);
}

.wave-divider--to-white svg path {
  fill: #fefefe;
}

.wave-divider--from-alt {
  background: var(--color-bg-alt);
}

@media (min-width: 600px) {
  .wave-divider svg {
    height: 80px;
  }
}

@media (min-width: 900px) {
  .wave-divider svg {
    height: 100px;
  }
}

/* ========================================
   BUTTON GLOW EFFECTS
   ======================================== */
.btn-primary {
  transition: transform 0.15s, box-shadow 0.3s ease, background 0.2s;
}

.btn-primary:hover {
  box-shadow: 0 0 20px rgba(var(--color-primary-rgb), 0.5), 0 6px 20px rgba(var(--color-primary-rgb), 0.4);
}

.btn-whatsapp {
  transition: transform 0.15s, box-shadow 0.3s ease, background 0.2s;
}

.btn-whatsapp:hover {
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5), 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-phone {
  transition: transform 0.15s, box-shadow 0.3s ease, background 0.2s;
}

.btn-phone:hover {
  box-shadow: 0 0 20px rgba(var(--color-primary-rgb), 0.5), 0 6px 20px rgba(var(--color-primary-rgb), 0.4);
}

/* --- WhatsApp FAB Pulse --- */
@keyframes fab-pulse {
  0% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 20px rgba(37, 211, 102, 0.3);
  }
  100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  }
}

.fab-whatsapp {
  animation: fab-pulse 3s ease-in-out infinite;
}

.fab-whatsapp:hover {
  animation: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5), 0 0 24px rgba(37, 211, 102, 0.4);
}

/* ========================================
   SEASONAL COLOR SCHEMES
   ======================================== */

/* --- Spring (March–May) – frisches helles Grün --- */
body.season-spring {
  --color-primary: #43a047;
  --color-primary-rgb: 67, 160, 71;
  --color-primary-dark: #388e3c;
  --color-primary-light: #81c784;
  --color-heading: #2e7d32;
  --color-secondary: #9b59a0;
  --color-secondary-light: #ce93d8;
  --color-bg-alt: #e8f5e9;
  --color-bg-light: #f1f8e9;
  --color-accent: #c8e6c9;
  --color-accent-dark: #a5d6a7;
  --color-hero-end: #f1f8e9;
}

/* --- Summer (June–August) – sonniges Gelb/Gold --- */
body.season-summer {
  --color-primary: #d4a017;
  --color-primary-rgb: 212, 160, 23;
  --color-primary-dark: #b8860b;
  --color-primary-light: #ffd54f;
  --color-heading: #96720a;
  --color-secondary: #e57373;
  --color-secondary-light: #ef9a9a;
  --color-bg-alt: #fffde7;
  --color-bg-light: #fffde7;
  --color-accent: #fff9c4;
  --color-accent-dark: #fff176;
  --color-hero-end: #fffde7;
}

/* --- Autumn (September–November) --- */
body.season-autumn {
  --color-primary: #e65100;
  --color-primary-rgb: 230, 81, 0;
  --color-primary-dark: #bf360c;
  --color-primary-light: #ff8a65;
  --color-heading: #bf360c;
  --color-secondary: #8d6e63;
  --color-secondary-light: #bcaaa4;
  --color-bg-alt: #fff3e0;
  --color-bg-light: #fff3e0;
  --color-accent: #ffe0b2;
  --color-accent-dark: #ffcc80;
  --color-hero-end: #fff3e0;
}

/* --- Winter (December–February) --- */
body.season-winter {
  --color-primary: #1565c0;
  --color-primary-rgb: 21, 101, 192;
  --color-primary-dark: #0d47a1;
  --color-primary-light: #64b5f6;
  --color-heading: #0d47a1;
  --color-secondary: #7e57c2;
  --color-secondary-light: #b39ddb;
  --color-bg-alt: #e3f2fd;
  --color-bg-light: #e3f2fd;
  --color-accent: #bbdefb;
  --color-accent-dark: #90caf9;
  --color-hero-end: #e3f2fd;
}
