
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

#info .contact-card--social {
  align-items: flex-start;
}

#info .contact-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  flex-wrap: wrap;
}

#info .contact-socials__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, rgba(14,14,14,0.96), rgba(28,28,28,0.92));
  border: 1px solid rgba(229,62,62,0.45);
  color: #f6f6f6;
  font-size: 1.3rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,0.45);
  -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  text-decoration: none;
}

#info .contact-socials__link:focus-visible {
  outline: 3px solid rgba(255,255,255,0.35);
  outline-offset: 3px;
}

#info .contact-socials__link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  opacity: 0.25;
  transition: opacity .25s ease;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0));
}

#info .contact-socials__link i {
  position: relative;
  z-index: 1;
  font-size: 1.26rem;
}

#info .contact-socials__link:hover {
  transform: translateY(-3px);
  border-color: rgba(229,62,62,0.95);
  background: #e53e3e;
  box-shadow: 0 8px 20px rgba(0,0,0,0.45);
  text-decoration: none !important;
}

#info .contact-socials__link:hover i,
#info .contact-socials__link i {
  text-decoration: none !important;
}

#info .contact-socials__link:hover::before {
  opacity: 0;
}

#info .contact-socials__link.instagram,
#info .contact-socials__link.facebook,
#info .contact-socials__link.tiktok {
  border-color: rgba(229,62,62,0.45);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #000;
  color: #fff;
  padding: 18px 40px;
  z-index: 1000;
  height: 115px;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.navbar .nav-logo {
  width: 90px;
  max-width: 120px;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 35px !important;
}

.navbar .nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 1.28rem;
  transition: color 0.3s;
  padding: 6px 18px;
  border-radius: 28px;
}

.navbar .nav-links li a:hover {
  color: red;
}

/* Mobile Menu Button - hidden on desktop by default */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  cursor: pointer;
  padding: 8px;
  z-index: 3001;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-menu-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
}

.mobile-menu-btn span {
  width: 26px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: all 0.4s ease;
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.mobile-menu-btn.active {
  background: rgba(229,62,62,0.2);
  border-color: #e53e3e;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 7px);
  background: #e53e3e;
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -7px);
  background: #e53e3e;
}

/* Mobile Navigation - nur unter 769px */
@media (max-width: 768px) {
  .navbar {
    padding: 18px 24px;
    height: 75px;
    background: rgba(0,0,0,0.95);
  }
  
  .navbar .nav-logo {
    width: 65px;
    z-index: 3001;
  }
  
  .mobile-menu-btn {
    display: flex !important;
  }
  
  /* Overlay Background */
  .navbar .nav-links {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw !important;
    height: 100vh !important;
    background: 
      radial-gradient(circle at 30% 20%, rgba(229,62,62,0.15) 0%, transparent 50%),
      radial-gradient(circle at 70% 80%, rgba(229,62,62,0.1) 0%, transparent 50%),
      linear-gradient(135deg, #000 0%, #0a0a0a 50%, #000 100%) !important;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    flex-direction: column !important;
    justify-content: flex-start;
    align-items: center;
    gap: 18px !important;
    padding: 150px 30px 60px !important;
    margin: 0 !important;
    list-style: none !important;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 3000 !important;
    overflow-y: auto;
  }
  
  .navbar .nav-links.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1) !important;
  }
  
  /* Logo im Menü */
  .navbar .nav-links::before {
    content: '';
    position: absolute;
    top: 50px;
    width: 80px;
    height: 80px;
    background-image: url('images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transform: translateY(-20px) scale(0.8);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .navbar .nav-links.active::before {
    opacity: 0.3;
    transform: translateY(0) scale(1);
    transition-delay: 0.1s;
  }
  
  .navbar .nav-links li {
    width: 100%;
    max-width: 380px;
    text-align: center;
    margin: 0;
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .navbar .nav-links.active li {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  
  .navbar .nav-links.active li:nth-child(1) { transition-delay: 0.15s; }
  .navbar .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
  .navbar .nav-links.active li:nth-child(3) { transition-delay: 0.25s; }
  .navbar .nav-links.active li:nth-child(4) { transition-delay: 0.3s; }
  .navbar .nav-links.active li:nth-child(5) { transition-delay: 0.35s; }
  
  .navbar .nav-links li a {
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    padding: 22px 45px !important;
    width: 100% !important;
    margin: 0 !important;
    text-align: center;
    border: 2.5px solid rgba(255,255,255,0.12) !important;
    border-radius: 20px !important;
    color: #fff !important;
    text-decoration: none !important;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: block !important;
    background: 
      linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.03) 100%) !important;
    box-shadow: 
      0 8px 32px rgba(0,0,0,0.5),
      inset 0 1px 0 rgba(255,255,255,0.1) !important;
    position: relative;
    overflow: hidden;
  }
  
  /* Shine effect */
  .navbar .nav-links li a::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s;
  }
  
  .navbar .nav-links li a:active::after {
    transform: rotate(45deg) translateX(100%);
  }
  
  /* Ripple effect */
  .navbar .nav-links li a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229,62,62,0.6) 0%, rgba(229,62,62,0) 70%);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease-out, height 0.5s ease-out;
    pointer-events: none;
  }
  
  .navbar .nav-links li a:active::before {
    width: 400px;
    height: 400px;
  }
  
  .navbar .nav-links li a:active {
    background: linear-gradient(135deg, #e53e3e 0%, #c92a2a 100%) !important;
    border-color: rgba(255,85,85,0.8) !important;
    transform: scale(0.96) !important;
    box-shadow: 
      0 4px 20px rgba(229,62,62,0.7),
      inset 0 2px 8px rgba(0,0,0,0.3) !important;
  }
  
  /* Footer text im Menü */
  .navbar .nav-links::after {
    content: 'CLASS MEN FRISEUR';
    position: absolute;
    bottom: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
  }
  
  .navbar .nav-links.active::after {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
  }
}

