/* ==========================================================================
   NaturCampingplatz Lübschützer Teiche — Design System
   Comprehensive CSS for all pages
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Google Fonts
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* --------------------------------------------------------------------------
   1. Design Tokens (Custom Properties)
   -------------------------------------------------------------------------- */
:root {
  /* Greens */
  --green-dark: #1E3A2F;
  --green-mid: #2D5A3D;
  --green-light: #4A8C6A;
  --green-pale: #EBF5EE;

  /* Accents */
  --yellow: #E8B84B;
  --yellow-dark: #C99A2E;
  --sand: #C4A882;

  /* Neutrals */
  --warm-white: #F9F5EF;
  --dark: #1A1A1A;
  --grey: #6B7280;
  --light-grey: #F3F4F6;
  --white: #FFFFFF;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.16);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Layout */
  --nav-height: 72px;
  --max-width: 1200px;
  --max-width-narrow: 800px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--green-dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: var(--space-md);
  color: var(--grey);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--green-dark);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--grey);
  max-width: 600px;
}

/* --------------------------------------------------------------------------
   4. Layout Utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-4xl) 0;
}

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

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

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--yellow);
  color: var(--green-dark);
  border-color: var(--yellow);
}

.btn-primary:hover {
  background-color: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--green-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-outline:hover {
  background-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-green {
  background-color: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}

.btn-green:hover {
  background-color: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-block {
  display: flex;
  width: 100%;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   6. Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--green-dark);
  height: var(--nav-height);
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--white);
  position: relative;
  z-index: 10;
  flex-shrink: 0;
  flex-shrink: 0;
}

.nav-icon {
  font-size: 2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
}

.brand-sub {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--yellow);
  opacity: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a.active {
  color: var(--white);
  border-bottom-color: var(--yellow);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-login {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s;
}

.nav-login:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.nav-login svg {
  display: block;
}

.mobile-admin-link {
  opacity: 0.5;
  font-size: 0.85rem;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 10px 24px;
  background-color: var(--yellow);
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-cta:hover {
  background-color: var(--yellow-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 1.6rem;
  color: var(--white);
  padding: var(--space-sm);
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--green-dark);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: var(--space-2xl) var(--space-lg);
  gap: var(--space-sm);
  transition: right var(--transition-slow);
  box-shadow: var(--shadow-xl);
}

.mobile-menu.open {
  right: 0;
}

.mobile-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-size: 1.5rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.mobile-menu a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  font-weight: 500;
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color var(--transition-fast);
}

.mobile-menu a:hover {
  color: var(--yellow);
}

.mobile-menu .btn-cta {
  margin-top: var(--space-lg);
  text-align: center;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   7. Hero Section (Homepage)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 58, 47, 0.55) 0%,
    rgba(30, 58, 47, 0.40) 50%,
    rgba(30, 58, 47, 0.65) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 var(--space-lg);
}

.hero .location-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--white);
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.hero h1 .accent {
  color: var(--yellow);
  font-style: italic;
}

.hero .subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Stats bar */
.stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(30, 58, 47, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   8. Page Hero (Inner Pages)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  width: 100%;
  height: 40vh;
  min-height: 280px;
  max-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 58, 47, 0.6) 0%,
    rgba(30, 58, 47, 0.75) 100%
  );
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-height);
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.page-hero .subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--yellow);
}

