/* Allgemeine Stile */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f4f4f4;
    height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

/* Container-Stil */
.container {
    width: 80%;
    margin: 0 auto;
}

/* Header- und Navigationsstile */
.header {
    background-color: #668db3;
    padding: 20px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
/* ===================================================================================
   Navigationsliste als Flexbox mit gleichmäßigem Abstand
   =================================================================================== */
.header .navbar ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;                /* Abstand zwischen den Menü-Items */
  list-style: none;           /* Aufzählungszeichen entfernen */
  margin: 0;
  padding: 0;
}

/* ===================================================================================
   Menü-Links einheitlich hoch und mittig
   =================================================================================== */
.header .navbar a {
  display: inline-block;
  padding: 0.5rem 0;          /* Vertikaler Puffer, damit sie alle gleich hoch sind */
  line-height: 1;             /* Damit der Link-Text zentriert sitzt */
  white-space: nowrap;        /* Zeilenumbruch verhindern */
}

/* ===================================================================================
   Logo-Bereich: festen Platz links lassen
   =================================================================================== */
.header .logo {
  flex-shrink: 0;             /* Verhindert, dass das Logo schrumpft */
}

/* Dropdown-Container auf „relative“ setzen */
.header .navbar .dropdown {
  position: relative;
}

/* Untermenü standardmäßig verbergen */
.header .navbar .dropdown .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;        /* direkt unter dem Parent-Item */
  left: 50%; /* Zurück zur zentrierten Position */
  transform: translateX(-50%);
  background-color: #668db3; /* Dunkelblauer Hintergrund */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 10px; /* Abgerundete Ecken */
  padding: 15px 40px; /* Mehr Padding für zusätzlichen Platz */
  width: 450px; /* Vergrößerte Box */
  min-width: 450px; /* Mindestbreite der Box */
  text-align: center;
  z-index: 10;
}

/* Bei Hover das Untermenü einblenden */
.header .navbar .dropdown:hover .dropdown-content {
  display: flex;    /* oder inline-flex, je nach gewünschter Ausrichtung */
  justify-content: center; /* Inhalt zentrieren */
  gap: 25px; /* Abstand zwischen den Dropdown-Items */
}

.header .navbar .dropdown-content li {
    padding: 10px 0; /* Padding innerhalb der Listenelemente */
    margin: 0 15px; /* Zusätzliche Abstände links und rechts der Items */
}

.header .navbar .dropdown-content li a {
    color: #fff; /* Weißer Text */
    text-decoration: none;
    font-size: 1.2em; /* Gleiche Schriftgröße wie das Hauptmenü */
    font-weight: bold;
}

.header .navbar .dropdown-content li a:hover {
    color: #cddcfd; /* Helleres Blau beim Hover */
}

/* Dropdown-Box Positionierung */
.header .navbar .dropdown-content li:first-child {
    margin-left: 0; /* Kein zusätzlicher Abstand links für das erste Item */
}

.header .navbar .dropdown-content li:last-child {
    margin-right: 0; /* Kein zusätzlicher Abstand rechts für das letzte Item */
}

/* Spezifische Stile für das Logo */
.logo img {
    width: 180px; /* Feste Breite für das Logo */
    height: auto; /* Höhe proportional zur Breite */
    object-fit: contain; /* Verhindert Zuschneiden des Logos */
    margin: 0; /* Kein zusätzlicher Abstand */
    padding: 0; /* Kein zusätzlicher Innenabstand */
}

.navbar ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    font-size: 1.1em; /* Größere Schriftgröße für das gesamte Menü */
}

.navbar ul li {
    margin-right: 35px;
    position: relative; /* Positionierung für Dropdown */
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em; /* Größere Schriftgröße für die Menüpunkte */
    font-weight: bold; /* Fettere Schrift für bessere Sichtbarkeit */
    padding: 8px 12px; /* Mehr Padding für größere Klickfläche */
}

