@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/roboto/roboto-regular.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/roboto/roboto-bold.woff2') format('woff2');
  font-display: swap;
}
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
	background-color: #051772;
	color: white;
}
/* Text-Hauptbereich, der Bild und Text nebeneinander anordnet */
.content-section {
  display: flex;                          /* Aktiviert Flexbox zur horizontalen Anordnung */
  flex-wrap: wrap;                        /* Bricht die Elemente um, wenn es auf kleinen Bildschirmen nötig ist */
  padding: 40px;                          /* Abstand innen um den ganzen Bereich */
  max-width: 1200px;                      /* Maximale Breite, damit der Inhalt nicht zu breit wird */
  margin: auto;                           /* Zentriert den Bereich horizontal auf der Seite */
  align-items: flex-start;                /* Zentriert Bild und Text vertikal zueinander */
  gap: 40px;                              /* Abstand zwischen Bild und Text */
}

/* Bild selbst – passt sich flexibel an */
.image-container img {
  max-width: 100%;                        /* Bild wird nie breiter als sein Container */
  height: auto;                           /* Höhe wird proportional zur Breite angepasst */
  border-radius: 12px;                    /* Abgerundete Ecken für modernes Aussehen */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Weicher Schatten für Tiefe/Effekt */
}

/* Container, der das Bild enthält */
.image-container {
  flex: 1 1 40%;                          /* Flex-Anteil: wächst und schrumpft, Basisbreite ca. 40% */
  min-width: 280px;                       /* Mindestbreite, um auf kleinen Bildschirmen lesbar zu bleiben */
}

/* Container, der den Text enthält */
.text-container {
  flex: 1 1 55%;                          /* Flex-Anteil: wächst und schrumpft, Basisbreite ca. 55% */
  min-width: 300px;                       /* Mindestbreite für Lesbarkeit */
}

/* Überschrift im Textbereich */
.text-container h1 {
  margin-top: 0;                          /* Entfernt oberen Abstand, damit es nicht zu viel Lücke gibt */
  font-size: 1.8rem;                      /* Etwas größere Schrift für die Hauptüberschrift */
}

/* Medienabfrage für kleine Bildschirme (z. B. Smartphones) */
@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px;
    }

    .main-nav ul li {
        width: auto;
    }

    .hero-header {
        height: auto;
        display: flex;
		padding: 20px 0;
        flex-direction: column;
        align-items: center;
    }

  .logo-container {
  position: static !important;
  transform: none !important;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}

  .logo {
  width: 180px !important;
  height: auto;
}

  .main-nav {
        margin-top: 0;
        text-align: center;
    }
}

/* Aufzählungen in Form von Pfeilen */
ul.arrow-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

ul.arrow-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  line-height: 1.5;
}

ul.arrow-list li::before {
  content: "➤";                    /* Unicode-Pfeil */
  position: absolute;
  left: 0;
  top: 50%;                   /* Pfeil vertikal mittig zum Listeneintrag */
  transform: translateY(-50%); /* Korrektur: exakt mittig zentriert */
  color: #0299fd;                 /* Modernes Blau */
  font-size: 1.1em;
}
.hero-header {
  position: relative;
  height: 60vh;
  min-height: 350px;
  width: 100%;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.header-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  overflow: hidden;
}

.logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.main-nav {
  position: relative;
  z-index: 1000;
  margin-top: -30px;
  border-bottom: 2px solid #0099FF;
  padding-bottom: 10px;
}

.logo {
    width: 350px;
    height: auto;
}
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
	padding-bottom: 40px;
}
.main-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 30px;
}

.main-nav ul li a {
    text-decoration: none; /* Entfernt Unterstriche */
    color: white; /* Link-Farbe */
    font-weight: bold;
	font-size: 24px;
    padding: 5px 10px;
    transition: background-color 0.9s ease; /* Weicher Übergang beim Hover */
}

.main-nav ul li a:hover {
    background-color: #0099FF; /* Blauer Hintergrund beim Hover */
    border-radius: 8px; /* Abgerundete Ecken */
}
/* Links */
a {
  text-decoration: none;   /* entfernt die Unterstreichung */
  color: white;            /* setzt die Farbe für normale Links */
}

a:visited {
  color: white;            /* setzt die Farbe für besuchte Links */
}

a:hover {
  color: #0299fd;         /* Farbe beim Darüberfahren mit der Maus */
  text-decoration: underline; /* optional: Unterstreichung beim Hover */
}
/* Produkte */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.product {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}

.product p {
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.4;
}

.product a {
    text-decoration: none;
    color: inherit;
}

