:root {
  --site-darkgreen: #226325e1;
  --site-darkgray:#1e1e1e;
  --site-beige: #f5f5dc;
  --site-orange: #ff9800;
}



a {
  cursor: pointer;
}





.hero {
  height: 100vh;
  background: url('../img/jeep.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero::after {
  content: "";
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.4); /* Overlay für bessere Lesbarkeit */
  pointer-events: none; /* <- Wichtig! Damit man den Button klicken kann */
}
.hero-content {
  position: relative;
  color: white;
  padding-left: 5%;
  max-width: 600px;
  z-index: 1;
}
.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}
.hero h1 span {
  color: #ff9800;
}
.hero-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #ff9800;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}
.hero-btn:hover {
  background: #e68900;
  transform: scale(1.05);
}

.hero-img{
  opacity: 50%;
  width: 200px;
  height: 200px;
  align-self: center;

}
body {
  font-family: "Arial", sans-serif;
  color: #333;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  padding: 20px;
  display: none; /* hidden until JS shows it */
  z-index: 9999;
}

.cookie-box {
  max-width: 450px;
  margin: auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  text-align: center;
}

.cookie-box h3 {
  margin-top: 0;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 15px;
}

.cb-btn {
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
}

.accept {
  background: #2ecc71;
  color: white;
}

.reject {
  background: #e74c3c;
  color: white;
}

.cookie-more {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: #3498db;
  text-decoration: none;
}