.breadcrumb .separator {
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb .current {
  color: var(--yellow);
}

/* --------------------------------------------------------------------------
   9. Gallery Strip
   -------------------------------------------------------------------------- */
.gallery-strip {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.gallery-strip img {
  flex: 1;
  min-width: 0;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-strip img:hover {
  transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   10. "Warum NaturCamping?" Section
   -------------------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.feature-card {
  text-align: center;
  padding: var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card .icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  display: block;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
  color: var(--green-dark);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--grey);
}

/* --------------------------------------------------------------------------
   11. Accommodation Cards
   -------------------------------------------------------------------------- */
.acc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.acc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.acc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.acc-card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.acc-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.acc-card:hover .acc-card-image img {
  transform: scale(1.08);
}

.acc-card-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: 6px 14px;
  background: var(--green-mid);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.acc-card-badge.highlight {
  background: var(--yellow);
  color: var(--green-dark);
}

.acc-card-info {
  padding: var(--space-lg);
}

.acc-card-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: var(--space-sm);
}

.acc-card-info .acc-meta {
  display: flex;
  gap: var(--space-md);
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: var(--space-md);
}

.acc-card-info .acc-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.acc-card-info p {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.acc-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--light-grey);
}

.acc-card-price {
  font-size: 0.85rem;
  color: var(--grey);
}

.acc-card-price strong {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
}

.acc-card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-light);
  transition: color var(--transition-fast);
}

.acc-card-link:hover {
  color: var(--green-dark);
}

/* --------------------------------------------------------------------------
   12. Detail Page
   -------------------------------------------------------------------------- */
.detail-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-2xl);
  padding: var(--space-3xl) 0;
}

.detail-main {
  min-width: 0;
}

/* Gallery Grid (Detail Pages) */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-md);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.gallery-grid img:first-child {
  grid-row: 1 / 3;
  min-height: 320px;
  max-height: 400px;
}

.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(3) {
  height: 190px;
}

/* Gallery */
.detail-gallery {
  margin-bottom: var(--space-2xl);
}

.detail-gallery-main {
  width: 100%;
  height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.detail-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-gallery-thumbs {
  display: flex;
  gap: var(--space-sm);
}

.detail-gallery-thumbs img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
  border: 2px solid transparent;
}

.detail-gallery-thumbs img:hover,
.detail-gallery-thumbs img.active {
  opacity: 1;
  border-color: var(--green-light);
}

.detail-section {
  margin-bottom: var(--space-2xl);
}

.detail-section h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.detail-section p {
  line-height: 1.8;
}

/* Feature list */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--green-pale);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--green-dark);
}

.feature-item .icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* Booking Widget (Sidebar) */
.booking-widget {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-lg));
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-xl);
  height: fit-content;
}

.booking-widget-price {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--light-grey);
}

.booking-widget-price strong {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-dark);
}

.booking-widget-facts {
  margin-bottom: var(--space-lg);
}

.booking-widget-facts .fact-row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--light-grey);
}

.booking-widget-facts .fact-row:last-child {
  border-bottom: none;
}

.booking-widget-facts .fact-label {
  color: var(--grey);
}

.booking-widget-facts .fact-value {
  font-weight: 600;
  color: var(--dark);
}

.booking-widget .btn {
  width: 100%;
  justify-content: center;
  margin-top: var(--space-md);
}

/* --------------------------------------------------------------------------
   13. Booking System
   -------------------------------------------------------------------------- */
.booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.booking-step {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--light-grey);
  color: var(--grey);
  transition: all var(--transition-base);
}

.booking-step.active .step-number {
  background: var(--green-mid);
  color: var(--white);
}

.booking-step.completed .step-number {
  background: var(--green-light);
  color: var(--white);
}

.step-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--grey);
}

.booking-step.active .step-label {
  color: var(--green-dark);
  font-weight: 600;
}

.step-divider {
  width: 40px;
  height: 2px;
  background: var(--light-grey);
}

.booking-step.completed + .step-divider {
  background: var(--green-light);
}

/* Booking Card */
.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-2xl);
  margin-bottom: var(--space-xl);
}

.booking-card h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
}

/* Type Cards */
.type-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.type-card {
  border: 2px solid var(--light-grey);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.type-card:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-md);
}

.type-card.selected {
  border-color: var(--green-mid);
  background: var(--green-pale);
}

.type-card .type-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  display: block;
}

.type-card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.type-card p {
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 0;
}

/* Accommodation Select Grid */
.acc-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.acc-select-item {
  border: 2px solid var(--light-grey);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-base);
}

.acc-select-item:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-md);
}

.acc-select-item.selected {
  border-color: var(--green-mid);
}

.acc-select-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.acc-select-item .info {
  padding: var(--space-md);
}

