/* style.css */


html {
  overflow-y: scroll;
  margin: 0;
  padding: 0;
}



.hero {
  position: relative;
  width: 100%;
  height: 85vh;
  background: url("/images/alami-transporte.webp") 
              center center no-repeat;
  background-size: cover;
}

@media (max-width: 599px) {
  .hero {
    height: 40vh;
  }
}

@media (min-width: 600px) and (max-width: 921px) {
.hero {
    height: 70vh;
  }
}


.hero-klein {
  position: relative;
  width: 100%;
  height: 35vh;
  background: url("/images/alami-transporte-3.webp") 
              center center no-repeat;
  background-size: cover;
}


/* Text im Hero */
.hero-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* Beispiel: Hero-H1 anpassen */
.hero-text h1 {
  font-size: 144px;                       /* Große Schrift für Desktop */
  font-weight: 700;                      /* Fett (bold) */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7); /* Leichter Schatten */
  margin: 0;                             /* Standard-Margin entfernen */
  line-height: 1.2;                      /* Angenehmer Zeilenabstand */
}


/* Tablet Hochformat (Portrait): 600px – 767px */
@media (min-width: 600px) and (max-width: 767px)  {
  .hero-text h1 {
    font-size: 56px;
  }
}

/* Handy: bis 599px */
@media (max-width: 599px) {
  .hero-text h1 {
    font-size: 32px;
    padding-left: 15px;
  }
}

/* Tablet Querformat (Landscape): 768px – 1400px */
@media (min-width: 768px) and (max-width: 1400px)  {
  .hero-text h1 {
    font-size: 46px;
  }
}

/* Beispiel: Hero-H2 anpassen */
.hero-text h2 {
  font-size: 32px;                       /* Große Schrift für Desktop */
}

/* Responsive Anpassung für kleinere Bildschirme */
@media (max-width: 768px) {
  .hero-text h2 {
    padding-left: 15px; /* Oder margin-left: 15px; */
  }
}

/*sorgt dafür, dass die Zeile "Einblicke in unsere Tranporte ....*/
@media (min-width: 600px) and (max-width: 820px) {
  .tablet-heading-sync {
    min-height: 60px; /* oder 3.4rem, je nach Zeilenhöhe testen */
    display: block;
  }
}





/* Vollbreiter grauer Hintergrund einen Abschnitt */
.full-width-white {
  width: 100%;
  background-color: #FFFFFF;
}




@media (max-width: 768px) {
  .hide-on-mobile {
    display: none;
  }
}



/* Desktop-Logo */
.logo-desktop {
  height: 50px; /* Beispielhöhe für Desktop */
}

/* Mobile-Logo */
 @media (max-width: 768px) {
  .logo-mobile {
    margin-left: 0 !important;
    margin-right: auto !important;
    text-align: left;
    display: flex;
    align-items: center;
	 max-height: 40px;
    height: auto;
  }
}

  .navbar .logo-mobile img {
    max-height: 40px;
    height: auto;
  }
}


/* Klassen für den inc.nav */
.footer-links {
  display: flex;
  justify-content: center; /* Zentriert die Links horizontal */
  align-items: center;
  color: #fff;

}



/* Standardstil für die Links */
.footer-links a {
  color: #fff; /* Weiße Schrift */
  text-decoration: none;
  margin: 0 10px;
  font-size: calc(16px + 0.5vw); /* Responsive Schriftgröße */
}

/* Hover-Effekt */
.footer-links a:hover {
  color: #ccc; /* Helles Grau bei Hover */
}

.highlight-text {
  background-color: #237FC0; /* dein Blau aus .bg-blue */
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}



.bg-blue {
	  background-color: #237FC0;
}


.headline-responsive {
  font-size: 2.2rem;
  font-weight: 700;
}

.subheadline-responsive {
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 1rem;
}

/* Optional: auf kleinen Geräten etwas kleiner */
@media (max-width: 768px) {
  .headline-responsive {
    font-size: 1.8rem;
  }

.subheadline-responsive {
    font-size: 1.3rem;
  }
}


/* Tablets: ab 769px bis 991px */
@media (min-width: 769px) and (max-width: 991px) {
  .headline-responsive {
    font-size: 1.6rem;
  }

  .subheadline-responsive {
    font-size: 1.4rem;
  }
}



.hero-text h1,
.hero-text h2 {
  margin-left: 0;
  padding-left: 10px;
  text-align: left;
}

/* Nur für Desktop (ab 992px = lg) */
@media (min-width: 992px) {
  .navbar-nav .nav-link {
    transition: all 0.2s ease-in-out;
    padding: 0.5rem 1rem;
  }
  }
  .navbar-nav .nav-link:hover {
    background-color: #e6f0ff; /* zartes Blau, passe gerne an */
    color: #003366;             /* dunkles Blau für Text, falls gewünscht */
    font-size: 1.05rem;         /* leicht größer */
    border-radius: 0.25rem;     /* sanfte Rundung */
  }
@media (min-width: 992px) {
  .navbar-nav .nav-link.active {
    text-decoration: underline;
    font-weight: 600;
  }
}

.footer-divider {
  border-top: 5px solid rgba(255, 255, 255, 0.2); /* Heller Trennstrich */
  margin: 1rem auto;
  width: 80%;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffc107; /* Gelb als dezenter Hover-Farbton (Bootstrap warning) */
  text-decoration: none;
}
.kontakt-divider {
  width: 500px;
  height: 2px;
  background-color: #007bff; /* Oder eine Farbe passend zu deinem Design */
  margin: 1rem auto 2rem auto;
  border: none;
}

