/* Nature-inspired Design System */
:root {
  /* Hauptfarben - Natur & Erde */
  --forest-green: #2d5016;
  --moss-green: #4a7c59;
  --sage-green: #6b8e5a;
  --saddle-brown: #8b4513;
  
  /* Akzentfarben - Wärme & Luxus */
  --terracotta: #cd853f;
  --copper: #b87333;
  --gold: #daa520;
  --beige: #f5f5dc;
  
  /* Neutrale Farben */
  --cream: #faf0e6;
  --stone-gray: #708090;
  --dark-slate: #2f4f4f;
  --pure-white: #ffffff;
  
  /* Legacy Apple-Variablen für Kompatibilität */
  --apple-white: var(--pure-white);
  --apple-gray-50: var(--cream);
  --apple-gray-100: #f0f0f0;
  --apple-gray-200: #e0e0e0;
  --apple-gray-300: #d0d0d0;
  --apple-gray-400: #c0c0c0;
  --apple-gray-500: #a0a0a0;
  --apple-gray-600: var(--stone-gray);
  --apple-gray-700: #505050;
  --apple-gray-800: #404040;
  --apple-gray-900: var(--dark-slate);
  
  /* Neue Akzentfarben */
  --apple-blue: var(--terracotta);
  --apple-green: var(--moss-green);
  --apple-orange: var(--gold);
  --apple-red: #d2691e;
  --apple-purple: var(--copper);
  
  /* Natur-Gradients */
  --apple-gradient: linear-gradient(135deg, #8b4513 0%, #4a7c59 100%);
  --apple-gradient-2: linear-gradient(135deg, #2d5016 0%, #6b8e5a 100%);
  --apple-gradient-3: linear-gradient(135deg, #cd853f 0%, #daa520 100%);
  
  /* Shadows */
  --apple-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --apple-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --apple-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --apple-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --apple-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Border Radius */
  --apple-radius-sm: 8px;
  --apple-radius: 12px;
  --apple-radius-md: 16px;
  --apple-radius-lg: 20px;
  --apple-radius-xl: 24px;
  --apple-radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark-slate);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--apple-gray-900);
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  text-align: center;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  text-align: center;
}

p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--apple-gray-600);
}

/* Container */
.jw-responsive {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
}

/* Media Query für 13-Zoll MacBooks und mittlere Bildschirme */
@media (max-width: 1024px) and (min-width: 769px) {
  .topbar .jw-responsive {
    padding: 0 1.5rem;
    height: 90px;
  }
  
  .logo {
    height: 80px !important;
  }
  
  .logo-text {
    font-size: 1rem !important;
  }
  
  .jw-menu-horizontal {
    gap: 1rem;
  }
  
  .jw-menu-horizontal a {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .btn, .jw-button, .jw-button-primary {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Spezifische Anpassungen für sehr kleine Bildschirme */
@media (max-width: 1200px) {
  .topbar .jw-responsive {
    flex-wrap: nowrap;
    min-height: 80px;
  }
  
  .logo-container {
    flex-shrink: 0;
    min-width: 200px;
  }
  
  .jw-menu-horizontal {
    flex-shrink: 1;
    min-width: 0;
  }
  
  .jw-menu-horizontal a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 768px) {
  .jw-responsive {
    padding: 0 1.5rem;
  }
  
  .topbar .jw-responsive {
    height: 100px;
    padding: 0 2rem;
  }
  
  .logo {
    height: 90px !important;
  }
  
  .logo-text {
    font-size: 1.1rem !important;
    display: block !important;
    white-space: nowrap;
    color: var(--pure-white) !important;
    font-weight: 700 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
  }
  
  .jw-menu-horizontal {
    position: fixed;
    top: 100px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 100px);
    background: rgba(45, 80, 22, 0.9) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem 0;
    gap: 1.5rem;
    transition: left 0.3s ease;
    z-index: 998;
    display: flex !important;
  }
  
  .jw-menu-horizontal.active {
    left: 0;
  }
  
  .jw-menu-link {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    width: 80%;
    text-align: center;
    border-bottom: 1px solid #4a7c59;
    color: #f5f5dc !important;
  }
  
  .jw-menu-link.btn {
    background: var(--terracotta);
    color: white !important;
    border-radius: 12px;
    margin-top: 1rem;
  }
  
  /* Language Switcher */
  .language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
    margin: 0 10px;
  z-index: 1001;
  flex: 0 0 auto;
  position: relative;
  }

/* Keep header menu on one line and centered */
.jw-menu-horizontal {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}

.language-switcher a {
  padding: 0;
  background: transparent;
  border-radius: 4px;
  text-decoration: none;
  color: var(--pure-white);
  font-size: 0;
  transition: all 0.3s ease;
  display: inline-flex;
  width: auto;
  height: auto;
  line-height: 0;
  overflow: visible;
  }

/* Individuelle Größen je Flagge (entfernt – Größe wird über img gesteuert) */

.language-switcher a:hover { background: transparent; }

.language-switcher a.active {
  background: transparent;
  transform: none; /* aktive Sprache nicht größer darstellen */
  outline: 1px solid rgba(255,255,255,0.35);
  outline-offset: 0;
}

/* Globe trigger */
.language-switcher .lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: var(--beige);
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
}

.language-switcher .lang-trigger:hover {
  background: rgba(255,255,255,0.08);
}

.language-switcher .globe-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
}