.navbar ul li a:hover {
    text-decoration: underline;
}

/* Überschriften */
h1 {
    font-size: 3em; /* Große Schriftgröße für h1 */
}

h2 {
    font-size: 2.5em; /* Mittelgroße Schriftgröße für h2 */
}

h3 {
    font-size: 2em; /* Etwas größere Schriftgröße für h3 */
}

/* Absätze */
p {
    font-size: 1.2em; /* Etwas größere Schriftgröße für Absätze */
    line-height: 1.8; /* Größere Zeilenhöhe für bessere Lesbarkeit */
}
/* Globale Stile für Überschriften */

h2, h3 {
    margin-top: 60px; /* Mehr Abstand nach oben */
    margin-bottom: 40px; /* Mehr Abstand nach unten */
}

/* Spezifische Anpassungen für die Überschriften in Sektionen */
.about h2, 
.highlights h2, 
.locations-overview h2, 
.contact-cta h2 {
    margin-top: 80px; /* Noch mehr Abstand über den Sektionstiteln */
    margin-bottom: 15px; /* Noch mehr Abstand unter den Sektionstiteln */
}

.locations-overview p,
.about p,
.highlights p,
.contact-cta p {
    margin-top: 5px; /* Weniger Abstand über dem Text */
}

/* Dropdown Menü */
.dropdown {
    position: relative;
}

.dropdown .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%; /* Zurück zur zentrierten Position */
    transform: translateX(-50%);
    background-color: #668db3; /* Dunkelblauer Hintergrund */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 10px; /* Abgerundete Ecken */
    padding: 15px 40px; /* Mehr Padding für zusätzlichen Platz */
    width: 450px; /* Vergrößerte Box */
    min-width: 450px; /* Mindestbreite der Box */
    text-align: center;
    z-index: 10;
}

.dropdown:hover .dropdown-content,
.dropdown .dropdown-content:hover {
    display: flex;
    justify-content: center; /* Inhalt zentrieren */
    gap: 25px; /* Abstand zwischen den Dropdown-Items */
}

.dropdown-content li {
    padding: 10px 0; /* Padding innerhalb der Listenelemente */
    margin: 0 15px; /* Zusätzliche Abstände links und rechts der Items */
}

.dropdown-content li a {
    color: #fff; /* Weißer Text */
    text-decoration: none;
    font-size: 1.2em; /* Gleiche Schriftgröße wie das Hauptmenü */
    font-weight: bold;
}

.dropdown-content li a:hover {
    color: #cddcfd; /* Helleres Blau beim Hover */
}

/* Dropdown-Box Positionierung */
.dropdown-content li:first-child {
    margin-left: 0; /* Kein zusätzlicher Abstand links für das erste Item */
}

.dropdown-content li:last-child {
    margin-right: 0; /* Kein zusätzlicher Abstand rechts für das letzte Item */
}

