/* ============================================
   SC SERVICE - KFZ Werkstatt Website
   Modern Industrial Design mit Wörthersee-Flair
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* Primary Colors - Industrial Dark */
  --color-dark: #0d1117;
  --color-darker: #010409;
  --color-surface: #161b22;
  --color-surface-light: #21262d;
  --color-border: #30363d;
  
  /* Accent Colors - Wörthersee Inspired */
  --color-primary: #00b4d8;
  --color-primary-dark: #0096c7;
  --color-primary-light: #48cae4;
  --color-primary-glow: rgba(0, 180, 216, 0.3);
  
  /* Secondary - Action Orange */
  --color-accent: #f77f00;
  --color-accent-dark: #e07000;
  --color-accent-light: #ff9933;
  
  /* Text Colors */
  --color-text: #f0f6fc;
  --color-text-muted: #8b949e;
  --color-text-subtle: #6e7681;
  
  /* Success/Warning/Error */
  --color-success: #3fb950;
  --color-warning: #d29922;
  --color-error: #f85149;
  
  /* Typography */
  --font-heading: 'Rajdhani', 'Arial Black', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px var(--color-primary-glow);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  
  /* Container */
  --container-width: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--color-dark);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  max-width: 100vw;
}

/* Prevent horizontal overflow globally */
html {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Workshop Pattern - CSS Variable for reuse */
:root {
  --pattern-workshop: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cdefs%3E%3Cstyle%3E.tool%7Bfill:none;stroke:%2300b4d8;stroke-width:1.2;%7D%3C/style%3E%3C/defs%3E%3Cpath class='tool' d='M20 12 L16 16 L16 22 L10 28 L14 32 L20 26 L26 26 L30 22 L26 18 L26 12 L20 12'/%3E%3Ccircle class='tool' cx='90' cy='30' r='12'/%3E%3Ccircle class='tool' cx='90' cy='30' r='6'/%3E%3Cpath class='tool' d='M90 16 L90 19 M90 41 L90 44 M76 30 L79 30 M101 30 L104 30 M80 20 L82 22 M98 38 L100 40 M80 40 L82 38 M98 22 L100 20'/%3E%3Cpolygon class='tool' points='30,85 38,80 46,85 46,95 38,100 30,95'/%3E%3Ccircle class='tool' cx='38' cy='90' r='4'/%3E%3Ccircle class='tool' cx='90' cy='90' r='16'/%3E%3Ccircle class='tool' cx='90' cy='90' r='10'/%3E%3Ccircle class='tool' cx='90' cy='90' r='3'/%3E%3Cpath class='tool' d='M90 77 L90 80 M90 100 L90 103 M77 90 L80 90 M100 90 L103 90'/%3E%3C/svg%3E");
}

/* Mixin for workshop pattern overlay */
.pattern-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--pattern-workshop);
  background-size: 180px 180px;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.pattern-overlay > * {
  position: relative;
  z-index: 1;
}

/* Decorative accent lines */
.section-accent {
  position: relative;
}

.section-accent::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  border-radius: 2px;
}

/* Diagonal stripe decoration for headers */
.diagonal-accent {
  position: relative;
  overflow: hidden;
}

.diagonal-accent::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 200px;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(0, 180, 216, 0.03) 10px,
    rgba(0, 180, 216, 0.03) 20px
  );
  pointer-events: none;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-light);
}

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

ul, ol {
  list-style: none;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.section-title {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
}

.section-title h2 {
  display: inline-block;
  position: relative;
  padding-bottom: var(--space-md);
  text-shadow: 0 0 60px rgba(0, 180, 216, 0.2);
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 2px;
}

.section-title p {
  color: var(--color-text-muted);
  font-size: 1.125rem;
  margin-top: var(--space-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-darker);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 30px var(--color-primary-glow);
  color: var(--color-darker);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-text);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: white;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(247, 127, 0, 0.3);
  color: white;
}

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: all var(--transition-base);
}