/* Hero */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-top: 0;
}
.hero .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
.hero::before{
  content:""; position:absolute; inset:0;
  background:url("images/laden.webp") no-repeat center/cover;
  filter: blur(2px) brightness(0.25); z-index:-2;
}
.hero::after{
  content:""; position:absolute; inset:0;
  background:rgba(0,0,0,.5); z-index:-1;
}
.hero-content {
  position: relative;
  perspective: 1000px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%;
  padding-top: 80px;
  z-index: 1;
}
.hero-row{ display:flex; align-items:center; gap:70px; justify-content:center; }
.hero-logo{ width:100px; filter:drop-shadow(0 0 10px white); opacity:0; }
.hero-logo.left{ animation:slideInLeft 1.5s forwards, pulseGlow 3s infinite 1.5s; }
.hero-logo.right{ animation:slideInRight 1.5s forwards, pulseGlow 3s infinite 1.5s; }
@keyframes slideInLeft{0%{transform:translateX(-300px);opacity:0}100%{transform:translateX(0);opacity:1}}
@keyframes slideInRight{0%{transform:translateX(300px);opacity:0}100%{transform:translateX(0);opacity:1}}
@keyframes pulseGlow{0%{filter:drop-shadow(0 0 5px white)}50%{filter:drop-shadow(0 0 15px red)}100%{filter:drop-shadow(0 0 5px white)}}
.hero-content h1{ font-size:5rem; font-weight:bold; display:flex; justify-content:center; gap:15px;}
.hero-content h1 .text{ display:inline-block; transform:translateZ(-400px) scale(.5); opacity:0; animation:zoomIn 1.5s forwards;}
.hero-content h1 .red{ color:red; }
@keyframes zoomIn{0%{transform:translateZ(-400px) scale(.5);opacity:0}100%{transform:translateZ(0) scale(1);opacity:1}}
.hero-btn{
  display:inline-block; margin-top:40px; padding:15px 40px; font-size:1.5rem; font-weight:bold;
  color:white; text-decoration:none; border:2px solid white; border-radius:40px; background:black;
  cursor:pointer; opacity:0; transform:translateY(100px); animation:slideUpBtn 1.5s forwards; transition:all .3s;
}
.hero-btn:hover{ background:red; border-color:red; }
@keyframes slideUpBtn{0%{opacity:0;transform:translateY(100px)}100%{opacity:1;transform:translateY(0)}}

/* Leistungen */
/* Leistungen */
.leistungen {
  background: #111;
  color: white;
  text-align: center;
  padding: 30px 20px; /* noch kompakter für perfekten Viewport */
}

.leistungen .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- Leistungen: Abstände kompakter --- */
.leistungen h2 {
  font-size: 1.9rem;
  margin-bottom: 6px;
  color: red;
}

.leistungen-slogan {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 10px;
  font-style: italic;
}

.leistungen h3 {
  font-size: 1.25rem;
  margin: 10px 0 6px;
  color: #fff;
  border-bottom: 2px solid red;
  display: inline-block;
  padding-bottom: 2px;
}


.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  margin-bottom: 16px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Leistungskarten – großzügiger Look */
.leistung-card {
  background: #171717;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,.55);
  transition: transform .35s ease, box-shadow .35s ease;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.leistung-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 36px rgba(0,0,0,.65);
}

.leistung-card h4 {
  font-size: 1.1rem;
  color: #ff3b3b;
  margin: 3px 0 1px;
  text-align: center;
}

/* Thumbnails – großformatige Galerie */
.thumbnail-leiste {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}

.thumbnail-leiste img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
  opacity: .92;
}

.thumbnail-leiste img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(255,0,0,.45);
  opacity: 1;
}


/* --- Preise (Dark) --- */
/* --- Preise (kompakter) --- */
.preise {
  background: #111;
  text-align: center;
  padding: 40px 10px; /* war 100px → weniger Platz */
  color: #fff;
}

.preise .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- Preise: Abstände kompakter --- */
.preise h2 {
  font-size: 2.2rem;
  margin-bottom: 5px; /* kleiner Abstand wie bei Leistungen */
  color: red;
}

.preise-slogan {
  font-size: 1.4rem;
  color: #aaa;
  margin-bottom: 20px; /* war größer → jetzt kompakter */
  font-style: italic;
}


.preise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* immer 3 Spalten auf Desktop */
  gap: 18px;
  max-width: 850px;
  margin: 0 auto;
}

.preis-card {
  background: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
  padding: 18px 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Icon – Titel – Preis gleichmäßig */
  align-items: center;
  text-align: center;
  gap: 6px;
  border: 1px solid rgba(255, 0, 0, 0.15);
  min-height: 150px;
}


.preis-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

.preis-card .icon {
  font-size: 1.6rem; /* etwas kleiner als vorher */
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: red;
}

.preis-card h3 {
  flex: 1; /* nimmt verfügbaren Platz zwischen Icon und Preis ein */
  display: flex;
  align-items: center; /* vertikal zentriert */
  justify-content: center; /* horizontal zentriert */
  text-align: center;
  font-size: 0.95rem;
  margin: 0;
  color: #fff;
}

.preis-card .preis {
  margin-top: auto; /* Preis immer unten */
  font-size: 1.2rem;
  font-weight: bold;
  color: red;
}


.preis-card .custom-icon {
  width: 28px;   /* war größer → jetzt etwas kleiner */
  height: 28px;
  display: inline-block;
}


.icon img { width: 28px; height: auto; display: block; }
/* Plus-Zeichen minimal anheben */
.icon .plus { font-size: 1.6rem; line-height: 1; transform: translateY(-1px); }

