/* Reset */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
  }
  
  /* Container */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Header */
  .site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo img {
  max-width: 100%;
  height: 150px;
}
  
  .nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
  }
  
  .nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color .3s;
  }
  
  .nav a:hover {
    color: #0077b6;
  }
  
  /* Hero */
  .hero {
    background: url('/assets/hero-image.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 4rem 0 4rem 0;
    position: relative;
  }
  
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    padding: 1rem 1rem 1rem 1rem;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
  }
  
  @media (max-width: 760px) {
  .hero h1 {
    font-size: 1.8rem;  
    padding: 0.5rem;
    word-break: normal;
    overflow-wrap: break-word;
  }
}

.hero h1 {
  font-size: 3rem;
  letter-spacing: 2.5;
}
  
  .btn-primary-hero {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #bd8d66;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: background .3s;
    margin-top: 20px;
  }
  
  .btn-primary-hero:hover {
    background: #344a61;
    
  }

  .btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #344a61;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: background .3s;
    margin-top: 20px;
  }
  
  .btn-primary:hover {
    background: #bd8d66;
    
  }

  /* öffnungszeiten */
.oeffnungszeiten h2 {
    letter-spacing: 0.25rem;
    font-size: 30px;
    display: inline-block;
    padding: 0.25rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
  
  /* Leistungen */
  .leistungen {
    padding: 4rem 0;
  }
  
  .leistungen h2 {
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: 0.25rem;
    font-size: 30px;
  }
  
  .grid {
    display: grid;
    gap: 2rem;
  }
  
  .leistungen .grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .card {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    text-align: center;
  }
  
  .card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
  }

  /* unternehmungen-text */
    .unternehmungen-text {
      text-align: center;
      padding-bottom: 2rem;
    }
  
  /* Galerie */
  .galerie {
    background: #fff;
    padding: 4rem 0rem;
  }
  
  .galerie h2 {
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 0.25rem;
    font-size: 30px;
  }
  
  .slider {
    overflow-x: hidden;
    position: relative;
    width: 100%;
  }
  
  .slide-track {
    display: flex;
    width: calc(200px * 10); /* Bildbreite * Anzahl Bilder */
    animation: scroll 30s linear infinite;
    min-width: 100%
  }
  
  .slide-track img {
    width: 200px;
    height: auto;
    margin: 0 20px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: transform 0.3s;
  }
  
  .slide-track img:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
  }
  
  @keyframes scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 5)); } /* Hälfte der Bilderbreite */
  }
  

  /* Kontakt */
  .kontakt {
    padding: 4rem 0;
  }
  
  .kontakt form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .kontakt input, 
  .kontakt textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
  }
  
  /* Footer */
  .site-footer {
    background: #344a61;
    color: #fff;
    text-align: center;
    padding: 1.5rem 0;
  }

  footer a {
    text-decoration: none; 
    color: inherit;
  }

  footer a:hover {
    color: #bd8d66;
    text-decoration: none; 
  }

  /*rechtliches*/
  /* Impressum- */
.impressum-container {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.impressum-container h1 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #333;
}

.impressum-container p {
  margin-bottom: 1rem;
  color: #444;
}

.impressum-container a {
  color: #007BFF;
  text-decoration: none;
}

.impressum-container a:hover {
  text-decoration: underline;
}

/*Datenschutz-Seite*/
.datenschutz-container {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.datenschutz-container h1 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #333;
}

.datenschutz-container p {
  margin-bottom: 1rem;
  color: #444;
}

.datenschutz-container a {
  color: #007BFF;
  text-decoration: none;
}

.datenschutz-container a:hover {
  text-decoration: underline;
}
  
  /* Responsive */
  @media (max-width: 760px) {
    .nav ul {
      display: none;
      flex-direction: column;
      background: #fff;
      position: absolute;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
  }