/* Dropdown */
.language-switcher .lang-menu {
  position: absolute;
  top: 110%;
  right: 0;
  background: rgba(45, 80, 22, 0.95);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  box-shadow: var(--apple-shadow-md);
  padding: 6px;
  display: none;
  min-width: 140px;
}

/* Text link style (Option 1) */
.language-switcher .lang-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  padding: 2px 8px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;
}

.language-switcher .lang-link:hover { background: rgba(255,255,255,0.16); }

.language-switcher .lang-link.active { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.28); }

/* Booking: pickup warning */
.pickup-warning {
  background: #fff3cd;
  border: 1px solid #ffeeba;
  color: #856404;
  padding: 10px 12px;
  border-radius: 8px;
  margin: 10px 0 0 0;
  font-size: 0.95rem;
}

.language-switcher .lang-menu a {
  display: block;
  color: var(--beige);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 0.9rem;
}

.language-switcher .lang-menu a:hover,
.language-switcher .lang-menu a.active {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

/* Exakte Größen pro Flagge */
/* per-flag overrides entfernt */

  .mobile-menu-btn {
    display: flex !important;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  
  .mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background: var(--beige);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero-image {
    object-position: 30% center;
  }
}

/* Header */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(45, 80, 22, 0.9) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--moss-green);
  transition: all 0.3s ease;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.topbar .jw-responsive {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  padding: 0 2rem;
  gap: 3rem;
}

.topbar .jw-responsive > div:first-child {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.025em;
}

.logo-text {
  color: var(--pure-white) !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
  white-space: nowrap;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  margin-right: 2rem;
}

.logo {
  height: 90px !important;
  width: auto;
}

.jw-menu-horizontal {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}

.jw-menu-link {
  color: var(--beige);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.2s ease;
  position: relative;
  padding: 0.5rem 0;
}

.jw-menu-link.btn {
  padding: 0.75rem 1.5rem;
  min-width: 140px;
  text-align: center;
  white-space: nowrap;
}

.jw-menu-link {
  white-space: nowrap;
}

.jw-menu-link:hover {
  color: var(--gold);
}

.jw-menu-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.jw-menu-link:hover::after {
  width: 100%;
}

/* Buttons */
.btn, .jw-button, .jw-button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--apple-radius-full);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary, .jw-button-primary {
  background: var(--terracotta);
  color: var(--pure-white);
  box-shadow: var(--apple-shadow-md);
}

.btn-primary:hover, .jw-button-primary:hover {
  background: var(--copper);
  transform: translateY(-2px);
  box-shadow: var(--apple-shadow-lg);
}