/* Fallback-Sicherung für #preise (falls andere Regeln greifen) */
#preise { background:#111 !important; color:#fff !important; }

/* --- Section Divider (dunkel, elegant) --- */
/* Ursache für den weißen Balken war margin, das die Body-Farbe zeigte.
   Wir machen den Divider selbst dunkel und nutzen Padding. */
.section-divider{
  position: relative;
  background: #111;
  padding: 40px 0;    /* vertikale Luft im dunklen Band */
}
.section-divider::before{
  content:"";
  display:block;
  height: 2px;
  width: min(700px, 60%);
  margin: 0 auto;
  background: linear-gradient(90deg, rgba(255,255,255,0.15), red, rgba(255,255,255,0.15));
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(255,0,0,0.25);
}

/* Kontakt */
#kontakt{ background:#fff; padding:100px 20px; }
#kontakt h2{ font-size:2.5rem; text-align:center; margin-bottom:20px; }
#kontakt form{ max-width:600px; margin:0 auto; display:flex; flex-direction:column; }
#kontakt input, #kontakt textarea{ margin-bottom:15px; padding:12px; border:1px solid #ddd; border-radius:5px; }
#kontakt button{
  background:red; color:#fff; padding:12px; border:none; border-radius:5px; font-weight:bold; cursor:pointer; transition:background .3s;
}
#kontakt button:hover{ background:#a60000; }

/* Footer */
.footer {
  background: linear-gradient(to bottom, #0a0a0a 0%, #111 100%);
  color: #fff;
  padding: 50px 0 20px;
  margin-top: 0;
  border-top: 2px solid rgba(229, 62, 62, 0.3);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 0 20px;
}

.footer-left h3 {
  color: var(--primary);
  margin: 0 0 8px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-left p {
  margin: 0;
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-nav {
  display: flex;
  gap: 35px;
  align-items: center;
}

.footer-nav a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.footer-nav a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid #333;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.footer-bottom p {
  margin: 0;
  color: #777;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .footer {
    padding: 30px 0 15px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 0 15px;
    margin-bottom: 20px;
  }
  
  .footer-left h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
  }

  .footer-left p {
    font-size: 0.88rem;
  }
  
  .footer-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
  }

  .footer-nav a {
    font-size: 0.9rem;
  }

  .footer-bottom {
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 25px 0 12px;
  }

  .footer-content {
    gap: 15px;
    padding: 0 12px;
    margin-bottom: 15px;
  }

  .footer-left h3 {
    font-size: 1.2rem;
  }

  .footer-left p {
    font-size: 0.82rem;
  }

  .footer-nav {
    gap: 20px;
  }

  .footer-nav a {
    font-size: 0.85rem;
  }

  .footer-bottom {
    padding-top: 12px;
  }

  .footer-bottom p {
    font-size: 0.75rem;
  }
}

/* Legal Pages */
.legal-page {
  padding: 100px 0 60px;
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.legal-content h1 {
  color: var(--primary);
  margin-bottom: 30px;
  font-size: 2.2rem;
  border-bottom: 3px solid var(--primary);
  padding-bottom: 15px;
}

.legal-section {
  margin-bottom: 30px;
}

.legal-section h2 {
  color: #333;
  margin: 25px 0 15px;
  font-size: 1.4rem;
}

.legal-section h3 {
  color: #555;
  margin: 20px 0 10px;
  font-size: 1.1rem;
}

.legal-section p {
  line-height: 1.6;
  margin-bottom: 15px;
  color: #666;
}

.legal-section ul {
  margin: 15px 0;
  padding-left: 25px;
}

.legal-section li {
  margin-bottom: 8px;
  line-height: 1.5;
  color: #666;
}

.legal-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 15px 20px;
  margin: 20px 0;
  background: #f9f9f9;
  border-radius: 8px;
  color: #444;
}

.legal-info-table {
  margin: 20px 0;
}

.legal-info-table table,
.legal-section table {
  width: 100%;
  border-collapse: collapse;
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
}

.legal-info-table td,
.legal-section table td,
.legal-section table th {
  padding: 16px 20px;
  line-height: 1.6;
  color: #444;
}

.legal-section table tr:nth-child(even) {
  background: #f0f0f0;
}

.legal-section table strong {
  color: #222;
}

.legal-section a {
  color: var(--primary);
  text-decoration: none;
}

.legal-section a:hover {
  text-decoration: underline;
}

.legal-back {
  margin-top: 40px;
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #eee;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.legal-back .btn-primary {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--primary) !important;
  color: white !important;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
  opacity: 1 !important;
  visibility: visible !important;
}

.legal-back .btn-primary:hover {
  background: #c41e3a;
}

@media (max-width: 768px) {
  .legal-page {
    padding: 80px 0 40px;
  }
  
  .legal-content {
    margin: 0 20px;
    padding: 30px 20px;
  }
  
  .legal-content h1 {
    font-size: 1.8rem;
  }
  
  .legal-section h2 {
    font-size: 1.2rem;
  }
}

/* Modal - Vollbildanzeige */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}
.modal-content {
  max-width: 90%; max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255,0,0,0.8);
}
.modal .close {
  position: absolute; top: 20px; right: 40px;
  color: white; font-size: 40px; font-weight: bold;
  cursor: pointer; transition: color 0.3s;
}
.modal .close:hover { color: red; }

/* (Altlasten – alte #preise-Tabelle bleibt ungenutzt) */
#preise table{ margin:0 auto; border-collapse:collapse; width:80%; max-width:600px; }
#preise th, #preise td{ border:1px solid #ddd; padding:12px; }
#preise th{ background:#333; color:#fff; }
#preise tr:nth-child(even){ background:#f4f4f4; }

