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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  color: #fff;
  background: #000;
}

/* ======================
   Background (whole page)
====================== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("images/background.jpg") center / cover no-repeat;
  z-index: -1;
}

/* ======================
   Header / Navigation
====================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,0.4);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.2rem;
}

.logo-text {
  color: #fff !important;
  text-decoration: none !important;
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

.logo-text:hover,
.logo-text:visited,
.logo-text:active,
.logo-text:link {
  color: #fff !important;
  text-decoration: none !important;
}

.logo-text:hover {
  opacity: 1;
}

/* ======================
   Hero Logo – ultra subtle
====================== */
.hero-logo {
  display: block;
  margin: 0 auto 0.35rem;
  width: 150px;        /* Mobile: klein & elegant */
  height: auto;
  opacity: 0.9;
}

/* Desktop */
@media (min-width: 768px) {
  .hero-logo {
    width: 180px;      /* Desktop: größer für bessere Sichtbarkeit */
    margin-bottom: 0.45rem;
  }
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 1;
}

/* ======================
   Hero
====================== */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.2rem;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ======================
   Content Sections
====================== */
main {
  padding: 2rem 1.2rem 6rem;
}

section.content {
  max-width: 800px;
  margin: 0 auto 3rem;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  padding: 1.5rem;
  border-radius: 12px;
}

section.content h2 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

section.content p,
section.content li {
  font-size: 1rem;
  opacity: 0.95;
  line-height: 1.6;
}

ul {
  padding-left: 1.2rem;
}

li {
  margin-bottom: 0.4rem;
}

/* ======================
   Hinweis (modern, ruhig)
====================== */
.note {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
}
/* ======================
   Main Layout
====================== */
main {
  padding: 2rem 1.2rem 6rem;
  display: grid;
  gap: 1.5rem;
}

/* ======================
   Cards (Glass Style)
====================== */
/* Einheitliche Content-Breite */
.card {
  width: 100%;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;

  padding: 1.8rem 1.6rem;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* ======================
   Typography
====================== */
.card h2 {
  font-size: 1.45rem;
  margin-bottom: 0.8rem;
  margin-top: 0;
  font-weight: 600;
}

.card h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
  opacity: 0.95;
}

.card h4 {
  font-size: 1.05rem;
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  opacity: 0.9;
}

.card p,
.card li {
  font-size: 1rem;
  line-height: 1.65;
  opacity: 0.95;
  margin-bottom: 0.8rem;
}

.card ul {
  padding-left: 1.2rem;
}

.card li {
  margin-bottom: 0.5rem;
}

/* ======================
   Subtle Text
====================== */
.subtle {
  opacity: 0.8;
  font-size: 0.95rem;
}

/* ======================
   Links
====================== */
.card a,
footer a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
}

.card a:hover,
footer a:hover {
  opacity: 1;
}

/* ======================
   Desktop
====================== */
@media (min-width: 768px) {
  .card {
    padding: 2.2rem 2.4rem;
  }

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

  .hero p {
    font-size: 1.3rem;
  }

  .nav nav a {
    margin-left: 2rem;
  }
}
/* ======================
   Footer – centered fix
====================== */
footer {
  width: 100%;
  padding: 2.5rem 1rem 4rem;
}

.footer-inner {
  max-width: 820px;
  margin: 0 auto;          /* <<< horizontal centering */
  text-align: center;     /* <<< TEXT ZENTRIERUNG */
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}

.footer-inner a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 0.4rem;
  font-weight: 500;
  opacity: 0.9;
}

.footer-inner a:hover {
  opacity: 1;
}

.webdesign-credit {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

.webdesign-credit a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  opacity: 0.9;
}

.webdesign-credit a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ======================
   Formular
====================== */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* jedes Label = eigener Block */
.form label {
  display: flex;
  flex-direction: column;
  width: 100%;
  font-size: 0.95rem;
  gap: 0.4rem;
}

/* Inputs & Textarea */
.form input,
.form textarea {
  width: 100%;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.form input:focus,
.form textarea:focus {
  border-color: rgba(255,255,255,0.45);
  background: rgba(0,0,0,0.45);
}

/* Checkbox */
.form .checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
}