.header.scrolled {
  height: 70px;
  box-shadow: var(--shadow-lg);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.logo img {
  height: 50px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.05em;
}

.logo-text span {
  color: var(--color-primary);
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links {
  display: flex;
  gap: var(--space-lg);
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--space-sm) 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-base);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--transition-base);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--header-height);
  /* Fallback background wenn keine Bilder geladen werden */
  background: linear-gradient(135deg, var(--color-darker) 0%, var(--color-surface) 50%, var(--color-dark) 100%);
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Verstecke broken image icons und alt-text */
.hero-slide-img {
  background: var(--color-darker);
}

.hero-slide-img:not([src]),
.hero-slide-img[src=""],
.hero-slide-img[src*="undefined"] {
  visibility: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}

/* Responsive Hero Images */
.hero-slide-picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.35);
}

/* Wave Overlay - Wörthersee Reference */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%230d1117' d='M0,160L48,144C96,128,192,96,288,106.7C384,117,480,171,576,181.3C672,192,768,160,864,149.3C960,139,1056,149,1152,165.3C1248,181,1344,203,1392,213.3L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: var(--space-2xl);
}

.hero-content h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: var(--space-md);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-content h1 span {
  color: var(--color-primary);
  text-shadow: 0 0 40px var(--color-primary-glow);
}

.hero-content p {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 180px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0; /* Kein Gap nötig, Touch-Targets (48px) haben genug Abstand */
  z-index: 10;
}

.slider-dot {
  /* Touch-Target mindestens 48x48px für Barrierefreiheit */
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* Visueller Punkt (klein, aber großer Touch-Bereich) */
.slider-dot::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-border);
  transition: all var(--transition-base);
}

.slider-dot:hover::before,
.slider-dot:focus::before {
  background: var(--color-text-muted);
  transform: scale(1.2);
}

.slider-dot.active::before {
  background: var(--color-primary);
  box-shadow: 0 0 10px var(--color-primary-glow);
}

.slider-dot:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ---------- Services Section ---------- */
.services {
  padding: var(--space-3xl) 0;
  background: var(--color-darker);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--pattern-workshop);
  background-size: 180px 180px;
  opacity: 0.06;
  pointer-events: none;
}

.services > * {
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-surface-light), var(--color-surface));
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  font-size: 2rem;
  color: var(--color-primary);
  transition: all var(--transition-base);
}

.service-card:hover .service-icon {
  background: var(--color-primary);
  color: var(--color-darker);
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Service Card mit Bild */
.service-card .service-image {
  position: relative;
  width: calc(100% + var(--space-xl) * 2);
  height: 180px;
  margin: calc(var(--space-xl) * -1);
  margin-bottom: var(--space-lg);
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

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

.service-card:hover .service-image img {
  transform: scale(1.1);
}

/* ---------- Promotions Section ---------- */
.promotions {
  padding: var(--space-3xl) 0;
  background: var(--color-dark);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
}

/* Promo Slider */
.promo-slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.promo-slider {
  position: relative;
  overflow: hidden;
}

.promo-slider .promo-card {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.promo-slider .promo-card.active {
  display: block;
  opacity: 1;
}

.promo-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.promo-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.promo-nav-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(0, 180, 216, 0.1);
}

.promo-dots {
  display: flex;
  gap: 0; /* Kein Gap nötig, Touch-Targets überlappen nicht */
}

.promo-dot {
  /* Touch-Target mindestens 48x48px für Barrierefreiheit */
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* Visueller Punkt */
.promo-dot::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-border);
  transition: all var(--transition-base);
}

.promo-dot:hover::before,
.promo-dot:focus::before {
  background: var(--color-text-muted);
  transform: scale(1.2);
}

.promo-dot.active::before {
  background: var(--color-primary);
  transform: scale(1.2);
}

.promo-dot:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Hide slider nav if only one promo */
.promo-slider-container.single-promo .promo-slider-nav {
  display: none;
}

.promo-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

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

.promo-image {
  position: relative;
  height: 350px;
  overflow: hidden;
}

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

.promo-card:hover .promo-image img {
  transform: scale(1.1);
}

.promo-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--color-accent);
  color: white;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.promo-content {
  padding: var(--space-xl);
}