.acc-select-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.acc-select-item .price {
  font-size: 0.85rem;
  color: var(--grey);
}

.acc-select-item .price strong {
  color: var(--green-dark);
  font-weight: 700;
}

/* Calendar */
.calendar-container {
  margin-bottom: var(--space-xl);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.calendar-header h3 {
  font-size: 1.1rem;
}

.calendar-nav {
  display: flex;
  gap: var(--space-sm);
}

.calendar-nav button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-grey);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background var(--transition-fast);
}

.calendar-nav button:hover {
  background: var(--green-pale);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.calendar-weekday {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--grey);
  padding: var(--space-sm) 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calendar-day {
  text-align: center;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: none;
  border: none;
  font-family: inherit;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.calendar-day:hover {
  background: var(--green-pale);
}

.calendar-day.today {
  font-weight: 700;
  border: 2px solid var(--green-light);
}

.calendar-day.selected {
  background: var(--green-mid);
  color: var(--white);
  font-weight: 600;
}

.calendar-day.in-range {
  background: var(--green-pale);
  color: var(--green-dark);
}

.calendar-day.disabled {
  color: var(--light-grey);
  cursor: default;
  pointer-events: none;
}

.calendar-day.blocked {
  background: #fee2e2;
  color: #991b1b;
  cursor: not-allowed;
  text-decoration: line-through;
}

.calendar-day.empty {
  pointer-events: none;
}

/* Guest Row */
.guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--light-grey);
}

.guest-row:last-child {
  border-bottom: none;
}

.guest-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}

.guest-info p {
  font-size: 0.8rem;
  color: var(--grey);
  margin-bottom: 0;
}

/* Stepper */
.stepper {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.stepper button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--green-mid);
  color: var(--green-mid);
  font-size: 1.2rem;
  font-weight: 600;
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.stepper button:hover {
  background: var(--green-mid);
  color: var(--white);
}

.stepper button:disabled {
  border-color: var(--light-grey);
  color: var(--light-grey);
  cursor: not-allowed;
}

.stepper button:disabled:hover {
  background: var(--white);
  color: var(--light-grey);
}

.stepper .count {
  font-size: 1.1rem;
  font-weight: 600;
  min-width: 28px;
  text-align: center;
  color: var(--dark);
}

/* Summary Table */
.summary-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-xl);
}

.summary-table tr {
  border-bottom: 1px solid var(--light-grey);
}

.summary-table tr:last-child {
  border-bottom: none;
}

.summary-table td {
  padding: var(--space-md) 0;
  font-size: 0.95rem;
}

.summary-table td:first-child {
  color: var(--grey);
}

.summary-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--dark);
}

.summary-table .total td {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  padding-top: var(--space-lg);
  border-top: 2px solid var(--green-dark);
}

/* Confirmation */
.confirmation {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
}

.confirmation .check-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto var(--space-xl);
}

.confirmation h2 {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.confirmation p {
  font-size: 1.05rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.confirmation .booking-ref {
  display: inline-block;
  background: var(--green-pale);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-dark);
  margin: var(--space-xl) 0;
  letter-spacing: 1px;
}

/* --------------------------------------------------------------------------
   14. Contact Form
   -------------------------------------------------------------------------- */
.contact-form {
  max-width: 700px;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: var(--space-sm);
}

.form-group label .required {
  color: #dc2626;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light-grey);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(74, 140, 106, 0.15);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form-hint {
  font-size: 0.8rem;
  color: var(--grey);
  margin-top: var(--space-xs);
}

/* --------------------------------------------------------------------------
   15. Price Tables
   -------------------------------------------------------------------------- */
.price-table-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: var(--space-xl);
}

.price-table-header {
  background: var(--green-dark);
  color: var(--white);
  padding: var(--space-lg) var(--space-xl);
}

.price-table-header h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.price-table-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-bottom: 0;
}

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

.price-table th {
  text-align: left;
  padding: var(--space-md) var(--space-xl);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--grey);
  background: var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
}

