/*
=============== 
Fonts
===============
*/
@import url("https://fonts.googleapis.com/css?family=Lato:400,700&display=swap");

/*
=============== 
Variables
===============
*/

:root {
  /* dark shades of primary color*/
  --clr-primary-1: hsl(184, 91%, 17%);
  --clr-primary-2: hsl(185, 84%, 25%);
  --clr-primary-3: hsl(185, 81%, 29%);
  --clr-primary-4: hsl(184, 77%, 34%);
  /* primary/main color */
  --clr-primary-5: hsl(185, 62%, 45%);
  /* lighter shades of primary color */
  --clr-primary-6: hsl(185, 57%, 50%);
  --clr-primary-7: hsl(184, 65%, 59%);
  --clr-primary-8: hsl(184, 80%, 74%);
  --clr-primary-9: hsl(185, 94%, 87%);
  --clr-primary-10: hsl(186, 100%, 94%);
  /* darkest grey - used for headings */
  --clr-grey-1: hsl(209, 61%, 16%);
  --clr-grey-2: hsl(211, 39%, 23%);
  --clr-grey-3: hsl(209, 34%, 30%);
  --clr-grey-4: hsl(209, 28%, 39%);
  /* grey used for paragraphs */
  --clr-grey-5: hsl(210, 22%, 49%);
  --clr-grey-6: hsl(209, 23%, 60%);
  --clr-grey-7: hsl(211, 27%, 70%);
  --clr-grey-8: hsl(210, 31%, 80%);
  --clr-grey-9: hsl(212, 33%, 89%);
  --clr-grey-10: hsl(210, 36%, 96%);
  --clr-white: #fff;
  --ff-primary: Helvetica Neue BASF, sans-serif;
  --transition: all 0.3s linear;
  --spacing: 0.25rem;
  --radius: 0.5rem;
  --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
/*
=============== 
Global Styles
===============
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--ff-primary);
  background: var(--clr-white);
  color: var(--clr-grey-1);
  line-height: 1.5;
  font-size: 0.875rem;
}
ul {
  list-style-type: none;
}
a {
  text-decoration: none;
}
img {
  width: 100%;
  display: block;
}
/* img:not(.nav-logo) {
  width: 100%;
  display: block;
} */

h1,
h2,
h3,
h4 {
  letter-spacing: var(--spacing);
  text-transform: capitalize;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 0.875rem;
}
p {
  margin-bottom: 1.25rem;
  color: var(--clr-grey-3);
  font-family: "Helvetica Neue LT W05_45", "Helvetica Neue World 45", Helvetica,
    Arial, sans-serif;
}
@media screen and (min-width: 800px) {
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1rem;
  }
  body {
    font-size: 1rem;
  }
  h1,
  h2,
  h3,
  h4 {
    line-height: 1;
  }
}
/*  global classes */

.btn {
  text-transform: uppercase;
  background: var(--clr-primary-5);
  color: var(--clr-white);
  padding: 0.375rem 0.75rem;
  letter-spacing: var(--spacing);
  display: inline-block;
  /* font-weight: 700; */
  transition: var(--transition);
  font-size: 0.875rem;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Hero */

#home {
  height: 100vh; /* Volle Höhe des Viewports */
}

.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1; /* Video hinter den anderen Elementen */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75),
    rgba(72, 209, 255, 0.5)
  ); /* Leichter Schleier von links (weiß) nach rechts (hellblau) */
  z-index: -1; /* Overlay hinter den anderen Elementen */
}

.hero-banner {
  position: relative;
  z-index: 1; /* Sicherstellen, dass die Inhalte vor dem Overlay liegen */
  color: white; /* Textfarbe anpassen */
  text-align: left; /* Text linksbündig */
  padding: 2rem;
  max-width: 600px; /* Optional: Maximalbreite festlegen, um die Lesbarkeit zu verbessern */
}

.hero-banner h1 {
  letter-spacing: 0;
  line-height: 1;
}

.hero-desc {
  color: white;
  font-weight: 100;
  margin-bottom: 4rem;
  font-size: 1.5rem;
  font-family: Helvetica Neue BASF, sans-serif;
}

.hero-links {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-start; /* Linksbündig ausrichten */
  align-items: center;
}