/* PayPal Button Styling */
#bookButton[style*="background: #0070ba"] {
  background: #0070ba !important;
  border: 2px solid #0070ba;
}

#bookButton[style*="background: #0070ba"]:hover {
  background: #005ea6 !important;
  border-color: #005ea6;
  transform: translateY(-2px);
}

#bookButton:disabled {
  background: var(--apple-gray-400) !important;
  border-color: var(--apple-gray-400);
  cursor: not-allowed;
  transform: none;
}

/* Über uns Seite Styles */
.pricing-hero {
  min-height: 50vh;
  padding: 4rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--beige) 0%, var(--cream) 100%);
}

.pricing-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-hero p {
  font-size: 1.3rem;
  color: var(--dark-slate);
  margin-bottom: 0;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
}

.about-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.about-intro h2 {
  color: var(--forest-green);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.about-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-slate);
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.features-section {
  margin-bottom: 4rem;
}

.features-section h2 {
  text-align: center;
  color: var(--forest-green);
  font-size: 2.2rem;
  margin-bottom: 3rem;
  font-weight: 600;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.card-like h3 {
  color: var(--forest-green);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: center;
}

.card-like p {
  color: var(--dark-slate);
  line-height: 1.7;
}

.why-choose-us {
  margin-bottom: 4rem;
}

.why-choose-us h2 {
  text-align: center;
  color: var(--forest-green);
  font-size: 2.2rem;
  margin-bottom: 3rem;
  font-weight: 600;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--pure-white);
  border-radius: var(--apple-radius-lg);
  border: 1px solid var(--sage-green);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(45, 80, 22, 0.1);
}

.benefit-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.benefit-content h3 {
  color: var(--forest-green);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  text-align: center;
}

.benefit-content p {
  color: var(--dark-slate);
  line-height: 1.7;
  margin: 0;
}

.cta-section {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--beige) 0%, var(--cream) 100%);
  border-radius: var(--apple-radius-lg);
  margin-top: 2rem;
}

.cta-section h2 {
  color: var(--forest-green);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--dark-slate);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  min-width: 180px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Equipment Section */
.equipment-section {
  margin-bottom: 4rem;
}

.equipment-section h2 {
  text-align: center;
  color: var(--forest-green);
  font-size: 2.2rem;
  margin-bottom: 3rem;
  font-weight: 600;
}

.equipment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.equipment-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--pure-white);
  border-radius: var(--apple-radius-lg);
  padding: 2rem;
  border: 1px solid var(--sage-green);
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.1);
}

.equipment-item:nth-child(even) {
  grid-template-columns: 1fr 1fr;
}

.equipment-item:nth-child(even) .equipment-image {
  order: 2;
}

.equipment-item:nth-child(even) .equipment-content {
  order: 1;
}

.equipment-content h3 {
  color: var(--forest-green);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: center;
}

