body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: url("../images/vip_bg.png") no-repeat center/cover fixed;
  color: #fff;
  line-height: 1.6;
}

/* Überschriften */
h1, h2, h3 {
  color: #fff; /* Weiß statt Gelb */
  margin-bottom: 15px;
}

/* Vorteile */
.vip-benefits {
  padding: 60px 20px;
  text-align: center;
}

.benefits-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.benefit {
  background: rgba(0, 0, 0, 0.7); /* Schwarz transparent */
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 250px;
  color: #eee; /* Hellgrau */
  transition: transform 0.3s;
}

.benefit:hover {
  transform: translateY(-5px);
}

.benefit i {
  font-size: 40px;
  color: #ccc; /* Hellgrau */
  margin-bottom: 15px;
}

/* Booking */
.vip-booking {
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.8); /* Dunkler Hintergrund */
  border-radius: 10px;
  max-width: 600px;
  margin: 40px auto;
  text-align: center;
}

.vip-booking h2 {
  margin-bottom: 20px;
  color: #fff;
}

/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 10px 20px;
  border: 1px solid #555;
  cursor: pointer;
  margin: 0 5px;
  border-radius: 5px;
  transition: background 0.3s;
}

.tab-btn.active {
  background: #fff;
  color: #000;
}

/* Form Inhalte */
.tab-content {
  display: none;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
}

.tab-content.active {
  display: flex;
}

.tab-content input,
.tab-content select {
  padding: 12px;
  border-radius: 5px;
  border: none;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.9); /* Weiß */
  color: #000;
}

/* Button */
.btnn {
  display: inline-block;
  background-color: #333; /* Dunkelgrau */
  color: #fff;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  margin-top: 10px;
}

.btnn:hover {
  background: #555; /* Hellgrau beim Hover */
}

/* Footer */
.vip-footer {
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  border-top: 1px solid #444;
  color: #ccc;
}
