/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 20px 0;
}

/* Header */
.header {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 15px 0;
}

.logo {
  max-width: 280px;
  height: auto;
  margin-bottom: 10px;
}

.header a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: bold;
}

/* Hero */
.hero {
  background: #111 url('bikehotel-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  padding: 12px 25px;
  text-decoration: none;
  margin-top: 15px;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s;
}

.btn:hover {
  background: #e6b800;
}

/* Formular */
.formular-section {
  background: #f9f9f9;
  padding: 40px 20px;
  border-radius: 8px;
  margin-top: 40px;
}

form {
  display: flex;
  flex-direction: column;
}

form label {
  margin: 10px 0 5px;
}

form input, form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  margin-top: 20px;
  cursor: pointer;
}

/* Footer */
.footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

.footer a {
  color: #ffcc00;
  text-decoration: none;
}

/* Preis-Leistungen Layout */
.preise-leistungen-grid {
  display: block;
  align-items: start;
}

.leistungen-col {
  text-align: center;
}

.preis-col {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .preise-leistungen-grid {
    grid-template-columns: 1fr;
  }
  .preis-col {
    margin-top: 30px;
  }
}

/* Preis-Karte */
.preis-card {
  background: #111;
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 320px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.preis-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #ffcc00;
}

.preis-card .preis {
  font-size: 5rem;
  font-weight: bold;
  color: #ffcc00;
  margin-bottom: 10px;
}

.preis-card .preis span {
  font-size: 1rem;
  color: #fff;
  margin-left: 5px;
}

.preis-card .info {
  font-size: 1rem;
  margin-bottom: 15px;
}

.preis-card .zusatz {
  font-size: 0.9rem;
  color: #ddd;
}

/* Leistungen */
.leistungen {
  text-align: center;
  margin: 60px 0;
}

.leistungen-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.leistung-card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s;
  flex: 0 1 220px;
}

.leistung-card:hover {
  transform: translateY(-5px);
}

.leistung-card .icon {
  font-size: 1.8rem;
  color: #2ecc71;
  margin-bottom: 10px;
}

.leistung-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #111;
}

.leistung-card p {
  font-size: 0.95rem;
  color: #444;
}

/* Extra Box für Hol- & Bringdienst */
.extra-box {
  border: 2px dashed #ffcc00;
  padding: 20px;
  border-radius: 8px;
  background: #fffceb;
  max-width: 700px;
  margin: 20px auto 0;
  text-align: left;
}

.extra-box h3 {
  color: #111;
  margin-bottom: 8px;
}

.extra-box p {
  font-size: 0.95rem;
  color: #333;
}

.extra-box a {
  color: #ffcc00;
  font-weight: bold;
  text-decoration: none;
}
.extra-box a:hover {
  text-decoration: underline;
}

/* Responsiv Hero */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.6rem;
  }
}
.preis-card {
  margin: 0 auto;   /* block-Element mittig */
}
section.preise.container, section.vorteile.container {
  text-align: center;   /* Überschrift und Text mittig */
}
.vorteile ul {
  list-style: none;     /* entfernt die Punkte */
  padding: 0;           /* verhindert Einrückung */
  margin: 0 auto;
  display: inline-block; /* sorgt dafür, dass die Liste mittig bleibt */
  text-align: left;     /* Text bleibt links, auch wenn der Block mittig ist */
}

.vorteile li {
  margin: 10px 0;
  font-size: 1rem;
  position: relative;
  padding-left: 25px; /* Platz für Icon */
}

.vorteile li::before {
  content: "✔";
  color: #2ecc71;   /* schönes Grün */
  position: absolute;
  left: 0;
  top: 0;
}
.hero {
  background: url('hero-bikehotel.jpg') center center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.452);  /* dunkler halbtransparenter Layer */
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2; /* Text vor Overlay */
}

h2 {padding:20px;font-style:italic;font-family:kanit;}