.promo-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
}

.promo-content .subtitle {
  color: var(--color-primary);
  font-size: 1rem;
  margin-bottom: var(--space-md);
}

.promo-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.promo-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
}

/* ---------- About Section ---------- */
.about {
  padding: var(--space-3xl) 0;
  background: var(--color-darker);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--color-primary);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.about-content h2 {
  margin-bottom: var(--space-md);
}

.about-content .subtitle {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
}

.about-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.highlight-item i {
  color: var(--color-success);
  font-size: 1.25rem;
}

/* ---------- Why Us Section ---------- */
.why-us {
  padding: var(--space-3xl) 0;
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--pattern-workshop);
  background-size: 200px 200px;
  opacity: 0.05;
  pointer-events: none;
}

.why-us > * {
  position: relative;
  z-index: 1;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

@media (min-width: 1200px) {
  .why-us-grid {
    grid-template-columns: repeat(4, 1fr); /* Alle 4 nebeneinander auf großen Screens */
  }
}

@media (max-width: 768px) {
  .why-us-grid {
    grid-template-columns: 1fr; /* 1 Spalte auf Mobile */
  }
}

.why-us-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition-base);
}

.why-us-item:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.why-us-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: 50%;
  font-size: 1.75rem;
  color: var(--color-darker);
}

.why-us-item h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.why-us-item p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- FAQ Section ---------- */
.faq {
  padding: var(--space-3xl) 0;
  background: var(--color-darker);
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--pattern-workshop);
  background-size: 160px 160px;
  opacity: 0.04;
  pointer-events: none;
}