.equipment-content p {
  color: var(--dark-slate);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.equipment-content ul {
  list-style: none;
  padding: 0;
}

.equipment-content li {
  color: var(--dark-slate);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.equipment-content li::before {
  content: "✓";
  color: var(--forest-green);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Mobile Responsive für Über uns */
@media (max-width: 768px) {
  .about-intro h2 {
    font-size: 2rem;
  }
  
  .features-section h2,
  .why-choose-us h2,
  .cta-section h2,
  .equipment-section h2 {
    font-size: 1.8rem;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .benefit-icon {
    margin-top: 0;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .equipment-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .equipment-item:nth-child(even) {
    grid-template-columns: 1fr;
  }
  
  .equipment-item:nth-child(even) .equipment-image {
    order: 1;
  }
  
  .equipment-item:nth-child(even) .equipment-content {
    order: 2;
  }
}

.btn-secondary {
  background: var(--apple-white);
  color: var(--apple-gray-700);
  border: 1px solid var(--apple-gray-300);
}

.btn-secondary:hover {
  background: var(--apple-gray-50);
  border-color: var(--apple-gray-400);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.7) 0%, rgba(139, 69, 19, 0.6) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--apple-gray-900);
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  color: var(--pure-white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--beige);
  margin-bottom: 2rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Cards */
.card-like, .jw-element {
  background: var(--pure-white);
  border-radius: var(--apple-radius-lg);
  padding: 2rem;
  box-shadow: var(--apple-shadow);
  border: 1px solid var(--sage-green);
  transition: all 0.3s ease;
}

.card-like:hover, .jw-element:hover {
  transform: translateY(-4px);
  box-shadow: var(--apple-shadow-lg);
}

/* Sections */
.jw-section-content {
  padding: 6rem 0;
  position: relative;
}

.jw-section-content:nth-child(even) {
  background: var(--beige);
}

/* Grid Layouts */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Images */
img {
  border-radius: var(--apple-radius);
  box-shadow: var(--apple-shadow-md);
  transition: transform 0.3s ease;
}

img:hover {
  transform: scale(1.02);
}

/* FAQ */
details {
  background: var(--pure-white);
  border: 1px solid var(--sage-green);
  border-radius: var(--apple-radius);
  padding: 0;
  margin-bottom: 1rem;
  box-shadow: var(--apple-shadow-sm);
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  outline: none;
}

details:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(205, 133, 63, 0.1);
}

details:hover {
  box-shadow: var(--apple-shadow);
  border-color: var(--terracotta);
}

summary {
  font-weight: 600;
  color: var(--forest-green);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 1.5rem;
  padding-right: 3rem;
  margin: 0;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  outline: none;
}

summary:focus {
  outline: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::-moz-list-bullet {
  list-style-type: none;
}

summary::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--apple-blue);
  transition: transform 0.3s ease;
  font-weight: 300;
}

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

details[open] {
  border-color: var(--apple-blue);
}

details p {
  padding: 0 1.5rem 1.5rem 1.5rem;
  margin: 0;
  color: var(--dark-slate);
  line-height: 1.6;
}

/* Contact Dock */
.contact-dock {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
}

.dock-btn {
  width: 60px;
  height: 60px;
  border-radius: var(--apple-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--apple-blue);
  color: var(--apple-white);
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: var(--apple-shadow-lg);
  transition: all 0.3s ease;
}

.dock-btn:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: var(--apple-shadow-xl);
}

.dock-btn.whatsapp {
  background: #25d366;
}

.dock-btn.phone {
  background: var(--apple-green);
}

.dock-btn.email {
  background: var(--apple-orange);
}

/* Booking Calendar */
.booking-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.time-slots-section {
  min-height: 600px;
  display: flex;
  flex-direction: column;
  padding: 2rem 0;
}

.booking-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}

.time-slots {
  margin-bottom: 2rem !important;
}

.time-slots h4 {
  margin-bottom: 1.5rem !important;
}

.booking-form h4 {
  margin-bottom: 1.5rem !important;
}

.calendar-section, .time-slots-section {
  background: var(--apple-white);
  border-radius: var(--apple-radius-lg);
  padding: 2rem;
  box-shadow: var(--apple-shadow);
  border: 1px solid var(--apple-gray-200);
}

.calendar-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .calendar-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.calendar-header h3 {
  margin: 0;
  color: var(--apple-gray-900);
}

.nav-btn {
  background: var(--apple-blue);
  border: none;
  border-radius: var(--apple-radius);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--apple-white);
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: #0056cc;
  transform: scale(1.1);
}

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

.calendar-day-header {
  text-align: center;
  padding: 1rem 0.5rem;
  font-weight: 600;
  color: var(--apple-gray-500);
  font-size: 0.875rem;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--apple-radius);
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.calendar-day.available {
  background: var(--apple-gray-50);
  color: var(--apple-gray-700);
}

.calendar-day.available:hover {
  background: var(--apple-blue);
  color: var(--apple-white);
  transform: scale(1.05);
}

