/* === Allgemein === */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #001a52;
}

/* === HEADER === */
.site-header {
    position: relative;
    height: 200px; /* Höhe des Headers */
    background: url("bilder/Himmel_V001.jpg") no-repeat center center;
    /* background: url("bilder/Flugzeug_V001.jpg") no-repeat center center; */
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 0 20px;
    overflow: hidden;
}

/* Overlay für halbtransparente Wirkung */
.site-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4); /* heller Schleier über dem Bild */
    z-index: 1;
}

/* Logo links */
.header-logo {
    height: 180px; /* Logo-Größe anpassen */
    width: auto;
    border-radius: 50%; /* falls kreisförmig */
    margin-right: 20px;
    position: relative;
    z-index: 2; /* über Overlay */
}

/* Text in der Mitte */
.header-text {
    position: relative;
    z-index: 2;
    color: #000000; /* Dunkelblau aus Logo */
}

.header-text h1 {
    margin: 0;
    font-size:32px;
    font-weight: bold;
}

.header-text p {
    line-height: 1.6;
    margin: 5px 0 0;
    font-size: 16px;
}

/* Sprachumschalter rechts */
.language-switch {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.language-switch img {
    width: 30px;
    height: 20px;
    margin-left: 10px;
    cursor: pointer;
}

/* === NAVIGATION === */
nav {
    background-color: #0066cc; /* Hellblau aus Logo */
    padding: 12px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 18px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* === HAUPTBEREICH === */
main {
    padding: 30px;
}

.hero-section {
    /* position: absolute; */
    position: relative;
    padding: 60px 20px;
    text-align: center;
    color: #001a52;
    /* background-image: url("bilder/header.jpg"); */
    background-image: url("bilder/Flugzeug_V001.jpg");
    /* background-image: url("bilder/Himmel_V001.jpg"); */
     width: 100%vw;
     height: 100vh; /* Höhe = gesamte Fensterhöhe */
    
    /* background-size: contain; */
    background-size: 100% 100%;
    /* background-position: center; */
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    /* opacity: 0.4; */
    background-color: rgba(255, 255, 255, 0.4);
    z-index: 1;
}

.hero-section h2,
.hero-section p {
    line-height: 1.6;
    position: relative;
    z-index: 2;
}


.contact-content h3 {
    color: #001a52;
  text-align: left;
  margin-top: 20px;
}


/* === FORMULARE === */
input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #A0E7E5;
    border-radius: 4px;
}

button {
    background-color: #FFADAD; /* Koralle-Akzent */
    color: #333333;
    border: none;
    padding: 12px 22px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #FF8B8B;
}

/* === FOOTER === */
footer {
    background-color: #002E5D; /* Dunkelblau */
    color: white;
    text-align: center;
    padding: 12px;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* === RTL Layout === */
body[dir="rtl"] {
    text-align: right;
}

body[dir="rtl"] nav a {
    margin: 0 15px 0 0;
}


/* .ueber-uns-section {
  position: relative;
 padding: 60px 20px;
    text-align: center;
    color: #001a52;
   background: url("bilder/Shoumoukh_V001.jpg") no-repeat center center;
  width: 100%vw;
  height: 100%vh;
  background-size: 100% 100%;
  z-index: 1;
}

/* Hintergrundbild mit Transparenz */
.ueber-uns-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    /* opacity: 0.4; */
    background-color: rgba(255, 255, 255, 0.4);
    z-index: 1;
} 

ul {

  list-style-type: square; /* andere Bullet-Form: disc | circle | square */
  padding-left: 50px; /* Abstand nach links */
}