.leistungen-slogan {
  font-size: 1.4rem;
  font-style: italic;
  color: #ccc;
  margin-bottom: 40px;
  animation: fadeIn 2s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.section-divider {
  background: #111;
  padding: 45px 0 25px;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: space-evenly; /* verteilt alle 5 Logos gleichmäßig */
  align-items: center;
}

.section-divider::before {
  content:"";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, red, transparent);
  animation: glowLine 3s infinite alternate;
  z-index: 1;
}

.divider-logo {
  position: relative;
  z-index: 2;
  width: 80px;
  height: auto;
  background: #111;
  border-radius: 50%;
  padding: 10px;
  filter: drop-shadow(0 0 20px rgba(255,0,0,0.9));
  animation: glowLogo 2.5s infinite alternate;
}

/* Preise dichter nach oben */
.preise {
  background: #111;
  text-align: center;
  padding: 60px 20px 60px;
  color: #fff;
}

/* Animationen */
@keyframes glowLine {
  from { opacity: 0.6; box-shadow: 0 0 12px rgba(255,0,0,0.4); }
  to   { opacity: 1;   box-shadow: 0 0 30px rgba(255,0,0,0.9); }
}

@keyframes glowLogo {
  from { transform: scale(1); filter: drop-shadow(0 0 20px rgba(255,0,0,0.8)); }
  to   { transform: scale(1.1); filter: drop-shadow(0 0 40px rgba(255,0,0,1)); }
}

#leistungen, #kontakt, #hero {
  scroll-margin-top: 70px; /* bleibt wie bisher */
}

#preise {
  scroll-margin-top: 85px; /* etwas mehr Abstand nur für Preise */
}


/* Karten unsichtbar starten */
.preis-card,
.leistung-card {
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  transition: all 0.8s ease-out;
  will-change: opacity, transform;
}

/* Klasse für sichtbare Karten */
.show-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* === Termin buchen Section === */
/* === Termin buchen Section (kompakt, 3-Spalten, Button mittig) === */
.booking-section{
  min-height:auto;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg,#0d0d0d,#1a1a1a 50%,#111);
  color:#f5f5f5;
  padding:35px 16px;
}

.booking-card{
  width:100%;
  max-width:900px;
  background:#2c2c2c;
  border-radius:16px;
  padding:20px 24px;
  box-shadow:0 8px 20px rgba(0,0,0,.6);

  /* Fade/Slid-In */
  opacity:0; transform:translateY(60px) scale(.98);
  transition:all .8s ease-out;
}
.booking-card.show-card{opacity:1; transform:translateY(0) scale(1);}

.booking-card h2{
  margin-bottom:14px;
  color:red; font-weight:700;
  font-size:1.4rem;
  text-transform:uppercase; text-align:center;
  letter-spacing:1px;
}

.booking-card .form-group,
.booking-card .service-option,
.booking-card .btn-book{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .45s ease, transform .45s ease;
  transition-delay:var(--reveal-delay, 0ms);
}

.booking-card .form-group.reveal-from-bottom,
.booking-card .service-option.reveal-from-bottom,
.booking-card .btn-book.reveal-from-bottom{
  opacity:1;
  transform:translateY(0);
}

.booking-form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;  /* 2 Spalten für bessere Balance */
  gap:16px;
}

.booking-form .form-group.full{ 
  width:100%; 
}

.booking-card label{
  margin-bottom:4px;
  font-size:.82rem; color:#ddd;
}

.booking-card .form-control,
.booking-card .form-select,
.booking-card textarea{
  width:100%;
  background:#1a1a1a;
  border:1px solid #333;
  color:#fff;
  padding:7px 10px;                /* kompakter */
  border-radius:6px;
  font-size:.88rem;
  transition:all .25s ease;
}
.booking-card .form-control:focus,
.booking-card .form-select:focus,
.booking-card textarea:focus{
  border-color:red; box-shadow:0 0 5px rgba(255,0,0,.35);
  outline:none;
}

.booking-card textarea{ height:60px; resize:none; }

/* Services als 3x3 Raster mit Preis-Spalte */
.services-list{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:8px 12px;
  margin-top:6px;
}

.service-option{
  background:#1a1a1a;
  padding:8px 12px;
  border-radius:8px;
  border:1px solid #333;
  font-size:.8rem;
  color:#fff;
  display:flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
  transition:all .2s ease;
}

.service-option:hover{ border-color:red; box-shadow:0 0 5px rgba(255,0,0,.4); }
.service-option input[type="checkbox"]{ accent-color:red; width:14px; height:14px; }
.service-text{ flex:1; font-weight:500; }
.service-price{ font-weight:600; color:#ff5959; white-space:nowrap; }

.booking-feedback{
  grid-column:1 / -1;
  margin:6px 0;
  padding:8px 12px;
  border-radius:6px;
  font-size:.85rem;
  display:none;
}

.booking-feedback.success{
  display:block;
  background:rgba(46, 204, 113, 0.15);
  border:1px solid rgba(39, 174, 96, 0.4);
  color:#a1f2c2;
}

.booking-feedback.error{
  display:block;
  background:rgba(231, 76, 60, 0.15);
  border:1px solid rgba(192, 57, 43, 0.4);
  color:#f4b1a8;
}

/* Button mittig unten, passende Breite */
.btn-book{
  grid-column:1 / -1;
  justify-self:center;
  margin:12px auto 0;
  background:red; color:#fff;
  border:none; padding:14px 40px;
  font-size:1rem; font-weight:700;
  border-radius:12px; text-transform:uppercase;
  cursor:pointer; transition:all .3s ease;
  width:auto;
  max-width:400px;
  display:block;
}
.btn-book:hover{ 
  background:#cc0000; 
  transform:translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,0,0,0.4);
}

