:root {
  --primary-color: #b80000;
  --secondary-color: #666666;
  --text-color: #000000;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--text-color);
}

/* HEADER */
header {
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 90px;
  width: auto;
}

nav {
  display: flex;
  flex-wrap: wrap;
}

nav a {
  color: var(--text-color);
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
  white-space: nowrap;
}

nav a:hover {
  color: var(--primary-color);
}

/* HERO SECTION */
.hero {
  height: 100vh;
  background: url('laden.jpg') center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
}

.hero-content {
  color: white;
  text-align: center;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 0.8rem 1.5rem;
  font-weight: bold;
  border: none;
  text-decoration: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: #900000;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: #4d4d4d;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin-top: 0.5rem;
    flex-direction: column;
    width: 100%;
  }

  nav a {
    margin: 0.5rem 0;
  }

  .logo img {
    height: 70px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

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

  /* ÜBER UNS SECTION */
.ueberuns {
  padding: 4rem 1.5rem;
  background-color: #f9f9f9;
  color: var(--text-color);
}

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

.ueberuns h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: var(--primary-color);
}

.ueberuns .content {
  display: flex;
  gap: 2rem;
  align-items: stretch; /* beide gleich hoch */
}

.ueberuns .text,
.ueberuns .image {
  flex: 1;
}

.ueberuns .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .ueberuns .content {
    flex-direction: column;
  }

  .ueberuns .text,
  .ueberuns .image {
    width: 100%;
  }

  .ueberuns .image img {
    height: auto; /* Zurücksetzen für Mobile */
    object-fit: contain;
  }
}
}