.product a:hover {
    text-decoration: underline;
}
/* Footer */
footer {
    background-color: #0299fd;
    color: white;
    text-align: center;
    padding: 10px 0;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
    color: #ccc;
}
/* Typografie (Schriftgrößen) */
h1 {
  font-size: 36px;  /* Sehr große Schriftgröße für die Top-Überschrift */
  font-weight: bold;
  text-align: center;
}
.intro-headline::first-letter {
  font-size: 250%;
  color: #0099FF;
  font-weight: bold;
  margin-right: -10px; /* schiebt den Rest etwas nach links */
}
h2 {
  font-size: 24px;  /* Große Schriftgröße für die 2. Überschrift */
  font-weight: bold;
 }
h3 {
  font-size: 24px;  /* Große Schriftgröße für die 2. Überschrift aber zentriert*/
  font-weight: bold;
  text-align: center;
 }
p {
  font-size: 18px;  /* Mittlere Schriftgröße für Fließtext */
  line-height: 1.6;
}

small {
  font-size: 14px;  /* Kleine Schriftgröße für Hinweistexte */
  }

/* Formular-Styling */
form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input, textarea, button {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

textarea {
    resize: vertical;
}

button {
    background-color: #0299fd;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #2e2e99;
}

/* Responsive Navigation für kleinere Bildschirme */
@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .main-nav ul li {
        margin: 5px 0;
    }

    .hero-header {
        height: auto;
        font-size: 1.5rem;
        padding: 40px 20px;
    }

    .logo {
        width: 80px;
    }
}
.h2 {
}
.carousel-caption {
  background: rgba(0, 0, 0, 0.6); /* dunkler, halbtransparenter Hintergrund */
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  max-width: 80%;
  margin: auto;
  bottom: 20px; /* etwas höher setzen */
}

.carousel-caption h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.carousel-caption p {
  font-size: 0.75rem;
  color: #f1f1f1;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}
.carousel-caption {
  animation: fadeInCaption 1s ease-in-out;
}

@keyframes fadeInCaption {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Container für das Video */
.video-header {
  position: relative;
  width: 100%;
  height: 100vh; /* Volle Höhe des Viewports */
  overflow: hidden;
}
/* Dezent platzierter Cookie-Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 0.8rem;
  padding: 10px 14px;
  border-radius: 8px;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 9999;
  max-width: 280px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.cookie-banner.show {
  display: block;
  opacity: 1;
}

.cookie-banner a {
  color: #fff;
  text-decoration: underline;
  font-weight: 400;
}

.cookie-actions {
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.cookie-actions button {
  background-color: #0099ff;
  border: none;
  padding: 4px 10px;
  border-radius: 4px;
  color: #fff;
  font-size: 0.75rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cookie-actions button:hover {
  background-color: #007acc;
}

/* Video anpassen, damit es den gesamten Container abdeckt */
.video-header video {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%); /* Zentriert das Video horizontal */
  width: 100%;
  height: 100%;
  object-fit: cover; /* Das Video füllt den Bereich aus, ohne Verzerrung */
  z-index: -1; /* Video hinter dem Text platzieren */
}

/* Formular-Styling */
form {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

input,
textarea,
button {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

textarea {
  resize: vertical;
}

button {
  background-color: #0299fd;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #2e2e99;
}
/* === Navigation Dropdown Menü === */

.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px; /* optional für Abstand der Hauptmenüpunkte */
}

.main-nav ul li {
  position: relative;
}

.main-nav ul li a,
.main-nav ul li .dropdown-toggle {
  color: white;
  font-weight: bold;
  font-size: 24px;
  text-decoration: none;
  padding: 5px 10px;
  cursor: pointer;
  background: none;
  border: none;
}

.main-nav ul li a:hover,
.main-nav ul li .dropdown-toggle:hover,
.main-nav ul li a:focus,
.main-nav ul li .dropdown-toggle:focus {
  background-color: #0099FF;
  border-radius: 8px;
  outline: none;
}

/* === Dropdown-Menü === */

.dropdown-menu {
  display: none !important;         /* immer standardmäßig verstecken */
  flex-direction: column;           /* vertikale Anordnung */
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #051772;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.dropdown-menu li {
  display: block;
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: white;
  font-size: 18px;
  text-align: left;
  white-space: nowrap;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background-color: #0099FF;
}

/* === Desktop: Hover aktiviert Dropdown === */
@media (min-width: 769px) {
  .main-nav ul li.dropdown:hover > .dropdown-menu {
    display: flex !important;
    visibility: visible;
    opacity: 1;
  }
}

/* === Mobile: Klick aktiviert Dropdown via Klasse 'open' === */
@media (max-width: 768px) {
  .dropdown.open > .dropdown-menu {
    display: flex !important;
    visibility: visible;
    opacity: 1;
  }
}