/* Privacy Notice */
.privacy-notice {
  margin-top: 15px;
  font-size: 0.85rem;
  color: #666;
  text-align: center;
  line-height: 1.4;
}

.privacy-notice i {
  color: #28a745;
  margin-right: 5px;
}

.privacy-notice a {
  color: var(--primary);
  text-decoration: none;
}

.privacy-notice a:hover {
  text-decoration: underline;
}

.confirmation-modal{
  position:fixed;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,0.65);
  z-index:3000;
  padding:24px;
  -webkit-backdrop-filter:blur(3px);
  backdrop-filter:blur(3px);
  transition:opacity .25s ease;
}

.confirmation-modal[hidden]{
  display:none;
}

.confirmation-modal__content{
  position:relative;
  width:min(420px, 90vw);
  background:#1f1f1f;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:18px;
  padding:40px 32px 32px;
  box-shadow:0 24px 50px rgba(0,0,0,0.45);
  text-align:center;
}

.confirmation-modal__icon{
  width:72px;
  height:72px;
  border-radius:50%;
  background:rgba(46,204,113,0.15);
  border:1px solid rgba(46,204,113,0.45);
  margin:0 auto 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#2ecc71;
  font-size:2.4rem;
}

.confirmation-modal__content h3{
  font-size:1.45rem;
  color:#fff;
  margin-bottom:10px;
  letter-spacing:0.02em;
}

.confirmation-modal__text{
  color:#dcdcdc;
  font-size:0.95rem;
  line-height:1.6;
  margin-bottom:26px;
}

.confirmation-modal__action{
  background:#ff3b3b;
  color:#fff;
  border:none;
  border-radius:999px;
  font-size:0.95rem;
  font-weight:600;
  padding:12px 28px;
  cursor:pointer;
  transition:background .2s ease, transform .2s ease;
}

.confirmation-modal__action:hover,
.confirmation-modal__action:focus{
  background:#e12828;
  transform:translateY(-1px);
  outline:none;
}

.confirmation-modal__close{
  position:absolute;
  top:14px;
  right:14px;
  width:38px;
  height:38px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:background .2s ease, transform .2s ease;
}

.confirmation-modal__close:hover,
.confirmation-modal__close:focus{
  background:rgba(255,59,59,0.35);
  transform:rotate(90deg);
  outline:none;
}

/* Sicherstellen, dass keine zusätzlichen Textblöcke in der Buchungskarte angezeigt werden */
.booking-card > p,
.booking-card > ul,
.booking-card .booking-top,
.booking-card .booking-subtitle,
.booking-card .booking-lead,
.booking-card .booking-highlights,
.booking-card .booking-contact{
  display:none !important;
}

/* Responsive Feinschliff */
@media (max-width: 992px){
  .booking-card{ 
    max-width:860px; 
    margin: 0 20px;
  }
  .services-list{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px){
  .booking-card{ 
    max-width: 100%;
    margin: 0 15px;
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .booking-card h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .booking-card .form-control,
  .booking-card .form-select,
  .booking-card textarea {
    font-size: 16px; /* Verhindert Zoom auf iOS */
    padding: 15px 12px;
    border-radius: 8px;
  }
  
  .booking-card .btn-book {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    border-radius: 10px;
    margin-top: 20px;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .service-option {
    padding: 15px;
    border-radius: 10px;
  }
  
  .service-option h4 {
    font-size: 1rem;
  }
  
  .service-option .price {
    font-size: 1.2rem;
  }
}

@media (max-width: 700px){
  .form-row{ grid-template-columns:1fr; }
  
  .booking-card {
    margin: 0 10px;
    padding: 20px 15px;
  }
}

/* Info Section */
#info {
  background: #111;
  color: #fff;
  padding: 30px 20px 80px;
}

#info > h2 {
  text-align: center;
  color: red;
  font-size: 2.4rem;
  margin-bottom: 15px;
}

#info .info-intro {
  max-width: 1100px;
  margin: 0 auto 35px;
  background: linear-gradient(135deg, rgba(34,34,34,0.95), rgba(18,18,18,0.95));
  border: 1px solid rgba(255,0,0,0.18);
  border-radius: 20px;
  padding: 40px 48px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: start;
  
  /* Scroll-Animation */
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#info .info-intro.show-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

#info .info-textblock p {
  color: #ddd;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

#info .info-textblock p:last-child {
  margin-bottom: 0;
}

#info .info-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,0,0,0.12);
  color: #ff4646;
  border: 1px solid rgba(255,0,0,0.3);
  border-radius: 999px;
  padding: 6px 18px;
  margin-bottom: 22px;
}

#info .info-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

#info .info-highlights li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(15,15,15,0.9);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 16px 20px;
  color: #f5f5f5;
  box-shadow: 0 14px 28px rgba(0,0,0,0.35);
}

#info .info-highlights li i {
  font-size: 1.15rem;
  color: #ff3b3b;
}

#info .info-highlights li span {
  font-size: 0.98rem;
  line-height: 1.55;
}

#info .location-contact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: stretch;
}

#info .location-section,
#info .contact-section {
  background: rgba(255,255,255,0.03);
  border-radius: 18px;
  padding: 32px 30px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 100%;
  
  /* Scroll-Animation */
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease-out;
}

#info .location-section.show-card,
#info .contact-section.show-card {
  opacity: 1;
  transform: translateY(0);
}

#info .location-section h3,
#info .contact-section h3 {
  color: var(--primary);
  margin: 0;
  font-size: 1.45rem;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 2px solid rgba(255,0,0,0.25);
  padding-bottom: 12px;
}

#info .location-address {
  font-size: 1.05rem;
  color: #ccc;
  line-height: 1.6;
  text-align: center;
  margin: 0 auto;
}

