.nav-links.open { display: flex; }



body {
  margin: 0;
  font-family: 'Rajdhani', sans-serif;
  background: #f5f5f5;
  color: #333;
}

/* Hamburger Navigation */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #05bcee;
  padding: 10px 15px;
}
.navbar .logo {
  font-weight: bold;
  color: white;
}
.navbar .menu-toggle {
  font-size: 24px;
  cursor: pointer;
  color: white;
}
.nav-links {
  display: none;
  flex-direction: column;
  background: #007a65;
}
.nav-links a {
  padding: 10px;
  text-decoration: none;
  color: white;
  border-bottom: 1px solid #05bcee;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, #05bcee 0%, #00c6a7 100%);
  color: white;
  position: relative;
  overflow: hidden;
  font-weight: bold; 
}

.hero h1 {
  font-size: 1.8rem;
  margin: 10px 0;
}
.hero h2 {
  font-size: 1.8rem;
  margin: 10px 0;
}
.hero h3 {
  font-size: 1.8rem;
  margin: 10px 0;
}
.hero h4 {
  font-size: 1.8rem;
  margin: 10px 0;
}
.hero h5 {
  font-size: 1.8rem;
  margin: 10px 0;
}

.hero p {
  font-size: 1.1rem;
  margin: 5px 0;
}

/* Hero Vehicles */
.hero-vehicles .hero-vehicle {
  position: absolute;
  left: -150px; /* Start links außerhalb */
}

/* Bike Animation */
.hero-vehicles .hero-vehicle:first-child {
  bottom: 10px;
  width: 120px;
  animation: moveBike 8s linear infinite;
}

/* E-Scooter Animation */
.hero-vehicles .hero-vehicle:last-child {
  bottom: 60px; /* leicht höher als Bike */
  width: 100px; /* etwas kleiner */
  animation: moveScooter 10s linear infinite;
}

/* Keyframes */
@keyframes moveBike {
  0% { transform: translateX(-150px); }
  100% { transform: translateX(110vw); }
}

@keyframes moveScooter {
  0% { transform: translateX(-150px); }
  100% { transform: translateX(110vw); }
}

/* Features */
.features {
  padding: 15px;
  font-weight: bold; 
}
.features h2 {
  text-align: center;
  margin-bottom: 10px;
}
.tab-container {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tab-container button {
  flex: 1;
  padding: 14px;               /* größere Fläche */
  font-size: 1.6rem;           /* größere Icons */
  background: #ffffff;         /* heller Hintergrund */
  border: 2px solid #05bcee;   /* blauer Rahmen */
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* leichter Schatten */
}

.tab-container button:hover {
  background: #05bcee;
  color: white;
}

.tab-container button.active {
  background: #00c6a7;
  color: white;
  border-color: #007a65;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2); /* stärkerer Schatten */
  
}


.feature-panel {
  background: white;
  padding: 10px;
  border-radius: 8px;
  display: none;
}
.feature-panel.active {
  display: block;
}
.feature-panel ul {
  padding-left: 20px;
}

/* About */
.about {
  padding: 15px;
  background: #e6f7f9;
}
.about h2 {
  text-align: center;
  margin-bottom: 10px;
}
.about p {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: bold; 
}

/* Contact */
.contact {
  padding: 15px;
}
.contact h2 {
  text-align: center;
  margin-bottom: 10px;
}
.contact a.contact-btn {
  display: block;
  text-align: center;
  margin: 5px 0;
  padding: 10px;
  background: #05bcee;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold; 
}
.qr-code img {
  width: 150px;
  display: block;
  margin: 10px auto;
}

/* Footer / Impressum */
footer {
  text-align: center;
  font-size: 0.75rem;
  padding: 10px;
  background: #f0f0f0;
}
.impressum-text { display: none; }
.impressum-toggle { text-decoration: underline; cursor: pointer; color: #333; margin-top: 5px; display:block; }

.language-switch {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}
.language-switch button {
  margin: 0 5px;
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  background: #05bcee;
  color: #fff;
  font-weight: bold; 
  cursor: pointer;
}
.language-switch button.active {
  background: #00c6a7;
}
.hidden { display: none; }
.tab-container {
  display: flex;
  justify-content: space-around;
  margin-bottom: 10px;
}
.tab-container button {
  flex: 1;
  padding: 10px;
  
  background: #e6f7f9;
  cursor: pointer;
  border-radius: 6px;
   border: 2px solid #fff; /* hier die Farbe festlegen */
}
.tab-container button.active {
  background: #00c6a7;
  color: #fff;
}
.feature-panel { display: none; padding: 10px; }
.feature-panel.active { display: block; }

/* Basis-Button */

.repair-button {
  position: fixed;
  top: 15px;
  right: 60px; /* weiter nach links */
  width: 50px;
  height: 50px;
  background: #73ef0d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 9999;
}

.repair-button:hover{
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.repair-badge{
  position: absolute;
  top: 3px;
  right: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  color: #ff6b00;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

/* Tooltip */
.repair-button[title]:hover::after {
  content: attr(title);
  position: absolute;
  top: 60px;
  right: 0;
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  font-size: 14px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.2s, transform 0.2s;
}

.repair-button[title]:hover::after {
  opacity: 1;
  transform: translateY(0);
}