.faq > * {
  position: relative;
  z-index: 1;
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

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

.faq-question {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  transition: all var(--transition-base);
}

.faq-question i {
  color: var(--color-primary);
  font-size: 0.9rem;
  transition: transform var(--transition-base);
}

.faq-item.open .faq-question i {
  transform: rotate(90deg);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 var(--space-lg) var(--space-lg);
}

.faq-answer p {
  color: var(--color-text-muted);
  line-height: 1.8;
  padding-left: calc(var(--space-md) + 0.9rem + var(--space-md));
}

/* ---------- Contact Section ---------- */
.contact {
  padding: var(--space-3xl) 0;
  background: var(--color-dark);
}

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

.contact-info h3 {
  margin-bottom: var(--space-xl);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.contact-item:hover {
  border-color: var(--color-primary);
  transform: translateX(10px);
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-darker);
  border-radius: var(--radius-md);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item-content h4 {
  font-size: 1rem;
  text-transform: none;
  margin-bottom: var(--space-xs);
}

.contact-item-content p,
.contact-item-content a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.contact-item-content a:hover {
  color: var(--color-primary);
}

/* Quick Actions */
.contact-actions {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.contact-actions .btn {
  flex: 1;
  min-width: 150px;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background: #128C7E;
  color: white;
}

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

/* Opening Hours */
.opening-hours {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--color-border);
}

.opening-hours h4 {
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.opening-hours h4 i {
  color: var(--color-primary);
}

.hours-list {
  margin-bottom: var(--space-lg);
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

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

.hours-item .day {
  color: var(--color-text-muted);
}

.hours-item .time {
  font-family: var(--font-mono);
  color: var(--color-primary);
}

.hours-note {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-style: italic;
}

/* Map */
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  height: 100%;
  min-height: 450px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: none;
  filter: grayscale(80%) invert(90%) contrast(90%);
}

/* ---------- Floating WhatsApp Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 95px; /* Mehr Abstand zum Scroll-to-Top Button */
  right: 25px;
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9997;
  transition: all var(--transition-base);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:focus {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
}

.whatsapp-float::before {
  content: 'WhatsApp';
  position: absolute;
  right: 70px;
  background: var(--color-surface);
  color: var(--color-text);
  padding: 8px 15px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-family: var(--font-body);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.whatsapp-float:hover::before {
  opacity: 1;
  visibility: visible;
}

/* Pulse Animation */
.whatsapp-float::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 80px; /* Genau über dem Scroll-to-Top Button */
    right: 15px;
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }
  
  .whatsapp-float::before {
    display: none;
  }
  
  .whatsapp-float::after {
    display: none; /* Pulse-Animation auf Mobile aus */
  }
}

/* ---------- Accessibility (A11y) ---------- */
/* Skip Link - nur bei Fokus sichtbar */
.skip-link {
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-darker);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  z-index: 10000;
  transition: top 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.skip-link:focus {
  top: 10px;
  opacity: 1;
  pointer-events: auto;
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

/* ---------- Accessibility Widget ---------- */
.a11y-widget {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9997;
}

.a11y-toggle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.a11y-toggle:hover {
  background: var(--color-primary);
  color: var(--color-darker);
  transform: scale(1.1);
}

.a11y-panel {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 280px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.a11y-widget.open .a11y-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.a11y-header {
  background: var(--color-primary);
  color: var(--color-darker);
  padding: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.a11y-header i {
  font-size: 1.2rem;
}

.a11y-options {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.a11y-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: var(--color-dark);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.a11y-option:hover {
  border-color: var(--color-primary);
}

.a11y-option.active {
  background: rgba(0, 180, 216, 0.15);
  border-color: var(--color-primary);
}

.a11y-option-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.a11y-option-label i {
  color: var(--color-primary);
  width: 20px;
  text-align: center;
}

.a11y-option-toggle {
  width: 40px;
  height: 22px;
  background: var(--color-border);
  border-radius: 11px;
  position: relative;
  transition: all var(--transition-base);
}

.a11y-option-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  transition: all var(--transition-base);
}

.a11y-option.active .a11y-option-toggle {
  background: var(--color-primary);
}

.a11y-option.active .a11y-option-toggle::after {
  left: 21px;
}

.a11y-fontsize {
  display: flex;
  align-items: center;
  gap: 8px;
}

.a11y-fontsize button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-border);
  background: var(--color-dark);
  color: var(--color-text);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--transition-base);
}

.a11y-fontsize button:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.a11y-fontsize span {
  min-width: 45px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.a11y-reset {
  margin-top: 5px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.85rem;
  transition: all var(--transition-base);
  width: 100%;
}

.a11y-reset:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* A11y Active States */
body.a11y-high-contrast {
  --color-dark: #000000;
  --color-darker: #000000;
  --color-surface: #1a1a1a;
  --color-text: #ffffff;
  --color-text-muted: #e0e0e0;
  --color-primary: #00ffff;
  --color-accent: #ffff00;
}

body.a11y-high-contrast * {
  border-color: #ffffff !important;
}

body.a11y-large-cursor * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath fill='%2300b4d8' d='M8 2 L8 28 L14 22 L20 32 L24 30 L18 20 L26 20 Z'/%3E%3Cpath fill='white' d='M10 6 L10 24 L14 20 L18 28 L20 27 L16 19 L22 19 Z'/%3E%3C/svg%3E") 0 0, auto !important;
}

body.a11y-highlight-links a {
  outline: 3px solid var(--color-accent) !important;
  outline-offset: 2px !important;
  background: rgba(247, 127, 0, 0.2) !important;
}

body.a11y-readable-font {
  font-family: Arial, Helvetica, sans-serif !important;
}

body.a11y-readable-font * {
  font-family: Arial, Helvetica, sans-serif !important;
  letter-spacing: 0.5px !important;
  word-spacing: 2px !important;
}

body.a11y-line-height * {
  line-height: 2 !important;
}

body.a11y-no-animations *,
body.a11y-no-animations *::before,
body.a11y-no-animations *::after {
  animation: none !important;
  transition: none !important;
}

@media (max-width: 768px) {
  .a11y-widget {
    left: 15px;
    bottom: 15px;
  }
  
  .a11y-toggle {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }
  
  .a11y-panel {
    width: 260px;
    left: 0;
  }
}

/* Focus Visible Styles */
*:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
}

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

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .whatsapp-float::after {
    animation: none;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --color-primary: #00ffff;
    --color-accent: #ff8800;
    --color-text: #ffffff;
    --color-text-muted: #cccccc;
  }
  
  .btn {
    border: 2px solid currentColor;
  }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-darker);
  border-top: 1px solid var(--color-border);
  padding: var(--space-3xl) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--pattern-workshop);
  background-size: 150px 150px;
  opacity: 0.03;
  pointer-events: none;
}

