/* ========================================================
   JEEP SAFARI SEITE
======================================================== */
.jeep-page {
  text-align: center;
  padding: 120px 20px 60px 20px;
  background-color: #111;
  color: #fff;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

/* ========================================================
   NAVIGATION (wie Startseite)
======================================================== */
.nav-center {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 150;
  flex-wrap: wrap;
}

.nav-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 2px solid yellow;
  border-radius: 25px;
  background: rgba(255, 255, 0, 0.1);
  color: yellow;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

.nav-btn:hover {
  background: rgba(255, 255, 0, 0.3);
  transform: scale(1.05);
}

/* ========================================================
   ÜBERSCHRIFT
======================================================== */
.jeep-page h2 {
  font-size: 2.5rem;
  color: #ffcc00;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

/* ========================================================
   ANGEBOTE (4x2 Raster)
======================================================== */
.jeep-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  justify-content: center;
  padding-top: 2rem;
}

.jeep-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  min-height: 250px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
  transition: transform 0.3s;
  overflow: hidden;
}

.jeep-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  transition: background 0.3s;
}

.jeep-card:hover::before {
  background: rgba(0,0,0,0.6);
}

.jeep-card:hover {
  transform: translateY(-8px);
}

.jeep-card h3,
.jeep-card p,
.jeep-card .btn-link {
  position: relative;
  z-index: 1;
}

.jeep-card h3 {
  margin: 0.5rem 0;
  font-size: 1.3rem;
}

.jeep-card p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

/* ========================================================
   BUTTON
======================================================== */
.jeep-card .btn-link {
  display: inline-block;
  background: #ffcc00;
  color: #111;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s, background 0.3s;
}

.jeep-card .btn-link:hover {
  transform: scale(1.05);
  background: #ffaa00;
}

/* ========================================================
   RESPONSIVE DESIGN
======================================================== */
@media (max-width: 1200px) {
  .jeep-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .jeep-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .jeep-card {
    width: 90%;
    margin: 0 auto;
  }

  .jeep-page h2 {
    font-size: 2rem;
  }

  .nav-center {
    top: 10px;
    gap: 10px;
    z-index: 200;
  }

  .nav-btn {
    padding: 0.3rem 0.6rem;
    font-size: 0.9rem;
  }
}