#info .map-container {
  margin: 12px 0 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(0,0,0,0.35);
  border: 2px solid var(--primary);
  flex: 1;
  display: flex;
}

#info .map-frame {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  display: block;
  flex: 1 1 auto;
}

#info .contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#info .contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
  
  /* Scroll-Animation */
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease-out;
}

#info .contact-card.show-card {
  opacity: 1;
  transform: translateX(0);
}

#info .contact-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}


#info .contact-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.15rem;
  flex-shrink: 0;
}

#info .contact-details h4 {
  margin: 0 0 6px;
  color: var(--primary);
  font-size: 1.05rem;
}

#info .contact-details p,
#info .contact-details a {
  margin: 0;
  color: #ccc;
  font-size: 0.98rem;
  line-height: 1.5;
  text-decoration: none;
}

#info .contact-details a:hover {
  color: var(--primary);
  text-decoration: underline;
}

@media (max-width: 1100px) {
  #info .info-intro,
  #info .location-contact-wrapper {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 960px) {
  #info .info-intro {
    grid-template-columns: 1fr;
    padding: 32px 28px;
    gap: 26px;
  }

  #info .info-highlights {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  #info .location-contact-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
  }
}

@media (max-width: 768px) {
  #info {
    padding: 20px 10px 30px;
  }

  #info > h2 {
    font-size: 1.9rem;
    margin-bottom: 10px;
  }

  #info .info-intro {
    padding: 14px 12px;
    margin: 0 auto 15px;
  }

  #info .info-highlights li {
    padding: 8px 10px;
    font-size: 0.9rem;
  }

  #info .location-contact-wrapper {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #info .location-section,
  #info .contact-section {
    padding: 12px 10px;
    border-radius: 10px;
    gap: 14px;
  }

  #info .location-section h3,
  #info .contact-section h3 {
    font-size: 1.2rem;
    padding-bottom: 10px;
  }

  #info .location-address {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  #info .map-container {
    margin: 10px 0 0;
  }

  #info .contact-cards {
    gap: 10px;
  }

  #info .contact-card {
    flex-direction: row;
    padding: 10px 12px;
    gap: 12px;
  }

  #info .contact-socials {
    gap: 12px;
    flex-wrap: wrap;
  }

  #info .contact-socials__link {
    width: 50px;
    height: 50px;
  }

  #info .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  #info .map-container iframe {
    min-height: 180px;
    height: 180px;
  }

  #info .map-frame {
    height: 180px;
    min-height: 180px;
  }
}

@media (max-width: 560px) {
  #info {
    padding: 60px 12px 50px;
  }

  #info .info-intro {
    padding: 22px 18px;
    gap: 20px;
  }

  #info .info-highlights li {
    gap: 12px;
  }

  #info .contact-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 16px;
  }

  #info .contact-socials {
    width: 100%;
    gap: 10px;
    justify-content: center;
  }

  #info .contact-socials__link {
    width: 48px;
    height: 48px;
  }

  #info .contact-icon {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 420px) {
  #info .info-intro {
    margin: 0;
  }

  #info .contact-card {
    width: 100%;
  }
}