/* Submit Button */
.form .btn.full {
  width: 100%;
  margin-top: 0.8rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
}

.form .checkbox {
   display: flex;
  flex-direction: column;      /* Checkbox oben, Text darunter */
  align-items: center;         /* <<< horizontal zentriert */
  gap: 0.6rem;
  margin: 1.2rem auto 0;
  max-width: 820px;
  
  font-size: 0.9rem;
  line-height: 1.45;
}

.form .checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.form .checkbox a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.form .checkbox a:hover {
  opacity: 1;
}

.form input,
.form textarea,
.form select {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif !important;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

/* ======================
   Cookie Hinweis – modern
====================== */
.cookie-hint {
  max-width: 820px;
  margin: 2.5rem auto 0;
  padding: 1.2rem 1.4rem;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.cookie-hint p {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.cookie-hint a {
  color: #fff;
  text-decoration: none;   /* <<< KEIN underline */
  font-weight: 500;
  opacity: 0.9;
}

.cookie-hint a:hover {
  opacity: 1;
}

.cookie-ok {
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.9);
  color: #000;
  font-weight: 700;
  cursor: pointer;
}

.cookie-ok:hover {
  background: #fff;
}

/* ======================
   FORCE form vertical (all devices)
====================== */
.form-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.2rem;
}

/* ======================
   Mobile Navigation
====================== */

/* Toggle Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.menu-toggle:hover {
  opacity: 1;
}

/* Mobile Menu Container */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  padding: 1rem 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  padding: 0.9rem 0;
  font-size: 1rem;
  opacity: 0.95;
  transition: opacity 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  opacity: 1;
  padding-left: 0.5rem;
}

/* ===== Mobile Only ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;        /* hide desktop links */
  }

  .menu-toggle {
    display: block;       /* show burger */
  }

  .mobile-menu.show {
    display: flex;
  }

  .nav nav a {
    margin-left: 0;
  }
}

/* ======================
   Reviews Carousel
====================== */
.reviews-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.reviews-intro {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.6;
}

.reviews-intro a {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
}

.reviews-intro a:hover {
  opacity: 1;
}

.reviews-carousel {
  position: relative;
  max-width: 100%;
}

.carousel-container {
  overflow: hidden;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
  min-height: 180px;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.review-box {
  min-width: 100%;
  padding: 0 0.5rem;
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.review-box.active {
  display: flex;
}

.review-stars {
  font-size: 1.4rem;
  color: #ffd700;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  opacity: 0.95;
  font-style: italic;
  max-width: 600px;
}

.review-author {
  font-size: 0.9rem;
  opacity: 0.85;
  font-weight: 500;
  margin-top: 0.5rem;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
  line-height: 1;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .carousel-container {
    padding: 1.2rem;
    min-height: 200px;
  }

  .review-stars {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .review-text {
    font-size: 0.95rem;
  }

  .review-author {
    font-size: 0.85rem;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
}

/* ======================
   Contact Section
====================== */
.contact-intro {
  margin-bottom: 2rem;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
  text-align: center;
}

.contact-modern {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 400px;
}

.contact-item:hover {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.contact-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-link {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.95;
  transition: opacity 0.3s ease;
  text-align: center;
}

.contact-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.phone-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 1.5rem;
}

.show-phone-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.show-phone-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.show-phone-btn:active {
  transform: scale(0.98);
}

.phone-link {
  display: none;
}

.contact-button-wrapper {
  text-align: center;
  margin-top: 1.5rem;
}

.btn-anfrage {
  display: inline-block;
  padding: 1.1rem 2.8rem;
  background: rgba(255, 255, 255, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  min-width: 200px;
}

.btn-anfrage:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.btn-anfrage:active {
  transform: translateY(-1px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.btn-anfrage:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .contact-intro {
    margin-bottom: 1.5rem;
  }

  .contact-item {
    padding: 0.9rem 1.2rem;
    max-width: 100%;
  }

  .contact-icon {
    font-size: 1.2rem;
  }

  .contact-link {
    font-size: 0.95rem;
  }

  .contact-button-wrapper {
    margin-top: 1.2rem;
  }

  .btn-anfrage {
    padding: 1rem 2.2rem;
    font-size: 1rem;
    min-width: 180px;
  }
}