.hero-products-link {
  font-size: 1.5rem;
  color: #0081e3;
}

.btn:hover {
  color: var(--clr-primary-1);
  background: var(--clr-primary-8);
}

/* navbar */
.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: var(--clr-white); /* Leicht durchsichtiger Hintergrund */
  color: white;
  position: absolute; /* Navbar oben auf dem Video */
  top: 0;
  left: 0;
  z-index: 3; /* Sicherstellen, dass die Navbar über dem Video liegt */
}

.navbar-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.burger-menu {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.burger-bar {
  width: 25px;
  height: 3px;
  background-color: var(--clr-grey-1);
  margin: 4px 0;
}

/* Container für Dropdown */
.dropdown {
  display: inline-block;
  margin-left: 20px;
}

/* Styling für das Select-Element */
.dropdown select {
  background-color: white;
  color: var(--clr-grey-1); /* Textfarbe */
  padding: 10px;
  font-size: 1rem;
  border: none; /* Kein Rand */
  border-radius: 5px; /* Abgerundete Ecken */
  cursor: pointer;
  outline: none; /* Entfernt den Fokusrahmen */
  transition: box-shadow 0.3s ease; /* Sanfter Übergang für Schatten */
}

.logo img {
  height: 50px;
  color: white;
}

.nav-links {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Leicht durchsichtiger Hintergrund */
  color: white;
  z-index: 2;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.nav-links ul {
  list-style-type: none;
  padding: 0;
}

.nav-links ul li {
  margin: 10px 0;
}

.nav-links ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  letter-spacing: 2px;
  transition: all 1s ease;
}

.nav-links ul li a:hover {
  color: var(--clr-primary-5);
}

.nav-link {
  text-transform: uppercase;
}

/* owner */
#owner {
  padding: 60px 20px;
  background-color: #f4f4f4;
}

.owner-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.owner-image {
  max-width: 300px;
  padding: 10px;
}

.owner-image img {
  width: 100%;
  border-radius: 5px; /* Kreisförmiges Bild */
}

.owner-info {
  flex: 2 1 600px;
  padding: 10px 20px;
}

.owner-info h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #333;
}

.owner-info h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #007bff;
}

.owner-info p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* about us */

.about-container {
  width: 90vw; /* 90% der Viewport-Breite */
  max-width: 1170px; /* Maximalbreite von 1170px */
  margin: 0 auto; /* Zentrieren des Containers */
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-content {
  margin-top: 5rem;
  margin-bottom: 5rem;
  text-align: justify;
}

.about-content img {
  max-width: 100%; /* Bildbreite anpassen */
  height: auto; /* Automatische Höhe */
}

.about-content p {
  margin-top: 1rem; /* Abstand zum Bild */
  font-size: 1.2rem; /* Schriftgröße anpassen */
}

.additional-content {
  display: block; /* Block-Layout für mobile Geräte */
}

.additional-content div {
  margin-bottom: 1rem; /* Abstand zwischen den Elementen */
}

.additional-content img {
  max-width: 100%; /* Bildbreite anpassen */
  height: auto; /* Automatische Höhe */
  display: block; /* Block-Level-Element */
  margin: 0 auto; /* Zentrieren des Bildes */
}

.additional-content h2 {
  font-size: 1.5rem; /* Schriftgröße anpassen */
  margin-bottom: 1rem; /* Abstand zum nächsten Absatz */
}

.additional-content p {
  margin-bottom: 1rem; /* Abstand zwischen den Absätzen */
  font-size: 1rem; /* Schriftgröße anpassen */
}

.additional-content a {
  display: inline-block; /* Inline-Block-Level-Element */
  padding: 0.5rem 1rem; /* Innenabstand */
  background-color: var(--clr-primary-5); /* Hintergrundfarbe */
  color: white; /* Textfarbe */
  text-decoration: none; /* Keine Unterstreichung */
  border-radius: 5px; /* Abgerundete Ecken */
  transition: background-color 0.3s; /* Übergangseffekt */
}

.additional-content a:hover {
  background: var(--clr-primary-6);
}

/* Stile für größere Bildschirme */
@media (min-width: 768px) {
  .additional-content {
    display: flex; /* Flex-Layout für Tablets und größere Bildschirme */
    gap: 2rem; /* Abstand zwischen den Elementen */
    align-items: center; /* Vertikale Zentrierung der Elemente */
  }

  .additional-content div {
    flex: 1; /* Elemente gleichmäßig verteilen */
    margin-bottom: 0; /* Abstand unten entfernen */
  }
}

@media (min-width: 1024px) {
  #about-us {
    padding: 4rem 0; /* Abstand oben und unten für größere Bildschirme */
  }

  .about-us-desc {
    font-size: 1.5rem; /* Größere Schriftgröße */
  }

  .additional-content h2 {
    font-size: 2rem; /* Größere Schriftgröße */
  }

  .additional-content p {
    font-size: 1.2rem; /* Größere Schriftgröße */
  }
}