.price-table td {
  padding: var(--space-md) var(--space-xl);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--light-grey);
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table .price-value {
  font-weight: 700;
  color: var(--green-dark);
}

.price-table .price-note {
  font-size: 0.8rem;
  color: var(--grey);
}

.price-info-box {
  background: var(--green-pale);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-top: var(--space-md);
  font-size: 0.9rem;
  color: var(--green-dark);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   16. Events Cards
   -------------------------------------------------------------------------- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.event-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-date-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--yellow);
  color: var(--green-dark);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
  min-width: 60px;
}

.event-date-badge .day {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.event-date-badge .month {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-card-info {
  padding: var(--space-lg);
}

.event-card-info h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
  color: var(--green-dark);
}

.event-card-info .event-meta {
  display: flex;
  gap: var(--space-md);
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: var(--space-md);
}

.event-card-info p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.organizer-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 6px 14px;
  background: var(--green-pale);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--green-dark);
}

/* --------------------------------------------------------------------------
   17. About / Timeline
   -------------------------------------------------------------------------- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  margin-bottom: var(--space-3xl);
}

.about-intro img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.timeline {
  position: relative;
  padding-left: var(--space-3xl);
  margin-top: var(--space-2xl);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--green-light);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-2xl);
  padding-left: var(--space-xl);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-3xl) + 8px);
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green-mid);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--green-light);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: var(--space-xs);
}

.timeline-item h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  color: var(--green-dark);
}

.timeline-item p {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--green-dark);
  color: var(--white);
  padding: var(--space-3xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.footer-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: var(--space-sm);
}

.footer-brand .brand-sub {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: var(--space-md);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 0;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: var(--space-lg);
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-sm);
}

.footer-contact a {
  display: inline;
  padding: 0;
}

.footer-bottom {
  margin-top: var(--space-2xl);
  padding: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--white);
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-admin-link {
  opacity: 0.35;
  font-size: 0.75rem;
  transition: opacity 0.2s;
}

.footer-admin-link:hover {
  opacity: 0.7;
}

/* --------------------------------------------------------------------------
   19. Legal Pages (Impressum, Datenschutz)
   -------------------------------------------------------------------------- */
.legal-content {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg);
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  color: var(--green-dark);
}

.legal-content h3 {
  font-size: 1.2rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  color: var(--green-dark);
}

.legal-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: var(--space-md);
}

.legal-content ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.legal-content ul li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--grey);
  list-style: disc;
  margin-bottom: var(--space-xs);
}

.legal-content a {
  color: var(--green-light);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.legal-content a:hover {
  color: var(--green-dark);
}

/* --------------------------------------------------------------------------
   20. Camping Page Specific
   -------------------------------------------------------------------------- */
.camping-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.camping-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.camping-card-image {
  height: 200px;
  overflow: hidden;
}

.camping-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.camping-card-info {
  padding: var(--space-xl);
}

.camping-card-info h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
}

.camping-card-info .camping-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: var(--space-md);
}

.camping-card-info ul {
  margin-bottom: var(--space-md);
}

.camping-card-info ul li {
  font-size: 0.9rem;
  color: var(--grey);
  padding: 4px 0;
  padding-left: var(--space-lg);
  position: relative;
}

.camping-card-info ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   21. Miscellaneous Components
   -------------------------------------------------------------------------- */

/* Tags / Labels */
.tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

.tag-yellow {
  background: rgba(232, 184, 75, 0.15);
  color: var(--yellow-dark);
}

/* Divider */
.divider {
  width: 60px;
  height: 3px;
  background: var(--yellow);
  border-radius: var(--radius-full);
  margin: var(--space-md) 0;
}

.divider-center {
  margin-left: auto;
  margin-right: auto;
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-mid);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 100;
  box-shadow: var(--shadow-md);
}

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

.scroll-top:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

/* Info box */
.info-box {
  background: var(--green-pale);
  border-left: 4px solid var(--green-light);
  padding: var(--space-lg);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--space-lg) 0;
}

.info-box p {
  margin-bottom: 0;
  color: var(--green-dark);
  font-size: 0.95rem;
}

