body, html {
  margin: 0;
  padding: 0;
  font-family: 'Gotham Pro';
  color: white;
  background-color: #000;
  scroll-behavior: smooth;
}

@font-face {
  font-family: 'Gotham Pro';
  src: url('GothamPro-Light.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

main {
  margin-top: 0px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background: rgba(128, 128, 128, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.header-container {
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 200px;
  box-sizing: border-box;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
}

.logo-image {
  width: 40px;
  height: auto;
}

.logo-text {
  font-size: 20px;
  font-weight: bold;
  color: white;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: white;
  font-size: 18px;
  text-decoration: none;
}

.booking-button {
  background: #6f00bd;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 22px;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  background: url('Legs2.jpg') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  box-sizing: border-box;
  overflow: hidden;
}

.hero h1 {
  font-size: 74px;
  font-weight: normal;
  margin: 20px 0;
}

.hero p {
  font-size: 18px;
  margin: 10px 0 30px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-buttons {
  display: flex;
  gap: 10px;
}

.hero-buttons a {
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
}

.mehr-erfahren {
  border: 2px solid white;
  color: white;
  background: transparent;
  font-size: 18px;
}

.termin-anfragen {
  border: none;
  color: white;
  font-weight: bold;
  font-size: 20px;
  background: #6f00bd;
}

/* Über uns */
.about-section {
  background-color: #fff;
  color: #333;
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.about-container {
  max-width: 1400px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 0 100px;
  flex-wrap: wrap;
}

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

.about-text h2 {
  font-size: 64px;
  font-weight: bold;
  color: #000;
  margin-bottom: 30px;
}

.about-text p {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

.about-text .slogan {
  font-weight: bold;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.about-image img {
  width: 1400px;
  max-width: 100%;
  max-height: 700px;
  object-fit: cover;
  border-radius: 15px;
  margin-left: 0;
}

/* Vorteile */
.vorteile-section {
  background-color: #e0e0e0;
  color: #333;
  text-align: center;
  padding: 60px 20px;
}

.benefit img {
  filter: grayscale(1) brightness(0.6);
  opacity: 0.7;
}

.section-title {
  font-size: 38px;
  color: #6f00bd;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 26px;
  color: #333;
  margin-bottom: 60px;
}

.vorteile-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 100px;
}

.vorteil {
  text-align: center;
}

.vorteil img {
  width: 74px;
  height: 74px;
  margin-bottom: 10px;
}

.vorteil-title {
  font-size: 22px;
  font-weight: bold;
  color: #6f00bd;
  margin-bottom: 10px;
}

.vorteil-text {
  font-size: 20px;
  color: #444;
  line-height: 1.6;
}

/* Leistungen */
.leistungen-section {
  background-color: #fff;
  color: #333;
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.leistungen-container {
  max-width: 1400px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 0 100px;
  flex-wrap: wrap;
}

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

.leistungen-text h2 {
  font-size: 64px;
  font-weight: bold;
  color: #000;
  margin-bottom: 30px;
}

.leistungen-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 24px;
  color: #333;
}

.leistungen-list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.check-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url('checkmark-sharp.svg') no-repeat center center;
  background-size: contain;
  margin-right: 15px;
}

.leistungen-image {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.leistungen-image img {
  width: 1400px;
  max-width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 15px;
  margin-left: 0;
}

/* Rezensionen */
.rezensionen {
  display: flex;
  justify-content: space-between;
  background-color: #e0e0e0; /* цвет как в Vorteile */
  padding: 40px 20px;
  gap: 20px;
  flex-wrap: wrap;
}

.rezension {
  display: flex;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 32%;
  padding: 20px;
  box-sizing: border-box;
  align-items: center;
}

.kundenfoto {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px;
}

.rezension-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.rezension-text .text {
  font-size: 16px;
  color: #6f00bd; /* как "keine Anfahrtskosten" */
  margin-bottom: 10px;
}

.sterne {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

.rezension-text .name {
  font-size: 14px;
  color: #333; /* как "Ich komme direkt zu dir" */
  font-weight: 500;
}

/* Kontakt */
.kontakt-container {
  background: #e0e0e0;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
}

.kontakt-card {
  background: white;
  border-radius: 12px;
  max-width: 1400px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 40px;
  gap: 40px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.kontakt-info {
  flex: 1 1 300px;
}

.kontakt-info .icon img {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}

.kontakt-info h2 {
  color: #8800ff;
  font-size: 38px;
  margin-bottom: 15px;
}

.kontakt-info p {
  color: #333;
  font-size: 22px;
  line-height: 1.5;
}

.kontakt-form {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.kontakt-form label {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 10px;
  color: #333;
  display: block;
}

.kontakt-form input,
.kontakt-form textarea {
  padding: 5px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

.name-fields {
  display: flex;
  gap: 10px;
}

.name-fields > div {
  flex: 1;
}

.kontakt-form textarea {
  height: 120px;
  resize: vertical;
}

.kontakt-form button {
  background: linear-gradient(to right, #8800ff, #c100ff);
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.kontakt-form button:hover {
  opacity: 0.9;
}

.danke-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f4f4f4;
  padding: 2rem;
}

.danke-box {
  text-align: center;
  background-color: #fff;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
}

.danke-box h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #222;
}

.danke-box p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}

.danke-box .booking-button {
  background-color: #8800ff;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.danke-box .booking-button:hover {
  background-color: #8800ff;
}

/* Google Maps */
.map-section {
  padding: 60px 20px;
  background-color: #e0e0e0;
  text-align: center;
}

.map-section h2 {
  color: #333;
  font-size: 2rem;
  margin-bottom: 10px;
}

.map-section p {
  color: #333;
  font-size: 22px;
  line-height: 1.5;
}

.map-iframe-wrapper {
  margin: 20px auto;
  max-width: 800px;
}

.map-button-wrapper {
  margin-top: 20px;
}

.map-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #6f00bd;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.map-button:hover {
  background-color: #555;
}

/* Footer */
.footer {
  background-color: #3a3a3a;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: Gotham Pro;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-branding h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
}

.footer-branding p {
  margin: 5px 0 20px;
  font-size: 1rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s;
}

.footer-nav a:hover {
  opacity: 0.7;
}

.footer-bottom {
  border-top: 1px solid #888;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-icons {
  display: flex;
  gap: 15px;
}

.footer-icons span {
  display: inline-block;
  width: 24px;
  height: 24px;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.icon-circle img {
  width: 24px;
  height: 24px;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  gap: 5px;
  align-items: center;
}

.language-switcher a {
  color: white;
  border: 2px solid #b580ff; /* светло-фиолетовая рамка */
  border-radius: 7px;
  padding: 6px 14px;
  font-weight: bold;
  text-decoration: none;
  background-color: #b580ff; /* светлый фиолет */
  transition: background-color 0.3s, color 0.3s;
  font-size: 10px;
}

.language-switcher a.active {
  background-color: #6f00bd; /* тёмно-фиолетовый для активной кнопки */
  color: white;
}

.language-switcher a:hover:not(.active) {
  background-color: #a14de3;
}

/* Адаптив */
@media (max-width: 1200px) {
  .about-container {
    gap: 100px;
    padding: 0 50px;
  }

  .vorteile-container {
    gap: 40px;
  }
	
   .leistungen-container {
    gap: 100px;
    padding: 0 50px;
  }
	
    .rezension {
    max-width: 48%;
  }
	
   .danke-box {
    padding: 2rem;
    border-radius: 0.75rem;
  }

  .danke-box h1 {
    font-size: 1.75rem;
  }

  .danke-box p {
    font-size: 1rem;
  }

  .danke-box .booking-button {
    padding: 0.65rem 1.25rem;
    font-size: 1rem;
  }
	
    .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-icons {
    margin-top: 10px;
  }
	
 .language-switcher {
	flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 6px;
  }

  .language-switcher a {
    padding: 5px 10px;
    font-size: 5px;
  }
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    height: auto;
    padding: 10px 10px;
    align-items: center;
    text-align: center;
  }

  .header-container {
    flex-direction: column;
    max-width: 100%;
    gap: 10px;
    padding: 10px;
  }

  .logo-text {
    font-size: 14px;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .nav-link {
    font-size: 14px;
  }

  .booking-button {
    font-size: 14px;
    padding: 8px 10px;
  }

  .hero {
    padding-top: 0;
    background-position: center;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .hero-buttons a {
    width: 80%;
    margin: 5px auto;
    text-align: center;
  }

  .about-container {
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
    text-align: center;
  }

  .about-text h2 {
    font-size: 36px;
  }

  .about-text p {
    font-size: 18px;
  }

  .about-image img {
    max-width: 100%;
    margin-left: 0;
  }

  .vorteile-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .vorteil {
    max-width: 100%;
  }

  .vorteil img {
    width: 40px;
    height: 40px;
  }

  .vorteil-title {
    font-size: 16px;
  }

  .vorteil-text {
    font-size: 14px;
  }
	
  .leistungen-container {
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
    text-align: center;
  }

  .leistungen-text h2 {
    font-size: 36px;
  }

  .leistungen-list {
    font-size: 18px;
  }

  .check-icon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
  }

  .leistungen-image img {
    max-width: 100%;
    margin-left: 0;
  }

   .rezension {
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
  }

  .kundenfoto {
    margin: 0 0 15px 0;
  }

  .rezension-text {
    align-items: flex-start;
  }
	
    .kontakt-card {
    flex-direction: column;
    padding: 30px 20px;
  }

  .name-fields {
    flex-direction: column;
  }
	
   .danke-box {
    padding: 1.5rem;
    border-radius: 0.5rem;
  }

  .danke-box h1 {
    font-size: 1.5rem;
  }

  .danke-box p {
    font-size: 0.95rem;
  }

  .danke-box .booking-button {
    width: 100%;
    display: inline-block;
    padding: 0.75rem;
    font-size: 1rem;
  }
	
   .footer {
    padding: 30px 15px 15px;
  }

  .footer-branding h3 {
    font-size: 1.2rem;
  }

  .footer-branding p {
    font-size: 0.95rem;
  }

  .footer-nav a {
    font-size: 0.95rem;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }

  .footer-icons span {
    width: 22px;
    height: 22px;
  }
  
 .language-switcher {
	flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 6px;
  }

  .language-switcher a {
    padding: 5px 10px;
    font-size: 5px;
  }
}