/* Additional Mobile Optimizations */
@media (max-width: 768px) {
  /* Hero Section Mobile */
  .hero {
    padding: 0 15px;
  }
  
  .hero-content h1 {
    font-size: 3.2rem;
    gap: 10px;
  }
  
  .hero-row {
    gap: 25px;
    flex-wrap: wrap;
  }
  
  .hero-logo {
    width: 60px;
  }
  
  .hero-btn {
    padding: 12px 25px;
    font-size: 1.1rem;
    margin-top: 25px;
  }
  
  /* Leistungen Mobile - Optimierte Karten */
  .leistungen {
    padding: 20px 10px;
  }
  
  .leistungen h2 {
    font-size: 1.8rem;
    margin-bottom: 4px;
  }
  
  .leistungen-slogan {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }
  
  .leistungen h3 {
    font-size: 1.15rem;
    margin: 20px 0 8px;
  }
  
  .leistungen-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 10px 0 15px;
  }
  
  .leistung-card {
    padding: 12px;
    max-width: 98%;
    margin: 0 auto;
    gap: 6px;
  }
  
  .leistung-card h4 {
    font-size: 1.05rem;
    margin: 2px 0 4px;
  }
  
  /* Thumbnail-Leiste für Mobile optimieren - horizontale Galerie */
  .thumbnail-leiste {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    margin-bottom: 6px;
  }
  
  .thumbnail-leiste img {
    flex: 0 0 120px;
    width: 120px;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
  }

  #info .info-social__links {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
  }

  #info .info-social__link {
    padding: 14px 16px;
  }
  
  /* Preise Mobile - Kompakte Karten */
  .preise {
    padding: 30px 15px;
  }
  
  .preise h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
  
  .preise-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 Spalten für flexibles Layout */
    gap: 10px;
    margin: 15px 0;
    padding: 0 12px;
  }
  
  /* Normale Karten nehmen 1 Spalte, außer die Highlight-Karte */
  .preis-card {
    grid-column: span 2; /* Standard: 2 Spalten = halbe Breite */
  }
  
  /* Highlight-Karte bekommt volle Breite einer Reihe */
  .preis-card.highlight {
    grid-column: span 4; /* Volle Breite für die lange Karte */
  }
  
  .preis-card {
    padding: 12px 8px;
    min-height: 110px;
    gap: 3px;
  }
  
  .preis-card .icon {
    font-size: 1.1rem;
    margin-bottom: 3px;
  }
  
  .preis-card h3 {
    font-size: 0.8rem;
    margin: 3px 0;
    line-height: 1.15;
  }
  
  .preis-card .preis {
    font-size: 1.2rem;
    margin-top: 2px;
  }
  
  /* Buchungsformular Mobile - Kompakter mit Grid */
  .booking-card {
    max-width: 100%;
    margin: 0 10px;
    padding: 18px 12px;
    border-radius: 12px;
  }
  
  .booking-card h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
  
  .booking-form {
    gap: 12px;
  }
  
  /* Form-Rows bleiben 2-spaltig auf Mobile */
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
  }
  
  .form-group {
    min-width: 0; /* Verhindert Overflow */
    max-width: 100%;
    overflow: hidden;
  }
  
  .booking-card .form-control,
  .booking-card .form-select,
  .booking-card textarea,
  .booking-card input[type="text"],
  .booking-card input[type="tel"],
  .booking-card input[type="email"],
  .booking-card input[type="date"],
  .booking-card input[type="time"] {
    font-size: 14px;
    padding: 10px 8px;
    border-radius: 6px !important;
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border: 1px solid #333 !important;
    background: #1a1a1a !important;
    color: #fff;
    height: 42px; /* Einheitliche Höhe für alle Inputs */
    line-height: 1.4;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  
  /* Browser-spezifische Resets für date/time Inputs */
  .booking-card input[type="date"]::-webkit-calendar-picker-indicator,
  .booking-card input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
  }
  
  .booking-card textarea {
    height: 70px;
  }
  
  .booking-card label {
    font-size: 0.78rem;
    margin-bottom: 3px;
  }
  
  .booking-card .btn-book {
    width: auto;
    min-width: 60%;
    max-width: 90%;
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 10px;
    margin: 12px auto 0;
    display: block;
  }
  
  /* Services Mobile - 3 Spalten für perfekte 3x3 Anordnung */
  .services-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin: 12px 0;
  }
  
  .service-option {
    padding: 6px 4px;
    border-radius: 6px;
    font-size: 0.65rem;
    gap: 4px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .service-option input[type="checkbox"] {
    width: 14px;
    height: 14px;
  }
  
  .service-text {
    line-height: 1.15;
    text-align: center;
    width: 100%;
    font-size: 0.65rem;
  }
  
  .service-price {
    font-size: 0.75rem;
    font-weight: 700;
  }
  
  /* Info-Bereiche Mobile - Kompakter und lesbarer */
  #info .info-intro {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 10px;
    margin: 0 auto 12px;
  }

  #info .info-social {
    padding: 20px 16px;
    margin-top: 24px;
  }

  #info .info-social__links {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  #info .info-textblock p {
    font-size: 0.88rem;
    line-height: 1.45;
    margin-bottom: 6px;
  }
  
  #info .contact-details h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
  }
  
  #info .contact-details p,
  #info .contact-details a {
    font-size: 0.82rem;
    line-height: 1.3;
  }
  
  /* Preise Mobile */
  .preise {
    padding: 40px 15px;
  }
  
  .preise h2 {
    font-size: 1.8rem;
  }
  
  .preise-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  
  .preis-card {
    grid-column: span 2;
  }
  
  .preis-card.highlight {
    grid-column: span 4;
  }
  
  .preis-card {
    padding: 25px 20px;
  }
  
  .preis-card h3 {
    font-size: 1.3rem;
  }
  
  .preis-card .preis {
    font-size: 1.8rem;
  }
  
  /* Info Section Mobile */
  #info .info-intro {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 18px;
    margin: 0 auto 24px;
  }
}

@media (max-width: 480px) {
  /* Extra kleine Bildschirme - Sehr kompakt */
  .nav-links {
    width: 100vw;
    right: -100vw;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  /* Hero noch kompakter */
  .hero-content h1 {
    font-size: 2.8rem;
    gap: 8px;
  }
  
  .hero-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-logo {
    width: 70px;
  }
  
  .hero-btn {
    padding: 14px 30px;
    font-size: 1.15rem;
  }
  
  /* Sehr kleine Karten */
  .leistungen {
    padding: 18px 8px;
  }
  
  .leistungen h2,
  .preise h2 {
    font-size: 1.5rem;
  }
  
  .leistungen h3 {
    font-size: 1.05rem;
    margin: 18px 0 6px;
  }
  
  .leistungen-grid {
    gap: 8px;
    margin: 8px 0 12px;
  }
  
  .leistung-card {
    padding: 10px;
    gap: 5px;
    max-width: 98%;
  }
  
  .leistung-card h4 {
    font-size: 0.95rem;
    margin: 2px 0 3px;
  }
  
  .thumbnail-leiste {
    gap: 8px;
    margin-bottom: 4px;
  }
  
  .thumbnail-leiste img {
    flex-basis: 104px;
    width: 104px;
  }

  #info .info-social__link {
    padding: 12px 14px;
  }
  
  .preis-card {
    padding: 10px 6px;
    min-height: 95px;
  }
  
  .preis-card .icon {
    font-size: 1rem;
  }
  
  .preis-card h3 {
    font-size: 0.72rem;
    line-height: 1.1;
  }
  
  .preis-card .preis {
    font-size: 1.1rem;
  }
  
  /* Kompaktes Buchungsformular */
  .booking-card {
    margin: 0 5px;
    padding: 15px 10px;
  }
  
  .booking-card h2 {
    font-size: 1.4rem;
  }
  
  .service-option {
    padding: 10px 8px;
  }
  
  .service-option h4 {
    font-size: 0.9rem;
  }
  
  /* Info kompakt */
  #info {
    padding: 18px 8px 25px;
  }

  #info > h2 {
    margin-bottom: 8px;
    font-size: 1.7rem;
  }

  #info .info-intro {
    margin: 0 auto 10px;
    padding: 10px 8px;
    gap: 8px;
  }
  
  #info .info-textblock p {
    font-size: 0.82rem;
    line-height: 1.4;
    margin-bottom: 5px;
  }
  
  #info .contact-cards {
    gap: 8px;
  }

  #info .contact-card {
    flex-direction: row;
    padding: 8px 10px;
    gap: 10px;
  }
  
  #info .contact-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  #info .contact-details h4 {
    font-size: 0.85rem;
    margin-bottom: 1px;
  }

  #info .contact-details p,
  #info .contact-details a {
    font-size: 0.78rem;
  }
  
  #info .info-highlights li {
    padding: 6px 8px;
    font-size: 0.85rem;
  }
  
  #info .location-contact-wrapper {
    gap: 10px;
  }
  
  #info .location-section,
  #info .contact-section {
    padding: 10px 8px;
    gap: 12px;
  }

  #info .location-section h3,
  #info .contact-section h3 {
    font-size: 1.1rem;
    padding-bottom: 8px;
  }

  #info .location-address {
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
  }

  #info .map-container {
    margin: 8px 0 0;
  }

  #info .map-container iframe {
    min-height: 160px;
    height: 160px;
  }
  
  #info .map-frame {
    height: 160px;
    min-height: 160px;
  }
}

