/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  color: #333;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.site-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #333;
  font-size: 1.4rem;
  font-weight: bold;
}

.bike-icon {
  width: 40px;
  height: auto;
}

/* Navigation */
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu ul li a:hover {
  color: #27ae60;
}

/* CTA Button */
.btn-cta {
  background-color: #27ae60;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn-cta:hover {
  background-color: #219150;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu ul {
    display: none; /* для адаптиву — бургер додамо пізніше */
  }
}
/* Hero-Bereich */
.hero {
  position: relative;
  height: 90vh;
  background: url("images/hero.webp") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-btn {
  display: inline-block;
  background-color: #27ae60;
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  transition: background-color 0.3s;
}

.hero-btn:hover {
  background-color: #219150;
}

/* Responsiv */
@media (max-width: 768px) {
  .hero {
    height: 80vh;
  }

  .hero h1 {
    font-size: 2rem;
  }
}

/* Warum wir Section */
.why-us {
  padding: 5rem 2rem;
  background-color: #f8f9fa;
  text-align: center;
}

.why-us .container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-us h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 3rem;
  font-weight: 700;
}

.advantages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.advantage-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.advantage-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.advantage-card h3 {
  color: #27ae60;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.advantage-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .why-us {
    padding: 3rem 1rem;
  }
}
/* Über uns Section */
.about-us {
  padding: 5rem 2rem;
  background-color: #fff;
  text-align: left;
}

.about-us .container {
  max-width: 1000px;
  margin: 0 auto;
}

.about-us h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 700;
}

.about-section {
  margin-bottom: 3rem;
}

.about-section h3 {
  font-size: 1.5rem;
  color: #27ae60;
  margin-bottom: 1rem;
  font-weight: 600;
}

.about-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .about-us {
    padding: 3rem 1rem;
  }

  .about-us h2 {
    font-size: 2rem;
  }

  .about-section h3 {
    font-size: 1.3rem;
  }
}

/* Beliebte Routen Section */
.popular-routes {
  padding: 5rem 2rem;
  background-color: #f8f9fa;
  text-align: center;
}

.popular-routes .container {
  max-width: 1200px;
  margin: 0 auto;
}

.popular-routes h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 3rem;
  font-weight: 700;
}

.route-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.route-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.route-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.route-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.route-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.route-info h3 {
  color: #27ae60;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.route-info p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.price {
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
  display: block;
}

.btn-route {
  background-color: #27ae60;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn-route:hover {
  background-color: #219150;
}

/* Responsive */
@media (max-width: 768px) {
  .popular-routes {
    padding: 3rem 1rem;
  }
}

/* Reisendenbewertungen Section */
.testimonials {
  padding: 5rem 2rem;
  background-color: #f8f9fa;
  text-align: center;
}

.testimonials .container {
  max-width: 1000px;
  margin: 0 auto;
}

.testimonials h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 3rem;
  font-weight: 700;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.testimonial-card h3 {
  font-size: 1.2rem;
  color: #27ae60;
  margin-bottom: 0.5rem;
}

.testimonial-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials {
    padding: 3rem 1rem;
  }
}

/* CTA Section */
.cta {
  padding: 5rem 2rem;
  background-color: #27ae60;
  color: #fff;
  text-align: center;
}

.cta .container {
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn-cta {
  background-color: #fff;
  color: #27ae60;
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}

.btn-cta:hover {
  background-color: #e6e6e6;
}

.btn-cta-secondary {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.btn-cta-secondary:hover {
  background-color: #fff;
  color: #27ae60;
}

/* Responsive */
@media (max-width: 768px) {
  .cta h2 {
    font-size: 1.8rem;
  }

  .cta p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

/* === Footer Styles === */
.site-footer {
  background-color: #222;
  color: #fff;
  padding: 3rem 2rem 1.5rem;
  font-size: 0.95rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.footer-brand {
  text-align: left;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
}

.footer-logo:hover {
  color: #27ae60;
}

.footer-logo .bike-icon {
  width: 30px;
  height: auto;
}

.footer-slogan {
  margin-top: 0.5rem;
  color: #ccc;
  font-size: 0.9rem;
}

/* Navigation */
.footer-nav h4,
.footer-contact h4,
.footer-newsletter h4 {
  color: #27ae60;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #27ae60;
}

/* Kontakt */
.footer-contact p {
  margin-bottom: 0.4rem;
}

.footer-socials {
  margin-top: 0.6rem;
  display: flex;
  gap: 0.6rem;
}

.footer-socials img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}

.footer-socials img:hover {
  filter: brightness(0) invert(0.6) sepia(1) hue-rotate(90deg);
}

/* Newsletter */
.footer-newsletter form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-newsletter input {
  padding: 0.6rem;
  border-radius: 6px;
  border: none;
  outline: none;
  width: 100%;
}

.footer-newsletter button {
  background-color: #27ae60;
  border: none;
  color: #fff;
  padding: 0.6rem;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.footer-newsletter button:hover {
  background-color: #219150;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #444;
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  color: #bbb;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .footer-nav,
  .footer-contact,
  .footer-newsletter {
    text-align: center;
  }

  .footer-newsletter form {
    align-items: center;
  }
}

/* Policy Pages */
.policy-page {
  max-width: 900px;
  margin: 6rem auto 3rem;
  padding: 0 2rem;
  line-height: 1.6;
  color: #333;
}

.policy-page h1 {
  font-size: 2rem;
  color: #27ae60;
  margin-bottom: 1rem;
  text-align: center;
}

.policy-page h2 {
  margin-top: 1.8rem;
  color: #222;
  font-size: 1.3rem;
}

.policy-page p {
  margin: 0.6rem 0;
  color: #555;
}

.policy-page a {
  color: #27ae60;
  text-decoration: none;
}

.policy-page a:hover {
  text-decoration: underline;
}

/* === Kontaktseite === */
.contact-section {
  padding: 6rem 2rem 4rem;
  background-color: #f7f7f7;
  color: #333;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.contact-container h1 {
  font-size: 2.2rem;
  color: #27ae60;
  margin-bottom: 1rem;
}

.contact-container p {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: #555;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  text-align: left;
}

.contact-info h2,
.contact-form h2 {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 1rem;
}

.contact-info p {
  margin: 0.5rem 0;
}

.contact-info a {
  color: #27ae60;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-socials {
  margin-top: 1rem;
  display: flex;
  gap: 0.8rem;
}

.contact-socials img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
  background: #27ae60;
  padding: 6px;
  border-radius: 50%;
}

.contact-socials img:hover {
  filter: brightness(1);
}

/* Kontaktformular */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form button {
  background-color: #27ae60;
  border: none;
  color: #fff;
  padding: 0.8rem;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #219150;
}

/* Responsive */
@media (max-width: 850px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(34, 34, 34, 0.95);
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  font-size: 0.95rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

#cookie-banner p {
  flex: 1 1 60%;
  margin: 0;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
  flex: 1 1 35%;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

.cookie-buttons button {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}

#accept-cookies {
  background-color: #27ae60;
  color: #fff;
}

#accept-cookies:hover {
  background-color: #219150;
}

#learn-more {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

#learn-more:hover {
  background-color: #fff;
  color: #27ae60;
}

/* Responsive */
@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    justify-content: flex-start;
    width: 100%;
    margin-top: 0.5rem;
  }
  .policy-page h1 {
    font-size: 1.5rem;
  }
}