/* Hero-Section */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .hero-text {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Textschatten für bessere Lesbarkeit */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero-background.jpg'); /* Standard-Hintergrundbild */
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

/* Parallax-Effekt und sichtbare Elemente */
.hero-bg.visible {
    opacity: 1;
    transform: translateY(0px);
}

/* Einheitliche Bildgröße */
img, .location-img {
    width: 100%; /* Standardgröße für alle Bilder */
    height: 400px; /* Einheitliche Höhe für Standortbilder */
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Highlights und Locations nebeneinander */
.highlights-grid, .locations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Abstand zwischen den Boxen */
    justify-content: space-around;
    align-items: flex-start;
}

.highlight, .location {
    flex: 1 1 45%;
    max-width: 45%;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #f9f9f9;
}

/* Buttons */
.btn, .btn-small {
    background-color: #668db3;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em; /* Größere Schriftgröße für Buttons */
    padding: 12px 25px; /* Etwas größeres Padding für bessere Darstellung */
}

.btn:hover, .btn-small:hover {
    background-color: #4d7598;
}

.btn-small {
    padding: 5px 15px;
}

/* Footer */
footer {
    background-color: #668db3;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
}

footer a {
    color: #fff;
    text-decoration: none;
}

/* Flex-Container für nebeneinander stehende Elemente */
.about-flex-container {
    display: flex;
    gap: 40px; /* Abstand zwischen den Boxen */
    flex-wrap: wrap;
}

.about-item {
    flex: 1 1 45%;
    max-width: 45%;
    padding: 10px; /* Weniger Padding innerhalb der Box */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #f9f9f9;
    margin-bottom: 30px; /* Abstand unter den Boxen */
}

.about-item h2 {
    margin-top: 10px; /* Weniger Abstand über der Überschrift */
    margin-bottom: 10px; /* Weniger Abstand unter der Überschrift */
}

.about-item p {
    margin-top: 10px; /* Weniger Abstand über dem Text */
}

/* Bildanpassungen für die Boxen */
.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 20px;
}

/* Weitere Layoutanpassungen */
.about-introduction, .about-values {
    margin-top: 60px;
    margin-bottom: 60px;
}

.about-introduction p, .about-history p, .about-innovation p, .about-values p {
    font-size: 1.2em;
    line-height: 1.8;
}

/* Flex-Container für die Team-Mitglieder */
.team-flex-container {
    display: flex;
    flex-wrap: wrap; /* Elemente umbrechen, falls der Platz nicht ausreicht */
    gap: 40px; /* Abstand zwischen den Elementen */
}

.team-member {
    flex: 1 1 30%;
    max-width: 30%;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #f9f9f9;
    margin-bottom: 30px;
}

.team-member img {
    width: 100%;
    height: 300px; /* Einheitliche Größe für Team-Bilder */
    object-fit: cover;
    border-radius: 10px;
}

.contact-flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* Kontaktformular */
.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    font-size: 1.1em; /* Einheitliche Schriftgröße für Formulare */
    margin-bottom: 20px; /* Abstand unter den Eingabefeldern */
    border-radius: 5px;
    border: 1px solid #ccc;
}

.contact-form button {
    background-color: #668db3;
    color: #fff;
    padding: 12px 25px;
    font-size: 1.1em;
    border-radius: 5px;
    font-weight: bold;
}

.contact-form button:hover {
    background-color: #4d7598;
}

/* Für sehr kleine Bildschirme */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    .header .container {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
        flex-wrap: wrap;          /* Bei sehr schmalen Ansichten umbrechen */
        justify-content: center; 
   }

    .header .navbar ul {
        margin-top: 1rem;
   }

    .navbar ul {
        display: flex;
        width: 100%;
	display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
    }

    .navbar ul li {
        margin:  0;
    }

    .navbar ul li a {
        font-size: 0.7em;
        padding: 5px;
    }

    .hero {
        height: 300px;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .highlights-grid, .locations-grid {
        flex-direction: column;
        align-items: center;
    }

    .highlight, .location {
        flex: 1 1 90%;
        max-width: 90%;
        padding: 15px;
    }

    .team-flex-container, .about-flex-container {
        flex-direction: column;
        gap: 20px;
    }

    .team-member, .about-item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .about-item img, .team-image {
        height: 250px;
    }

    .btn, .btn-small {
        font-size: 1em;
        padding: 8px 16px;
    }

    .project-image, .location-img {
        height: 250px;
    }

    .contact-form input, .contact-form textarea {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2em;
    }

    .navbar ul {
        text-align: center;
    }

    .navbar ul li {
        margin: 8px 0;
    }

    .highlight, .location {
        padding: 10px;
    }

    .team-member {
        padding: 10px;
        margin-bottom: 20px;
    }

    .contact-form input, .contact-form textarea {
        font-size: 0.9em;
    }

    .team-image {
        height: 250px;
    }
}
