/* 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: #203864;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo img {
  max-width: 100%;
  height: 150px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  margin: 3px 0;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #203864;
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  z-index: 1002;
  padding: 80px 2rem 2rem;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 1rem;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: #fff;
}

.mobile-menu-icon {
  font-size: 1.2rem;
}

/* Overlay */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.overlay.active {
  display: block;
  opacity: 1;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
              url('/assets/1-min.png');
  background-size: 110%;
  background-position: center center;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
  padding: 6rem 2rem;
  margin: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 450px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  font-size: 3.5rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  animation: fadeInUp 0.8s ease;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease;
}

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

.btn-primary-hero {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #203864;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(32, 56, 100, 0.3);
  animation: fadeInUp 1.2s ease;
}

.btn-primary-hero:hover {
  background: #344a61;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(32, 56, 100, 0.4);
}

.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #203864;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s;
  margin-top: 1rem;
  font-weight: 500;
}

.btn-primary:hover {
  background: #344a61;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(189, 141, 102, 0.3);
}

/* Öffnungszeiten */
.oeffnungszeiten {
  padding: 4rem 0;
  background: #203864;
}

.oeffnungszeiten .card {
  max-width: 700px;
  margin: 0 auto;
  padding: 2.5rem;
  width: 100%;
}

.oeffnungszeiten h2 {
  letter-spacing: 0.25rem;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #203864;
}

/* Produkte */
.produkte {
  padding: 5rem 0;
}

.produkte h2 {
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.25rem;
  font-size: 2.5rem;
  color: #203864;
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 2rem;
}

.produkte .grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.produkte .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.produkte .card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.produkte .card h3 {
  color: #203864;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.produkte .card p {
  flex-grow: 1;
}

.card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.card h3 {
  color: #203864;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* Produkte */
.card-1 {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.3s;
}

.card-1:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-1 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.card-1 h3 {
  color: #203864;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.produkte .card-1 {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.produkte .card-1 img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.produkte .card-1 h3 {
  color: #203864;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.produkte .card-1 p {
  flex-grow: 1;
  color: #203864;
}

/* Unternehmungen Hero Section */
.unternehmungen-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  position: relative;
}

.unternehmungen-wrapper {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.unternehmungen-wrapper h2 {
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.25rem;
    font-size: 2.5rem;
    color: rgb(32, 56, 100);
    font-weight: 700;
}

.unternehmungen-main-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #203864;
  margin-bottom: 1rem;
  margin-top: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.unternehmungen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.unternehmungen-container {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.unternehmungen-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.unternehmungen-container h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #203864;
}

.unternehmungen-subtitle {
  font-size: 1rem;
  color: #203864;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.unternehmungen-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #203864;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.unternehmungen-btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: #203864;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid #2d3e2e;
  align-self: center;
}

.unternehmungen-btn:hover {
  background: #3d4e3e;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .unternehmungen-hero {
    padding: 2rem 1rem;
  }

  .unternehmungen-main-title {
    font-size: 1.8rem;
  }

  .unternehmungen-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .unternehmungen-main-text {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .unternehmungen-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .unternehmungen-container {
    padding: 2rem 1.5rem;
  }

  .unternehmungen-container h3 {
    font-size: 1.5rem;
  }

  .unternehmungen-subtitle {
    font-size: 0.9rem;
  }

  .unternehmungen-description {
    font-size: 0.9rem;
  }

  .unternehmungen-btn {
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
  }
}
/* card */
.card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.card h3 {
  color: #203864;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* Galerie */
.galerie {
  background: #f9f9f9;
  padding: 5rem 0;
}

.galerie h2 {
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 0.25rem;
  font-size: 2.5rem;
  color: #203864;
  font-weight: 700;
}

.slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slide-track {
  display: flex;
  width: calc(200px * 12);
  animation: scroll 40s linear infinite;
}

.slide-track:hover {
  animation-play-state: paused;
}

.slide-track img {
  width: 200px;
  height: 200px;
  margin: 0 20px;
  object-fit: contain;
  filter: grayscale(50%);
  transition: all 0.3s;
}

.slide-track img:hover {
  transform: scale(1.15);
  filter: grayscale(0%);
}

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-200px * 6)); }
}

/* Footer */
.site-footer {
  background: #203864;
  color: #fff;
  text-align: center;
  padding: 2rem 0;
}

.rechtliches {
  margin-bottom: 1rem;
}

footer a {
  text-decoration: none; 
  color: inherit;
  transition: color 0.3s;
}

footer a:hover {
  color: #344a61;
}

/* Impressum/Datenschutz */
.impressum-container,
.datenschutz-container {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  line-height: 1.8;
}

.impressum-container h1,
.datenschutz-container h1 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: #203864;
}

.impressum-container p,
.datenschutz-container p {
  margin-bottom: 1rem;
  color: #444;
}

.impressum-container a,
.datenschutz-container a {
  color: #344a61;
  text-decoration: none;
  font-weight: 500;
}

.impressum-container a:hover,
.datenschutz-container a:hover {
  color: #344a61;
  text-decoration: underline;
}

/* Responsive - Mobile */
@media (max-width: 760px) {
  .header-content {
    padding: 0 1rem;
  }

  .logo img {
    height: 100px;
  }

  .nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    padding: 4rem 1.5rem;
    background-size: 120%;
    background-position: center center;
    min-height: 350px;
  }

  .hero h1 {
    font-size: 2rem;
    letter-spacing: 1px;
  }

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

  .btn-primary-hero {
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
  }

  .produkte h2,
  .galerie h2 {
    font-size: 1.8rem;
  }

  .oeffnungszeiten h2 {
    font-size: 1.5rem;
  }

  .card {
    padding: 1.5rem;
  }

  .produkte .grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 761px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .produkte .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}