@font-face {
  font-family: 'HeadlineH1';
  src: url('./fonts/sketch_block_bold 1.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'HeadlineH2';
  src: url('./fonts/HelveticaNeueLTPro-Bd.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'HeadlineH3';
  src: url('./fonts/HelveticaNeueLTPro-Roman.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'text';
  src: url('./fonts/HelveticaNeueLTPro-Roman.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'text', sans-serif;
  margin: 0;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  background: linear-gradient(135deg, #2e7d32, #4caf50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding: 20px;

}

h1 {
  font-family: 'HeadlineH1', sans-serif; /* Hier beliebige Schriftart eintragen */
  color: rgb(255, 255, 255);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 10px;
  /*text-align: center;*/
}

h2 {
  font-family: 'HeadlineH2', sans-serif; /* Hier beliebige Schriftart eintragen */
  color: rgb(255, 255, 255)
}

h3 {
  font-family: 'HeadlineH3', sans-serif; /* Hier beliebige Schriftart eintragen */
  color: rgb(255, 255, 255)
}


/*title boxes and stuff */
.title-box-green {
  display: flex;               /* Bild + Text nebeneinander */
  align-items: center;                /* vertikal ausrichten */
  justify-content: center;  /* Inhalt in der Box zentrieren */
  margin: 0 auto;           /* Boxen auf der Seite zentrieren */
  
  background-color: #57ab27;          /* Farbe des Kastens */
  border-radius: 15px 15px 15px 15px; /* abgeschrägte / gleiche Ecken */
  box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* leichter Schatten */
  
  padding: 12px 20px;                 /* Innenabstand - schrift zur abgeschrägter Ecke */
  width: 90%; 

}

.title-box-white {
  display: flex;               /* Bild + Text nebeneinander */
  align-items: center;                /* vertikal ausrichten */
  justify-content: center;  /* Inhalt in der Box zentrieren */
  margin: 0 auto;                  /* vertikal ausrichten */

  background-color: #ffffff;          /* Farbe des Kastens */
  padding: 12px 20px;                 /* Innenabstand */
  width: 90%;
  border-radius: 15px 15px 15px 15px; /* abgeschrägte / ungleiche Ecken */
  box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* leichter Schatten */
}

.title-icon-left {
  width: 10%;                        /* Größe des Bildes */
  /* height: 20%; */
  margin-right: 12px;                 /* Abstand zwischen Bild und Text */
}

.title-icon-right {
  width: 40px;                        /* Größe des Bildes */
  height: 40px;
  margin-left: 12px;                 /* Abstand zwischen Bild und Text */
}


.title-text-yellow {
  color: #ffdd00;                     /* Schriftfarbe */
  margin: 0;                          /* Standardabstände entfernen */
}

.title-text-green {
  color: #57ab27;                     /* Schriftfarbe */
  margin: 0;                          /* Standardabstände entfernen */
}


        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: Arial, Helvetica, sans-serif;
        }


        .container {
            max-width: 600px;
        }

        .main-logo {
            width: 180px;
            max-width: 60%;
            margin: 0 auto 30px;
        }

        .main-logo img {
            width: 100%;
            height: auto;
        }

        /* h1 {
            font-size: clamp(1.6rem, 4vw, 2.4rem);
            margin-bottom: 10px;
        } */

        p {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            opacity: 0.9;
        }

        /* Firmenlogo unten rechts */
        .footer-logo {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 80px;
            opacity: 0.9;
        }

        .footer-logo img {
            width: 100%;
            height: auto;
        }

        @media (max-width: 480px) {
            .footer-logo {
                width: 60px;
                bottom: 15px;
                right: 15px;
            }
        }

  .social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 30px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
    transform: scale(1.1);
    background: rgba(255,255,255,0.25);
}

.social-links svg {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px;
    max-height: 22px;
    display: block;
}


/* .leaflet-routing-container {
    width: 100vw;
    height: 100vh;     
    overflow-y: auto;      
}


.leaflet-routing-summary {
  display: block !important;
} */

/* Wegpunkt-Eingabefelder verbergen
.leaflet-routing-geocoders {
  display: none !important;
} */

/*routing bottom*/
/* .routing-bottom {
  position: absolute !important;
  bottom: 0;
  left: 0;
  right: 0;

  width: 100% !important;
  margin: 0 !important;

  background: white;
  padding: 6px 8px;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.15);

  max-height: 160px;
  overflow-y: auto;
  z-index: 9999;
} */