/* Map container */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Loading state */
.skeleton {
  background: linear-gradient(90deg, var(--light-grey) 25%, #e5e7eb 50%, var(--light-grey) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* --------------------------------------------------------------------------
   22. Animations
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in {
  animation: fadeIn 0.4s ease forwards;
}

/* --------------------------------------------------------------------------
   23. Responsive — Tablet (max-width: 1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }

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

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .acc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-content {
    grid-template-columns: 1fr 320px;
    gap: var(--space-xl);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .about-intro {
    gap: var(--space-2xl);
  }

  .stats-inner {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
  }

  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --------------------------------------------------------------------------
   24. Responsive — Mobile (max-width: 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.4rem; }

  .section {
    padding: var(--space-2xl) 0;
  }

  .container {
    padding: 0 var(--space-md);
  }

  /* Nav mobile */
  .nav-links {
    display: none;
  }

  .nav .btn-cta,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: block;
  }

  /* Hero mobile */
  .hero {
    background-attachment: scroll;
    height: 100vh;
    min-height: 500px;
  }

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

  .hero .subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .stat-value {
    font-size: 1.4rem;
  }

  /* Page hero mobile */
  .page-hero {
    height: 30vh;
    min-height: 220px;
    background-attachment: scroll;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  /* Gallery strip */
  .gallery-strip {
    flex-wrap: wrap;
  }

  .gallery-strip img {
    flex: 1 1 50%;
    height: 150px;
  }

  /* Gallery Grid */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img:first-child {
    grid-row: auto;
    min-height: 200px;
    max-height: 260px;
  }

  .gallery-grid img:nth-child(2),
  .gallery-grid img:nth-child(3) {
    height: 160px;
  }

  /* Erleben Section */
  .erleben-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-xl) !important;
  }

  .erleben-grid > div:has(img) {
    order: -1;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  /* Accommodations */
  .acc-grid {
    grid-template-columns: 1fr;
  }

  /* Detail page */
  .detail-content {
    grid-template-columns: 1fr;
  }

  .detail-gallery-main {
    height: 280px;
  }

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

  .booking-widget {
    position: static;
  }

  /* Booking */
  .booking-steps {
    flex-wrap: wrap;
    gap: var(--space-xs);
  }

  .step-divider {
    width: 20px;
  }

  .step-label {
    display: none;
  }

  .booking-card {
    padding: var(--space-lg);
  }

  .type-cards {
    grid-template-columns: 1fr;
  }

  .acc-select-grid {
    grid-template-columns: 1fr;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Events */
  .events-grid {
    grid-template-columns: 1fr;
  }

  /* About */
  .about-intro {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .timeline {
    padding-left: var(--space-2xl);
  }

  /* Kontakt page grid */
  .kontakt-grid {
    grid-template-columns: 1fr !important;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: var(--space-md);
  }

  .footer-legal {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }

  /* Price table */
  .price-table th,
  .price-table td {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.85rem;
  }

  /* Camping */
  .camping-types {
    grid-template-columns: 1fr;
  }

  /* Map */
  .map-container {
    height: 280px;
  }

  /* Section titles */
  .section-title {
    font-size: 1.75rem;
  }

  /* Summary table */
  .summary-table td {
    font-size: 0.85rem;
    padding: var(--space-sm) 0;
  }
}

/* --------------------------------------------------------------------------
   25. Event Filter Tabs & Ticket Modal
   -------------------------------------------------------------------------- */

/* Filter Tabs */
.event-filter-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.event-filter-tab {
  padding: 10px 24px;
  border: 2px solid var(--green-dark, #1E3A2F);
  background: transparent;
  color: var(--green-dark, #1E3A2F);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.event-filter-tab:hover {
  background: var(--green-pale, #EBF5EE);
}

.event-filter-tab.active {
  background: var(--green-dark, #1E3A2F);
  color: white;
}

/* Event Meta (date, time, location on cards) */
.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: var(--space-sm) 0;
  font-size: 0.85rem;
  color: var(--grey, #6B7280);
}

.event-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Ticket Button on Event Cards */
.btn-ticket {
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Ticket Modal Overlay
   -------------------------------------------------------------------------- */
.ticket-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  animation: ticketFadeIn 0.2s ease;
}

@keyframes ticketFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.ticket-modal-container {
  background: white;
  border-radius: 16px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  animation: ticketSlideUp 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.ticket-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ticket-modal-header h2 {
  margin: 0;
  font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
  font-size: 1.3rem;
  color: var(--dark, #1A1A1A);
}

.ticket-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--grey, #6B7280);
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
}

.ticket-modal-close:hover {
  color: var(--dark, #1A1A1A);
}

.ticket-modal-body {
  padding: 24px;
}

.ticket-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: var(--space-lg);
}

/* --------------------------------------------------------------------------
   Ticket Modal — Step Indicator
   -------------------------------------------------------------------------- */
.ticket-step-indicator {
  display: flex;
  gap: 8px;
  margin-bottom: var(--space-lg);
}

.ticket-step {
  flex: 1;
  text-align: center;
  padding: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  background: var(--warm-white, #F9F5EF);
  color: var(--grey, #6B7280);
  transition: all 0.3s ease;
}

.ticket-step.active {
  background: var(--green-dark, #1E3A2F);
  color: white;
}

.ticket-step.completed {
  background: var(--green-pale, #EBF5EE);
  color: var(--green-dark, #1E3A2F);
}

/* --------------------------------------------------------------------------
   Ticket Modal — Form Elements
   -------------------------------------------------------------------------- */
.ticket-form-group {
  margin-bottom: var(--space-md);
}

.ticket-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark, #1A1A1A);
  margin-bottom: 6px;
}

.ticket-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: white;
  box-sizing: border-box;
}

.ticket-input:focus {
  outline: none;
  border-color: var(--green-light, #4A8C6A);
  box-shadow: 0 0 0 3px rgba(74, 140, 106, 0.15);
}

textarea.ticket-input {
  resize: vertical;
  min-height: 60px;
}

.ticket-date-display {
  padding: 10px 14px;
  background: var(--green-pale, #EBF5EE);
  border-radius: 8px;
  font-weight: 600;
  color: var(--green-dark, #1E3A2F);
}

/* --------------------------------------------------------------------------
   Ticket Modal — Stepper Controls
   -------------------------------------------------------------------------- */
.ticket-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  overflow: hidden;
}

.ticket-stepper button {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--warm-white, #F9F5EF);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
  color: var(--dark, #1A1A1A);
}

.ticket-stepper button:hover {
  background: var(--green-pale, #EBF5EE);
}

.ticket-stepper button:active {
  background: var(--green-light, #4A8C6A);
  color: white;
}

.ticket-stepper span {
  min-width: 48px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark, #1A1A1A);
  padding: 0 8px;
}

/* --------------------------------------------------------------------------
   Ticket Modal — Price Summary
   -------------------------------------------------------------------------- */
.ticket-price-summary {
  background: var(--green-pale, #EBF5EE);
  border: 1px solid rgba(74, 140, 106, 0.2);
  border-radius: 12px;
  padding: 16px;
  margin-top: var(--space-md);
}

.ticket-price-line {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 0.9rem;
  color: var(--grey, #6B7280);
}

.ticket-price-total {
  display: flex;
  justify-content: space-between;
  padding: 8px 0 0;
  border-top: 1px solid rgba(74, 140, 106, 0.2);
  margin-top: 8px;
  font-size: 1.05rem;
}

.ticket-price-total strong {
  color: var(--green-dark, #1E3A2F);
  font-size: 1.2rem;
}

.ticket-capacity-info {
  text-align: center;
  font-size: 0.8rem;
  color: var(--grey, #6B7280);
  margin-top: var(--space-sm);
}

/* --------------------------------------------------------------------------
   Ticket Modal — Confirmation
   -------------------------------------------------------------------------- */
.ticket-confirmation {
  text-align: center;
}

.ticket-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-light, #4A8C6A);
  color: white;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.ticket-ref-box {
  background: var(--green-pale, #EBF5EE);
  border: 2px solid var(--green-light, #4A8C6A);
  border-radius: 12px;
  padding: 16px;
  margin: var(--space-md) 0;
}

.ticket-ref-label {
  display: block;
  font-size: 0.8rem;
  color: var(--grey, #6B7280);
  margin-bottom: 4px;
}

.ticket-ref-number {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark, #1E3A2F);
  font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
}

.ticket-payment-info {
  background: var(--warm-white, #F9F5EF);
  border-radius: 12px;
  padding: 16px;
  margin: var(--space-md) 0;
  text-align: left;
}

.ticket-payment-info h4 {
  margin: 0 0 8px;
  color: var(--green-dark, #1E3A2F);
  font-size: 0.95rem;
}

.ticket-payment-info p {
  margin: 4px 0;
  font-size: 0.9rem;
  color: var(--dark, #333);
}

.ticket-confirm-note {
  font-size: 0.85rem;
  color: var(--grey, #6B7280);
  margin-top: var(--space-md);
}

/* --------------------------------------------------------------------------
   Ticket Modal — Error
   -------------------------------------------------------------------------- */
.ticket-error {
  background: #fee2e2;
  color: #991b1b;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-top: var(--space-sm);
}

/* --------------------------------------------------------------------------
   Ticket Modal — Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .ticket-modal-container {
    max-width: 100%;
    max-height: 95vh;
    border-radius: 12px 12px 0 0;
    margin-top: auto;
  }

  .ticket-modal-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .event-filter-tabs {
    gap: 6px;
  }

  .event-filter-tab {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

/* --------------------------------------------------------------------------
   26. Print Styles
   -------------------------------------------------------------------------- */
@media print {
  .nav,
  .mobile-menu,
  .scroll-top,
  .btn-cta,
  .hero-buttons,
  .booking-widget .btn {
    display: none !important;
  }

  body {
    background: white;
    color: black;
    font-size: 12pt;
  }

  .hero,
  .page-hero {
    height: auto;
    min-height: auto;
    background: none;
    color: black;
    padding: 20pt 0;
  }

  .hero::before,
  .page-hero::before {
    display: none;
  }

  .hero h1,
  .page-hero h1 {
    color: black;
  }

  .footer {
    background: white;
    color: black;
  }
}

/* ==========================================================================
   PREMIUM EFFECTS — Subtle animations and visual enhancements
   ========================================================================== */

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Scroll Reveal Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll-Reveal deaktiviert — verursachte Sichtbarkeits-Probleme */
.reveal {
  opacity: 1;
  transform: none;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Enhanced Card Hover — Subtle lift with shadow */
.acc-card {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.acc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(30, 58, 47, 0.12);
}

/* Gallery Image Hover — Gentle zoom */
.gallery-grid img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Section Alt — Subtle gradient instead of flat color */
.section-alt {
  background: linear-gradient(180deg, var(--green-pale) 0%, var(--warm-white) 100%);
}

/* Organische Wellen-Trenner zwischen Sektionen */
.section::after {
  content: '';
  display: block;
  height: 40px;
  background: transparent;
  position: relative;
  bottom: -1px;
}

/* Hero parallax-like depth */
.page-hero,
.hero {
  background-attachment: scroll;
}

@media (max-width: 768px) {
  /* Disable parallax on mobile (performance) */
  .page-hero,
  .hero {
    background-attachment: scroll;
  }
}

/* Button hover enhancement */
.btn {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn:active {
  transform: translateY(0);
}

/* Feature cards — subtle entrance stagger */
.feature-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(30, 58, 47, 0.08);
}

/* Smooth image loading */
img {
  transition: opacity 0.3s ease;
}

/* Navigation — glassmorphism enhancement */
.nav {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Section title — elegant underline animation */
.section-title {
  position: relative;
}

/* Booking step indicator — smooth transition */
.booking-step {
  transition: all 0.3s ease;
}

/* Event cards — hover lift */
.event-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(30, 58, 47, 0.1);
}
