@charset "utf-8";
/* CSS Document */

/* Allgemeines Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e3f2fd; /* Sehr helles Pastellblau für den Hintergrund */
}

/* Header Styling */
header {
    background-color: #1e3a5f; /* Dunkles Blau für den Header */
    color: white;
    padding: 1rem;
}

/* Oberer Bereich des Headers */
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.5rem; /* Abstand zur Navigation */
    border-bottom: 1px solid #cfe3ff; /* Trennlinie zur Navigation */
}

/* Logo links */
.header-left {
    display: flex;
    align-items: center;
}

.logo {
    width: 80px; /* Logo-Größe anpassen */
    height: auto;
}

/* Titel zentriert */
.header-top h1 {
    font-size: 1.5rem;
    color: white;
    flex-grow: 1;
    text-align: center;
    margin: 0;
}

/* Sprachauswahl rechts */
.header-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-right label {
    color: #d9e9ff; /* Hellblauer Text für das Sprachlabel */
}

#language-select {
    padding: 0.25rem;
    border-radius: 5px;
    border: none;
    background-color: #cfe3ff; /* Helles Blau für Dropdown */
    color: #1e3a5f;
    font-weight: bold;
}

/* Navigation Styling */
nav {
    text-align: center;
    padding-top: 0.5rem; /* Abstand zur oberen Zeile */
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap; /* Ermöglicht Zeilenumbruch bei kleineren Bildschirmen */
}

nav ul li a {
    color: #d9e9ff; /* Hellblau für Links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #f5a623; /* Orange für den Hover-Effekt */
}


/* Navigation Styling */
nav {
    text-align: center;
    padding-top: 0.5rem; /* Abstand zur oberen Zeile */
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap; /* Ermöglicht Zeilenumbruch bei kleineren Bildschirmen */
}

nav ul li a {
    color: #d9e9ff; /* Hellblau für Links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #f5a623; /* Orange für den Hover-Effekt */
}


main {
    padding: 2rem;
    color: #1e3a5f; /* Dunkelblau für den Haupttext */
}

section {
    margin-bottom: 2rem;
    background-color: #cfe3ff; /* Helles Blau für die Abschnitte */
    padding: 1rem;
    border-radius: 5px;
    border-left: 5px solid #006d77; /* Petrolfarbene linke Border für Akzent */
}

/* Buttons */
.button {
    display: inline-block;
    background-color: #f5a623; /* Orange als Akzentfarbe für Call-to-Action-Buttons */
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #f29b00; /* Dunkleres Orange für den Hover-Effekt */
}

/* Highlights und Akzente */
.highlight {
    color: #f5a623; /* Orange für Text-Highlights */
    font-weight: bold;
}

.contact-info {
    color: #ffd54f; /* Gelber Akzent für Kontaktinformationen */
}

/* Footer Styling */
footer {
    background-color: #1e3a5f; /* Dunkles Blau passend zum Header */
    color: white;
    text-align: center;
    padding: 1rem;
    position: relative;
    width: 100%;
    bottom: 0;
    border-top: 2px solid #006d77; /* Petrolfarbener Rahmen für Seriosität */
}

footer nav a {
    color: #d9e9ff; /* Heller Blauton für Links im Footer */
    text-decoration: none;
    margin: 0 0.5rem;
}

footer nav a:hover {
    color: #f5a623; /* Orange als Akzentfarbe beim Hover */
}
.main-menu,
.dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-menu > li {
    display: inline-block;
    position: relative;
}

.main-menu a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
}

/* Dropdownmenüs standardmäßig verstecken */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

/* Bei Hover anzeigen */
.dropdown:hover > .dropdown-menu {
    display: block;
}

/* Falls weitere Ebenen existieren, etwas rechts versetzt anzeigen */
.dropdown-menu .dropdown {
    position: relative;
}

.dropdown-menu .dropdown:hover > .dropdown-menu {
    display: block;
    left: 100%;
    top: 0;
}

.cookie-banner {
  position: fixed;
  bottom: -300px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  z-index: 9999;
  font-size: 14px;
  opacity: 0;
  transition: bottom 0.6s ease, opacity 0.6s ease;
  width: 90%;
  max-width: 700px;
}

.cookie-banner.show {
  bottom: 20px;
  opacity: 1;
}

.cookie-banner.hide {
  bottom: -300px;
  opacity: 0;
}

.cookie-banner p {
  margin: 0 0 10px 0;
  text-align: center;
  color: #333;
}

.cookie-btns {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.cookie-btns button {
  padding: 10px 20px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.cookie-btns button:first-child {
  background: #ccc;
  color: #333;
}

.cookie-btns button:last-child {
  background: #0073e6;
  color: #fff;
}