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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  background-color: rgb(255, 255, 255);
  margin: 0;
  padding: 0;
  font-family: "industry", sans-serif;
}

h1 {
  font-size: 3rem;
  margin-bottom: 0.1rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
}

h3 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  padding-top: 20px;
  margin-bottom: 0;
}


h4 {
  color: black;
  font-size: small;
  margin: 0;
}

p {
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 1rem;
}

.small {
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 1rem;
}

/* HEADER */
.image-container {
  position: relative;
  width: 100%;
}

.image-container img {
  width: 100%;
  object-fit: cover;
  /* height: auto; */
}

.overlay-content {
  /* position: absolute; */
  /* top: 0;
  left: 0;
  width: 100%;
  height: 100%; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 60px 150px;

  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .overlay-content {
    padding: 60px 100px;
  }
}

@media (max-width: 700px) {
  .overlay-content {
    padding: 40px 40px;
  }
}

@media (max-width: 400px) {
  .overlay-content {
    padding: 40px 20px;
  }
}


.logo {
  max-width: 250px;
  height: auto;
  margin-bottom: 80px;
}

@media (max-width: 900px) {
  .logo {
    max-width: 200px;
    margin-bottom: 50px;
  }
}

@media (max-width: 700px) {
  .logo {
    max-width: 150px;
    margin-bottom: 30px;
  }
}



.green-button {
  background-color: #09E85E;
  color: white;
  border: none;
  padding: 10px 40px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  font-family: "industry", sans-serif;
  margin: 4px 2px;
  cursor: pointer;
  clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
  font-weight: 800;
  transition: padding 0.3s ease;
}

.green-button:hover {
  background-color: #31f27b;
  padding: 10px 50px;
}

.header-Bild {
  position: absolute;
  height: 100%;
  width: 100%;
}

@media (max-width: 1200px) {
  h1 {
      font-size: 2.5rem;
  }

  h2 {
      font-size: 2rem;
  }

  h3 {
      font-size: 1.5rem;
  }

  p {
      font-size: 1.2rem;
      line-height: 1.7rem;
  }

  .small {
    font-size: 0.9rem;
    margin-bottom: 0.9rem;
  }

  .green-button {
      font-size: 18px;
      padding: 10px 40px;
  }
}

@media (max-width: 900px) {
  h1 {
      font-size: 2rem;
  }

  h2 {
      font-size: 1.75rem;
  }

  h3 {
      font-size: 1rem;
  }

  p {
      font-size: 1rem;
      line-height: 1.3rem;
  }

  .small {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .green-button {
      font-size: 16px;
      padding: 10px 40px;
  }
}

@media (max-width: 700px) {
  h1 {
      font-size: 1.5rem;
  }

  h2 {
      font-size: 1.3rem;
  }

  h3 {
      font-size: 0.9rem;
  }

  p {
      font-size: 0.9rem;
      line-height: 1.2rem;
  }

  .small {
    font-size: 0.7rem;
    margin-bottom: 0.7rem;
  }

  .green-button {
      font-size: 14px;
      padding: 10px 40px;
  }
}


/*FEATURE*/
.feature {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  padding: 50px 150px;
  width: 100vw;
}



@media (max-width: 1200px) {
  .feature {
    padding: 40px 100px;
  }
  
}

@media (max-width: 900px) {
  .feature {
    padding: 30px 50px 30px 100px;
  }
  
}

@media (max-width: 700px) {
  .feature {
    padding: 30px 40px;
   display: block;
  }

  .feature-text {
    max-width: 100vw;
  }

  .feature-image {
    max-width: 100vw;
  }
  
}

@media (max-width: 400px) {
  .feature {
    padding: 30px 20px;
  }
  
}

/*KARTE*/
/* Styling für den Container */
.suche {
  justify-content: center; /* Zentriert die Inhalte horizontal */
  align-items: center; /* Zentriert die Inhalte vertikal */
  padding: 20px; /* Gibt dem Container etwas Platz innen */
  width: 100%; /* Nimmt die volle verfügbare Breite ein */
  margin-top: 50px;
}


/*Team*/
.team {
  margin: 0px 150px;
  padding-bottom: 50px;
  }

.team-members{
  padding-top: 40px;
  display: flex;
  flex-direction: row;
  gap: 100px;

}

@media (max-width: 1200px) {
  .team {
    margin: 0px 100px;
  }
  .team-members{
    padding-top: 30px;
    gap: 80px;}
}

@media (max-width: 900px) {
  .team {
    margin: 0px 50px;
  }

  .team-members{
    padding-top: 20px;
    gap: 50px;
  }
}

@media (max-width: 700px) {
  .team {
    margin: 0px 40px;
  }

  .team-members{
    padding-top: 10px;
    gap: 20px;
  }
}

@media (max-width: 500px){
  .team-members{
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
}

@media (max-width: 400px) {
  .team {
    margin: 0px 20px;
  }
}


/*FOOTER*/
footer {
  display: flex;
  justify-content: space-between; /* Stellt gleichmäßige Abstände zwischen den Elementen sicher */
  align-items: center; /* Zentriert die Inhalte vertikal */
  color: #000;
  padding-top: 20px;
  padding-left: 50px;
  padding-bottom: 20px;
  border-top: 1px black solid; /* Fügt eine Linie über dem Footer hinzu */
}

footer div {
  flex: 1; /* Jedes Div nimmt gleich viel Platz ein */
}

footer .logo-footer img {
  max-width: 80%; /* Sorgt dafür, dass das Logo vollständig sichtbar ist */
  height: auto; /* Hält das Seitenverhältnis des Logos */
}

footer .adress, footer .contact, footer .impressum, footer .daten {
  padding: 0 10px; /* Fügt horizontalen Abstand hinzu */
}

footer a {
  text-decoration: none; /* Keine Unterstreichung */
  color: #000;
}

footer a:hover {
  text-decoration: underline; /* Fügt eine Unterstreichung beim Hover hinzu */
}

@media (max-width: 700px) {
  footer {
    padding-left: 0;
    flex-direction: column; /* Stellt die Elemente in einer Spalte anstatt in einer Reihe dar */
    text-align: center; /* Zentriert den Text */
  }

  footer div {
    padding: 10px 0; /* Fügt vertikalen Abstand hinzu */
  }
  footer .logo-footer img {
    height: 100px; /* Hält das Seitenverhältnis des Logos */
  }
  
}

/*scooters*/
.scooterpic {
  position: relative;
  max-width: 400px;
  max-height: 400px;
  border-radius: 10px;
}

.scootertitle {
color: white;
position: absolute;
padding: 8px;
display: flex;
font-weight: bold;
}

.scooterrow {
  display: flex;
  padding: 20px;
  }
  
#anzeige {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}

a {
  text-decoration: none;
  color: white;
}

.marker {
  background-image: url('img/marker_karte.svg');
  background-size: cover;
  width: 40px;
  height: 40px;
  border-radius: 0%;
  cursor: pointer;
}

#map {
  justify-content: center;
  align-items: center;
  height: 500px;
  margin-top: 30px;
  }

.geocoder-dropdown-icon {
  display: none;
  /* margin-right: 10px;
  justify-content: left; */
}

.geocoder-dropdown-text {
color: black;
font-family: Industry;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
button.mapboxgl-ctrl-geocoder--button {
  background: transparent;
}
.mapboxgl-ctrl-geocoder--icon path {
  fill: white;
}

.geocoder {
  position: center;
  padding-top: 50px;
  padding-bottom: 0px;
/* Hier KEINE Klammer ergänzen!! */
.mapboxgl-ctrl-geocoder {
  min-width: 60%;
  margin: 0 auto;
  background-color: #09E85E;
  padding: 0px 40px; 
  border: none; 
  color: white;
  font-size: 20px; 
  text-align: left;
  font-family: "industry", sans-serif;
  font-weight: 400;
  outline: none;
  margin: 4px auto; 
  display: block;
}
}

.mapboxgl-popup {
  display: flex;
  max-width: 10%;
}

.mapboxgl-popup-content {
  padding-top: 1px;
  text-align: center;
  font: 400 15px/22px "industry", sans-serif;
  color: black;
}

.mapboxgl-popup-content-wrapper {
  padding: 1px;
}

.applink {
  color: #09E85E;
  font-size: small;
}

.describtion {
  color: black;
  font-size: large;
  margin-bottom: 0;
  word-break: break-all;
}

.mapboxgl-popup-content {
position: relative;
}

.p.describtion {
position: relative;
}