/* expertise */

#expertise {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0; /* Hintergrundfarbe für den Abschnitt */
  padding: 2rem 0; /* Abstand oben und unten für mobile Geräte */
}

.expertise-container {
  width: 90vw; /* 90% der Viewport-Breite */
  max-width: 1170px; /* Maximalbreite von 1170px */
  margin: 0 auto; /* Zentrieren des Containers */
}

.expertise-content {
  text-align: left; /* Text linksbündig */
}

.expertise-desc p {
  font-size: 1.2rem; /* Schriftgröße anpassen */
  margin-bottom: 1rem; /* Abstand zum nächsten Absatz */
}

.expertise-desc {
  display: block; /* Block-Layout für mobile Geräte */
}

.expertise-desc div {
  margin-bottom: 1rem; /* Abstand zwischen den Elementen */
}

.expertise-desc img {
  max-width: 100%; /* Bildbreite anpassen */
  height: auto; /* Automatische Höhe */
  display: block; /* Block-Level-Element */
  margin: 0 auto; /* Zentrieren des Bildes */
}

.expertise-desc h2 {
  font-size: 1.5rem; /* Schriftgröße anpassen */
  margin-bottom: 1rem; /* Abstand zum nächsten Absatz */
}

.expertise-desc p {
  margin-bottom: 1rem; /* Abstand zwischen den Absätzen */
  font-size: 1rem; /* Schriftgröße anpassen */
}

.expertise-desc a {
  display: inline-block; /* Inline-Block-Level-Element */
  padding: 0.5rem 1rem; /* Innenabstand */
  background-color: var(--clr-primary-5); /* Hintergrundfarbe */
  color: white; /* Textfarbe */
  text-decoration: none; /* Keine Unterstreichung */
  border-radius: 5px; /* Abgerundete Ecken */
  transition: background-color 0.3s; /* Übergangseffekt */
}

.expertise-desc a:hover {
  background: var(--clr-primary-6);
}

/* Stile für größere Bildschirme */
@media (min-width: 768px) {
  .expertise-desc {
    display: flex; /* Flex-Layout für Tablets und größere Bildschirme */
    gap: 2rem; /* Abstand zwischen den Elementen */
    align-items: center; /* Vertikale Zentrierung der Elemente */
  }

  .expertise-desc div {
    flex: 1; /* Elemente gleichmäßig verteilen */
    margin-bottom: 0; /* Abstand unten entfernen */
  }
}

@media (min-width: 1024px) {
  #expertise {
    padding: 4rem 0; /* Abstand oben und unten für größere Bildschirme */
  }

  .expertise-desc p {
    font-size: 1.5rem; /* Größere Schriftgröße */
  }

  .expertise-desc h2 {
    font-size: 2rem; /* Größere Schriftgröße */
  }

  .expertise-desc p {
    font-size: 1.2rem; /* Größere Schriftgröße */
  }
}

/* products */

#products {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff; /* Hintergrundfarbe für den Abschnitt */
  padding: 2rem 0; /* Abstand oben und unten für mobile Geräte */
}

.products-container {
  width: 90vw; /* 90% der Viewport-Breite */
  max-width: 1170px; /* Maximalbreite von 1170px */
  margin: 0 auto; /* Zentrieren des Containers */
}

.products-content {
  text-align: left; /* Text linksbündig */
}

.products-desc p {
  font-size: 1.2rem; /* Schriftgröße anpassen */
  margin-bottom: 1rem; /* Abstand zum nächsten Absatz */
}