/* === Optimierungen für große Bildschirme (Desktop 1200px+) === */
@media (min-width: 1200px) {
  .navbar .container {
    max-width: 1600px;
    margin: 0 auto;
  }
  
  .preise-grid {
    max-width: 950px;
  }
  
  .booking-section .container {
    max-width: 1400px;
    margin: 0 auto;
  }
}

/* === Extra große Bildschirme (2K+ / 1920px+) === */
@media (min-width: 1920px) {
  .navbar .container,
  #info .info-intro,
  #info .location-contact-wrapper {
    max-width: 1600px;
  }
  
  .hero-content {
    max-width: 1600px;
    margin: 0 auto;
  }
  
  .leistungen-grid {
    max-width: 1400px;
  }
  
  /* Verhindere, dass Grid-Items zu breit werden */
  .leistungen-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 400px));
    justify-content: center;
  }
  
  .preise-grid {
    grid-template-columns: repeat(3, minmax(250px, 320px));
    justify-content: center;
  }
}

/* === Ultra-Wide Displays (2560px+) === */
@media (min-width: 2560px) {
  body {
    font-size: 18px; /* Leicht größere Schrift für bessere Lesbarkeit */
  }
  
  .navbar .container,
  .hero-content,
  #info .info-intro,
  #info .location-contact-wrapper {
    max-width: 1800px;
  }
  
  .leistungen-grid,
  .preise-grid {
    max-width: 1600px;
  }
}

/* ============================================
   Cookie Banner
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 26px 20px;
  box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.8);
  border-top: 3px solid #e53e3e;
  z-index: 9999;
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-text h3 {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.cookie-banner-text h3 i {
  font-size: 1.4rem;
  color: #e53e3e;
  filter: drop-shadow(0 2px 4px rgba(229, 62, 62, 0.5));
}

.cookie-banner-text p {
  color: #d4d4d4;
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
}

.cookie-banner-text a {
  color: #e53e3e;
  text-decoration: underline;
}

.cookie-banner-text a:hover {
  color: #ff4d4d;
}

.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 13px 28px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: all 0.35s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.cookie-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: width 0.4s ease, height 0.4s ease;
  transform: translate(-50%, -50%);
}

.cookie-btn:hover::before {
  width: 300px;
  height: 300px;
}

.cookie-btn i {
  position: relative;
  z-index: 1;
}

.cookie-btn-accept {
  background: #e53e3e;
  color: #fff;
  border-color: #e53e3e;
  box-shadow: 0 4px 15px rgba(229, 62, 62, 0.4), 0 0 20px rgba(229, 62, 62, 0.2);
}

.cookie-btn-accept:hover {
  background: #ff4d4d;
  border-color: #ff4d4d;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(229, 62, 62, 0.6), 0 0 30px rgba(229, 62, 62, 0.4);
}

.cookie-btn-decline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.cookie-btn-decline:hover {
  background: rgba(229, 62, 62, 0.1);
  border-color: rgba(229, 62, 62, 0.5);
  color: #e53e3e;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 20px 16px;
  }

  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cookie-banner-text h3 {
    font-size: 1.1rem;
  }

  .cookie-banner-text p {
    font-size: 0.9rem;
  }

  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   Google Maps Platzhalter
   ============================================ */
.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95), rgba(0, 0, 0, 0.95));
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 62, 62, 0.5), transparent);
}

.map-placeholder-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 500px;
}

.map-placeholder-content i {
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  transition: all 0.3s ease;
}

.map-placeholder-content h4 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.map-placeholder-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 400px;
}

.map-placeholder-note {
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.4) !important;
  margin-top: 16px !important;
}

.map-placeholder-note a {
  color: #e53e3e;
  text-decoration: none;
  border-bottom: 1px solid rgba(229, 62, 62, 0.4);
  transition: all 0.3s ease;
}

.map-placeholder-note a:hover {
  color: #ff4d4d;
  border-bottom-color: #ff4d4d;
}

.map-load-btn {
  display: inline-block;
  padding: 11px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border: 2px solid #e53e3e;
  border-radius: 40px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: none;
  position: relative;
  text-align: center;
}

.map-load-btn:hover {
  background: #e53e3e;
  border-color: #e53e3e;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(229, 62, 62, 0.4);
}

@media (max-width: 768px) {
  .map-placeholder {
    min-height: 320px;
  }

  .map-placeholder-content {
    padding: 24px 20px;
  }

  .map-placeholder-content i {
    font-size: 2.8rem;
  }

  .map-placeholder-content h4 {
    font-size: 1.25rem;
  }

  .map-placeholder-content p {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .map-load-btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }

  .map-placeholder-note {
    font-size: 0.8rem !important;
  }
}