.calendar-day.selected {
  background: var(--apple-blue);
  color: var(--apple-white);
  border-color: #0056cc;
  font-weight: 600;
}

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

.calendar-day.disabled {
  background: var(--apple-gray-100);
  color: var(--apple-gray-400);
  cursor: not-allowed;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: linear-gradient(135deg, var(--apple-gray-50) 0%, var(--apple-white) 100%);
  border-radius: 16px;
  border: 1px solid var(--apple-gray-200);
}

.time-slot {
  background: linear-gradient(135deg, var(--apple-gray-50) 0%, var(--apple-white) 100%);
  border: 2px solid var(--apple-gray-300);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--apple-gray-700);
  box-shadow: var(--apple-shadow-sm);
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.time-slot::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s;
}

.time-slot:hover::before {
  left: 100%;
}

.time-slot:hover {
  border-color: var(--apple-blue);
  background: linear-gradient(135deg, var(--apple-blue) 0%, #0056cc 100%);
  color: var(--apple-white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--apple-shadow-lg);
}

.time-slot.selected {
  background: linear-gradient(135deg, var(--apple-blue) 0%, #0056cc 100%);
  border-color: var(--apple-blue);
  color: var(--apple-white);
  font-weight: 700;
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--apple-shadow-lg);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(205, 133, 63, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(205, 133, 63, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(205, 133, 63, 0);
  }
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group small {
  color: var(--apple-gray-600);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

.extras-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

.extra-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--apple-gray-50);
  border-radius: var(--apple-radius);
  border: 1px solid var(--apple-gray-200);
  cursor: pointer;
  transition: all 0.2s ease;
}

.extra-item:hover {
  background: var(--apple-gray-100);
  border-color: var(--apple-blue);
}

.extra-item input[type="number"] {
  width: 60px;
  padding: 0.5rem;
  border: 1px solid var(--apple-gray-300);
  border-radius: var(--apple-radius-sm);
  text-align: center;
  font-weight: 600;
}

.extra-item span {
  flex: 1;
  font-weight: 500;
  color: var(--apple-gray-700);
}

.price-summary {
  background: var(--apple-gray-50);
  border: 1px solid var(--apple-gray-200);
  border-radius: var(--apple-radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.price-summary h5 {
  margin: 0 0 1rem 0;
  color: var(--apple-gray-900);
  font-size: 1.1rem;
}

.price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--apple-gray-200);
}

.price-item:last-child {
  border-bottom: none;
}

.price-item.total {
  border-top: 2px solid var(--apple-blue);
  border-bottom: 2px solid var(--apple-blue);
  padding: 1rem 0;
  margin: 0.5rem 0;
  background: var(--apple-gray-100);
  border-radius: var(--apple-radius-sm);
  padding-left: 1rem;
  padding-right: 1rem;
}

.price-item span:last-child {
  font-weight: 600;
  color: var(--apple-gray-900);
}

.price-item.total span:last-child {
  color: var(--apple-blue);
  font-size: 1.1rem;
}

.delivery-notice {
  background: #fff3cd;
  border: 2px solid #ffc107;
  border-radius: var(--apple-radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
  position: relative;
}

.delivery-notice::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffc107, #ff8c00, #ffc107);
}

.notice-content h5 {
  margin: 0 0 1rem 0;
  color: #856404;
  font-size: 1.1rem;
  font-weight: 600;
}

.notice-content p {
  margin: 0 0 1rem 0;
  color: #856404;
  line-height: 1.5;
}

.notice-content p:last-child {
  margin-bottom: 0;
  font-weight: 500;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--apple-gray-900);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--apple-gray-200);
  border-radius: var(--apple-radius);
  font-size: 1rem;
  background: var(--apple-white);
  color: var(--apple-gray-900);
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2rem;
  padding-right: 3rem;
  cursor: pointer;
}

.form-group select:hover {
  border-color: var(--apple-blue);
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--apple-blue);
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

/* Admin Panel */
#adminPanel {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

