/* Fonts */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/Roboto/static/Roboto_Condensed-Regular.ttf")
    format("truetype");
}

/* Fonts */
@font-face {
  font-family: "Roboto";
  font-style: condensed;
  font-weight: 500;
  src: url("/fonts/Roboto/static/Roboto_Condensed-Medium.ttf")
    format("truetype");
}

@font-face {
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 600;
  src: url("/fonts/Orbitron/static/Orbitron-SemiBold.ttf") format("truetype");
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 109px;
}

/* Allgemeine Styles */
body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  background: #4b4b4b;
  color: #000000;
}

.burger-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.burger-wrapper label {
  position: absolute;
  top:0;left:0;right:0;bottom:0;
  display: flex;
  align-items: center;
  justify-content:center;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(40, 40, 40, 0.98);
  color: #fff;
  padding: 1rem;
  font-family: "Orbitron", sans-serif;
  z-index: 1000;
  vertical-align: middle;
}

h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 32px;
  letter-spacing: 1.25px;
  font-weight: 600;
}

h2 {
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  font-weight: 400;
  margin-top: 24px;
  margin-bottom: 18px;
}

h3 {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 12px;
}

p {
  font-size: 20px;
  line-height: 24px;
  margin-top: 0;
  margin-bottom: 12px;
}

section.extra-padding-top {
  padding-top: 24px;
}

.logo-img {
  width: 220px; /* oder jede andere gewünschte Breite */
  height: auto; /* damit das Seitenverhältnis erhalten bleibt */
}

.calender-icon {
  width: 20px; /* oder jede andere gewünschte Breite */
  height: auto; /* damit das Seitenverhältnis erhalten bleibt */
  filter: invert(100%) brightness(200%); /* Macht Schwarz zu Weiß */
}

.calender-date {
  margin: 0;
}

.calender-date-container {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
}

.header-text {
  font-size: 0.8rem;
}

/* Burger-Button */
.burger {
  font-size: 60px;
  cursor: pointer;
  user-select: none;
}

/* Versteckter Toggle */
.menu-toggle {
  display: none;
}

/* Navigation - Anfangszustand */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #222;
  padding: 1rem;
  position: absolute;
  top: 100%; /* Direkt unter dem Header */
  left: 0;
  width: 100%;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Navigation Links */
.mobile-nav a {
  color: #fff;
  text-decoration: none;
  padding: 1rem;
  display: block;
}

/* Menü wird geöffnet */
.mobile-nav.show {
  display: flex;
}

/* Menü schließt sich, wenn ein Link geklickt wird */
.mobile-nav {
  display: none;
}

/* Sektionen */
.section {
  padding: 10px 1rem;
  background: #ffffff;
}

section.hero-section {
  background-image: url("/assets/images/Bild_07.webp"); /* oder .webp, .png, je nachdem was du hast */
  color: white; /* falls der Text sich abheben soll */
  padding: 40px 20px; /* je nach Bedarf anpassen */
  height: 179px;
  display: flex;
  gap: 10px;
}

.hero-section  h1{
  margin-bottom: 0;
}

.hero-section  h2{
  margin-top: 16px;
}

.hero-title {
  width: 70%;
}

.hero-info {
  padding-top: 66px;
  width: 30%;
  padding-right: 5px;
}

.hero-info ul {
  list-style: none;
  padding-left: 0; 
}

.hero-info li {
  color: #223062;
  text-align: right;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 500;
}

.section2 {
  padding: 10px 1rem;
  background: #171717;
  color: rgb(255, 255, 255);
}

/* Neues Bild nach dem Text */
.section-image {
  height: 345px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-image img {
  width: 100%; /* Bild nimmt die volle Breite ein */
  max-width: 1200px; /* Maximalbreite des Bildes */
  height: auto; /* Bild wird automatisch skaliert */
  border-radius: 0px; /* Optional: Rundung der Ecken */
}

#section-image-06 {
  background-image: url("/assets/images/Bild_06.webp"); /* oder .webp, .png, je nachdem was du hast */
}

#section-image-04 {
  background-image: url("/assets/images/Bild_04.webp"); /* oder .webp, .png, je nachdem was du hast */
  background-position: 0px -100px;
}

#section2 {
  padding-bottom: 10px;
}

/* Footer */
.footer {
  background: #111;
  color: #fff;
  padding: 1rem;
  font-size: 0.9rem;
  display: flex;
  flex-direction:column; 
}

.footer-contact {
  width: 100%;
}

.footer-lower-wrapper {
  width: 100%;
  display: flex;
}

.footer a {
  color: #ddd;
  text-decoration: none;
  margin-right: 8px;
  font-size: 18px;
}

.footer-links,
.footer-social {
  width: 50%;
}

.footer-links {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.footer-links a:not(:last-child)::after {
  content: " |"; 
  margin: 0 8px; 
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer-contact,
.footer-social {
  margin-top: 0.5rem;
}

.contact-line {
  padding-bottom: 8px;
  border-bottom: 1.5px solid grey;
}

/* Social Icons */
.social-icon {
  width: 34px;
  height: 34px;
  vertical-align: middle;
  margin-right: 8px;
  filter: invert(100%) brightness(200%); /* Macht Schwarz zu Weiß */
}

/* Hover-Effekt für Links */
.footer-social a {
  display: inline-flex;
  align-items: center;
  color: #ddd;
  text-decoration: none;
}