.footer > * {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
  max-width: 100%;
  overflow: hidden;
}

.footer-brand .logo {
  margin-bottom: var(--space-lg);
}

.footer-brand p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-darker);
  transform: translateY(-3px);
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.footer-column ul li {
  margin-bottom: var(--space-sm);
}

.footer-column ul li a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.footer-column ul li a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

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

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--space-lg);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform var(--transition-base);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text h4 {
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}

.cookie-text p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.cookie-text a {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.9rem;
}

/* ---------- Scroll to Top ---------- */
.scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: var(--color-darker);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 9996;
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

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

.scroll-top:hover {
  transform: translateY(-5px);
  background: var(--color-primary-light);
}

/* Mobile: Buttons genau übereinander rechts */
@media (max-width: 768px) {
  .scroll-top {
    bottom: 15px;
    right: 15px;
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
  }
}

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

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

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

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

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

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
  
  .footer-brand {
    grid-column: 1 / -1; /* Volle Breite auf Tablet */
    text-align: center;
    margin-bottom: var(--space-lg);
  }
  
  .footer-brand .logo {
    justify-content: center;
  }
}

/* Mobile Menu - Default: Hidden on all screens */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background: var(--color-surface);
  padding: var(--space-xl);
  transform: translateX(-100%);
  transition: transform var(--transition-base);
  z-index: 999;
  overflow-y: auto;
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .nav-links,
  .nav-cta {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  /* Mobile Menu - Show on mobile */
  .mobile-menu {
    display: block;
  }
  
  .mobile-menu.open {
    transform: translateX(0);
  }
  
  .mobile-menu .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    margin-bottom: var(--space-xl);
    list-style: none;
  }
  
  .mobile-menu .nav-links li {
    list-style: none;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
  }
  
  .mobile-menu .nav-links li:first-child {
    border-top: 1px solid var(--color-border);
  }
  
  .mobile-menu .nav-links a {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 1.2rem 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    transition: all 0.3s ease;
  }
  
  .mobile-menu .nav-links li:first-child a {
    color: var(--color-text);
  }
  
  .mobile-menu .nav-links a:hover,
  .mobile-menu .nav-links a.active {
    color: var(--color-accent);
    background: rgba(0, 180, 216, 0.05);
  }
  
  .mobile-menu .nav-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
    padding: 0 var(--space-lg);
    margin-top: var(--space-xl);
  }
  
  .mobile-menu .nav-cta .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .promo-grid {
    grid-template-columns: 1fr;
  }
  
  .about-highlights {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: var(--space-xl);
    text-align: center;
    width: 100%;
    max-width: 100%;
  }
  
  .footer-brand {
    text-align: center;
    margin-bottom: var(--space-md);
    width: 100%;
  }
  
  .footer-brand .logo {
    justify-content: center;
    margin-bottom: var(--space-md);
  }
  
  .footer-links,
  .footer-column {
    width: 100%;
    text-align: center;
  }
  
  .footer-links h4,
  .footer-column h4 {
    text-align: center;
  }
  
  .footer-links ul,
  .footer-column ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0;
  }
  
  .footer-links ul li,
  .footer-column ul li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    width: 100%;
  }
  
  /* Footer links im footer-bottom horizontal auf Mobile */
  .footer-bottom .footer-links {
    flex-direction: column;
    gap: var(--space-sm);
    width: 100%;
  }
  
  .footer-bottom .footer-links a {
    display: block;
    padding: var(--space-xs) 0;
  }
  
  .contact-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    padding: 0 var(--space-md);
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons .btn {
    flex: 1;
  }
}

