/* ------------------------------
   GLOBAL
--------------------------------*/
body {
  margin: 0;
  font-family: Inter, sans-serif;
  color: #1E1E1E;
  background: #FFFFFF;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

/* ------------------------------
   HEADER & NAVIGATION (ursprünglicher Stil)
--------------------------------*/
.header {
  background: #0F3D2E;
  padding: 20px 0;
}

.logo {
  height: 70px;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: #FFFFFF;
  margin-left: 30px;
  text-decoration: none;
  font-weight: 500;
  font-family: Poppins;
}

/* ------------------------------
   HERO-BEREICH (ursprünglicher Stil)
--------------------------------*/
.hero {
  position: relative;
  width: 100%;
  height: 80vh; /* ursprüngliche Höhe */
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ursprüngliche Darstellung */
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  text-align: center;
  background: rgba(15, 61, 46, 0.6); /* ursprüngliches Overlay */
  padding: 30px 50px;
  border-radius: 10px;
}

.hero-text h1 {
  font-family: Poppins;
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 20px;
  font-weight: 300;
}

/* ------------------------------
   BUTTONS
--------------------------------*/
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #C9A86A;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

/* ------------------------------
   GRID & CARDS (Unterseiten)
--------------------------------*/
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block;
}

/* ------------------------------
   FOOTER
--------------------------------*/
.footer {
  background: #0F3D2E;
  color: #FFFFFF;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* ------------------------------
   RESPONSIVE
--------------------------------*/
@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-text h1 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .hero-text {
    padding: 20px 30px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 16px;
  }
}