.products-desc {
  display: block; /* Block-Layout für mobile Geräte */
}

.products-desc div {
  margin-bottom: 1rem; /* Abstand zwischen den Elementen */
}

.products-desc img {
  max-width: 100%; /* Bildbreite anpassen */
  height: auto; /* Automatische Höhe */
  display: block; /* Block-Level-Element */
  margin: 0 auto; /* Zentrieren des Bildes */
}

.products-desc h2 {
  font-size: 1.5rem; /* Schriftgröße anpassen */
  margin-bottom: 1rem; /* Abstand zum nächsten Absatz */
}

.products-desc p {
  margin-bottom: 1rem; /* Abstand zwischen den Absätzen */
  font-size: 1rem; /* Schriftgröße anpassen */
}

.products-desc a {
  display: inline-block; /* Inline-Block-Level-Element */
  padding: 0.5rem 1rem; /* Innenabstand */
  background-color: var(--clr-primary-5); /* Hintergrundfarbe */
  color: white; /* Textfarbe */
  text-decoration: none; /* Keine Unterstreichung */
  border-radius: 5px; /* Abgerundete Ecken */
  transition: background-color 0.3s; /* Übergangseffekt */
}

.products-desc a:hover {
  background-color: var(--clr-primary-6); /* Hintergrundfarbe beim Hover */
}

/* Stile für größere Bildschirme */
@media (min-width: 768px) {
  .products-desc {
    display: flex; /* Flex-Layout für Tablets und größere Bildschirme */
    gap: 2rem; /* Abstand zwischen den Elementen */
    align-items: center; /* Vertikale Zentrierung der Elemente */
  }

  .products-desc div {
    flex: 1; /* Elemente gleichmäßig verteilen */
    margin-bottom: 0; /* Abstand unten entfernen */
  }
}

@media (min-width: 1024px) {
  #products {
    padding: 4rem 0; /* Abstand oben und unten für größere Bildschirme */
  }

  .products-desc p {
    font-size: 1.5rem; /* Größere Schriftgröße */
  }

  .products-desc h2 {
    font-size: 2rem; /* Größere Schriftgröße */
  }

  .products-desc p {
    font-size: 1.2rem; /* Größere Schriftgröße */
  }
}

/* footer */
.footer {
  background-color: #7c7c7c; /* Hintergrundfarbe */
  color: #fff; /* Textfarbe */
  padding: 2rem; /* Innenabstand oben und unten */
}

.footer-container {
  width: 90vw; /* 90% der Viewport-Breite */
  max-width: 1170px; /* Maximalbreite von 1170px */
  display: grid;
  grid-template-columns: 1fr; /* Einspaltiges Layout für mobile Geräte */
}

.footer-article {
  text-align: left; /* Text linksbündig */
}

.footer-article h3 {
  font-size: 1rem; /* Schriftgröße der Überschrift */
  letter-spacing: 0;
  margin-bottom: 0;
  font-weight: 400;
}

.footer-article ul {
  list-style: none; /* Entfernen der Aufzählungszeichen */
  padding: 0; /* Entfernen der Innenabstände */
}

.footer-article ul li {
  margin-bottom: 0.5rem; /* Abstand zwischen den Listenelementen */
}

.footer-article ul li a {
  color: #ffffff; /* Linkfarbe */
  text-decoration: none; /* Keine Unterstreichung */
  transition: color 0.3s; /* Übergangseffekt */
  font-size: 0.7rem;
}

.footer-article ul li a:hover {
  color: var(--clr-primary-5); /* Linkfarbe beim Hover */
}

/* Stile für größere Bildschirme */
@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(
      2,
      1fr
    ); /* Zweispaltiges Layout für Tablets */
  }
}

@media (min-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(
      4,
      1fr
    ); /* Vier-Spaltiges Layout für größere Bildschirme */
  }

  .footer-article h3 {
    font-size: 1rem; /* Größere Schriftgröße der Überschrift */
  }
}

/* copyright */
.copyright {
  margin-top: 4rem;
}

.copyright p {
  color: var(--clr-white);
}

@media (min-width: 768px) {
  .copyright p {
    text-align: center;
  }
}