/* ============================================
   MOBILE OPTIMIZATIONS
   ============================================ */

/* Mobile Hero - Anpassungen für vertikale Bilder */
@media (max-width: 768px) {
  .hero {
    min-height: 100svh; /* Safe viewport height for mobile */
  }
  
  .hero-slide-img {
    object-position: center center;
  }
  
  .hero-content {
    padding: var(--space-lg);
    padding-bottom: 180px; /* Platz für Slider-Nav */
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.1;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .slider-nav {
    bottom: 140px;
  }
  
  /* Wave Overlay auf Mobile ausblenden */
  .hero::after {
    display: none;
  }
  
  /* Services kompakter auf Mobile */
  .service-card {
    padding: var(--space-lg);
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  /* Kontakt-Bereich Mobile */
  .contact-item {
    padding: var(--space-md);
  }
  
  .contact-item-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  /* Opening Hours kompakter */
  .opening-hours {
    padding: var(--space-lg);
  }
  
  /* Map auf Mobile - volle Breite */
  .contact-map {
    height: 350px;
    min-height: 350px;
    width: 100%;
    border-radius: var(--radius-lg);
  }
  
  .contact-map iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 350px;
  }
  
  /* Promotions vollbreite Karten */
  .promo-grid {
    gap: var(--space-lg);
  }
  
  .promo-image {
    height: 280px;
  }
  
  /* About Section Mobile */
  .about-image::before {
    display: none; /* Decorative border ausblenden */
  }
  
  /* Section Spacing Mobile */
  .services,
  .promotions,
  .about,
  .contact {
    padding: var(--space-2xl) 0;
  }
  
  .section-title {
    margin-bottom: var(--space-2xl);
  }
}

/* Extra Small Screens */
@media (max-width: 375px) {
  html {
    font-size: 14px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .btn {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.9rem;
  }
}

/* Touch-friendly tap targets */
@media (hover: none) and (pointer: coarse) {
  .btn,
  .nav-item,
  .contact-item,
  .service-card {
    min-height: 44px; /* iOS minimum tap target */
  }
  
  .nav-links a {
    padding: var(--space-md) var(--space-sm);
  }
  
  /* Größere Slider-Dots für Touch */
  .slider-dot {
    /* Touch-Target bleibt 48x48 auf Mobile */
    width: 48px;
    height: 48px;
  }
  
  .slider-dot::before {
    width: 14px;
    height: 14px;
  }
  
  /* Scroll-Top Button größer */
  .scroll-top {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
}

/* Safe Area für notched devices (iPhone etc.) */
@supports (padding: env(safe-area-inset-bottom)) {
  .footer {
    padding-bottom: calc(var(--space-xl) + env(safe-area-inset-bottom));
  }
  
  .cookie-banner {
    padding-bottom: calc(var(--space-lg) + env(safe-area-inset-bottom));
  }
  
  .mobile-menu {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* Landscape Mode auf Mobile */
@media (max-width: 896px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
    margin-bottom: var(--space-md);
  }
  
  .hero-buttons {
    flex-direction: row;
  }
  
  .slider-nav {
    bottom: 100px;
  }
}

/* ---------- Print Styles ---------- */
@media print {
  .header,
  .footer,
  .cookie-banner,
  .scroll-top {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}