#adminLogin, #adminDashboard > div {
  background: var(--apple-white);
  border-radius: var(--apple-radius-lg);
  box-shadow: var(--apple-shadow-xl);
  border: 1px solid var(--apple-gray-200);
}

/* Footer */
footer, .jw-footer {
  background: var(--forest-green);
  color: var(--beige);
  padding: 3rem 0;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .booking-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
    width: 80% !important;
    max-width: 250px !important;
    margin: 0 auto !important;
  }
  
  .jw-menu-horizontal {
    display: none;
  }
  
  .contact-dock {
    right: 1rem;
    bottom: 1rem;
  }
  
  .dock-btn {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

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

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

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

/* Focus styles */
*:focus {
  outline: 2px solid var(--apple-blue);
  outline-offset: 2px;
}

/* Selection */
::selection {
  background: var(--apple-blue);
  color: var(--apple-white);
}

/* Mobile Hamburger Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
  order: 2;
  margin-left: auto;
}

.hamburger {
  width: 25px;
  height: 3px;
  background-color: var(--terracotta);
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
  position: relative;
  display: block;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 3px;
  background-color: var(--terracotta);
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger::before {
  transform: translateY(-8px);
}

.hamburger::after {
  transform: translateY(8px);
}

/* Hamburger Animation */
.mobile-menu-toggle.active .hamburger {
  background-color: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
  transform: translateY(0) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
  transform: translateY(0) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(45, 80, 22, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-header h3 {
  color: var(--pure-white);
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--pure-white);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: var(--terracotta);
}

.mobile-menu-content {
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-content .jw-menu-link {
  display: block;
  color: var(--pure-white);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-menu-content .jw-menu-link:hover {
  color: var(--terracotta);
  transform: translateX(10px);
}

.mobile-menu-content .jw-menu-link.active {
  color: var(--terracotta);
  font-weight: 700;
}

.mobile-menu-content .btn {
  margin-top: 2rem;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  border-radius: 50px;
  background: var(--terracotta);
  color: var(--pure-white);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(205, 133, 63, 0.3);
}

.mobile-menu-content .btn:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(218, 165, 32, 0.4);
}

/* Mobile Language Switcher */
.language-switcher-mobile {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.language-switcher-mobile h4 {
  color: var(--pure-white);
  margin: 0 0 1rem 0;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
}

.language-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}

.lang-btn {
  display: block;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--pure-white);
  text-decoration: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 200px;
  text-align: center;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  border-color: var(--terracotta);
}

.lang-btn.active {
  background: var(--terracotta);
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(205, 133, 63, 0.4);
}

.mobile-book-btn {
  margin-top: 1rem !important;
  font-size: 1.3rem !important;
  padding: 1.2rem 2.5rem !important;
  font-weight: 600 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }
  
  .topbar {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  
  .topbar .jw-responsive {
    width: 100% !important;
    max-width: 100vw !important;
    padding: 0 1rem !important;
    justify-content: space-between !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    min-height: 80px !important;
  }
  
  .logo-container {
    flex-shrink: 0 !important;
    min-width: 150px !important;
  }
  
  .jw-menu-horizontal {
    flex-shrink: 1 !important;
    min-width: 0 !important;
    gap: 0.5rem !important;
  }
  
  .jw-menu-horizontal a {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.85rem !important;
    white-space: nowrap !important;
  }
  
  .mobile-menu-toggle {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-width: 40px !important;
    min-height: 40px !important;
    flex-shrink: 0 !important;
  }
  
  .jw-menu-horizontal {
    display: none !important;
  }
  
  .logo-container {
    flex-shrink: 1 !important;
    min-width: 0 !important;
  }
  
  .logo-text {
    font-size: 0.9rem !important;
  }
}

/* Tablet Optimierung */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Mobile Menu für Tablets aktivieren */
  .mobile-menu-toggle {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .jw-menu-horizontal {
    display: none !important;
  }
  
  /* Header für Tablets */
  .topbar .jw-responsive {
    height: 85px;
    padding: 0 1.5rem;
  }
  
  .logo {
    height: 75px !important;
  }
  
  .logo-text {
    font-size: 1rem !important;
  }
  
  .btn, .jw-button, .jw-button-primary {
    padding: 0.8rem 1.6rem;
    font-size: 0.95rem;
  }
  
  /* Hero Section für Tablets */
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    gap: 0.8rem;
  }
  
  .hero-buttons .btn {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  }
  
  /* Booking Container für Tablets */
  .booking-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .calendar-section, .time-slots-section, .booking-form {
    padding: 1.5rem;
  }
  
  .calendar-header h3,
  .time-slots h4,
  .booking-form h4 {
    font-size: 1.2rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 1rem;
    padding: 0.8rem;
  }
  
  .time-slot {
    padding: 1.2rem 0.8rem;
    font-size: 1rem;
    min-height: 55px;
  }
  
  .time-slots {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    padding: 0.8rem;
  }
  
  /* Cards und Sections */
  .card-like, .jw-element {
    padding: 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  /* Typography für Tablets */
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  h3 {
    font-size: 1.6rem;
  }
  
  p {
    font-size: 1.1rem;
  }
}

/* Lieferkosten-Anzeige */
.delivery-notice {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
}

/* Wasser-Hinweis */
.water-warning {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border: 2px solid #2196f3;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1rem 0;
  box-shadow: var(--apple-shadow-sm);
}

.warning-content h5 {
  color: #1976d2;
  margin: 0 0 0.75rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.warning-content p {
  margin: 0.5rem 0;
  color: #1565c0;
  font-size: 0.95rem;
  font-weight: 500;
}

.warning-content ul {
  color: #1565c0;
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.warning-content strong {
  color: #0d47a1;
  font-weight: 700;
}

.notice-content h5 {
  color: var(--apple-blue);
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}

.notice-content p {
  margin: 0.5rem 0;
  color: var(--apple-gray-700);
  font-size: 0.95rem;
}

.notice-content ul {
  color: var(--apple-gray-600);
  font-size: 0.9rem;
}

.notice-content strong {
  color: var(--apple-blue);
}

@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Desktop Full-HD/4K Scaling */
@media (min-width: 1440px) {
  html {
    font-size: 17px;
  }
  .jw-responsive {
    max-width: 1400px;
  }
  .jw-menu-link {
    font-size: 1.15rem;
  }
  .btn, .jw-button, .jw-button-primary {
    padding: 1.1rem 2.2rem;
    font-size: 1.05rem;
  }
  .hero-content {
    max-width: 900px;
  }
}

@media (min-width: 1920px) {
  html {
    font-size: 18px;
  }
  .jw-responsive {
    max-width: 1600px;
  }
  .logo {
    height: 100px !important;
  }
  .jw-menu-link {
    font-size: 1.2rem;
  }
  .btn, .jw-button, .jw-button-primary {
    padding: 1.2rem 2.4rem;
    font-size: 1.1rem;
  }
  .hero-content {
    max-width: 1000px;
  }
  /* Booking section fine-tuning for large desktops */
  .booking-container {
    gap: 2rem;
    grid-template-columns: 1.1fr 0.9fr;
  }
  .calendar-section, .time-slots-section, .booking-form {
    padding: 1.5rem;
  }
  .calendar-header h3,
  .time-slots h4,
  .booking-form h4 {
    font-size: 1.25rem;
  }
  .form-group label {
    font-size: 0.95rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.95rem;
    padding: 0.75rem;
  }
  .time-slot {
    padding: 1.1rem 0.8rem;
    font-size: 1.05rem;
    min-height: 58px;
  }
  
  .time-slots {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 1.1rem;
    padding: 0.9rem;
  }
  .price-summary {
    padding: 1.25rem;
  }
  .price-item.total span:last-child {
    font-size: 1rem;
  }
  .booking-container .btn,
  .booking-container .jw-button,
  .booking-container .jw-button-primary {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  }
}