body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}

/* Header + Navigation */
header {
  background: #000000;
  padding: 1rem 0;
}

.main-nav {
  display: flex;
  justify-content: space-between; /* Links und Social Media auseinander */
  align-items: center;
  padding: 0 2rem;
}

.nav-links,
.social-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: background-color 0.3s;
}

.nav-links a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}

/* Social media icons */
.social-links a {
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #4CAF50;
}

/* Hero-Bereich mit Flagge */
.hero {
  background: url("assets/images/lebanon-flag.png") center/cover no-repeat;
  text-align: center;
  padding: 4rem 1rem;
  color: white;
  position: relative;
}

/* halbtransparente Schicht für bessere Lesbarkeit */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero h1 {
  position: relative;
  font-size: 2.5rem;
  font-family: 'Georgia', serif;
  letter-spacing: 2px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
  margin: 0;
}

/* Spezielle Schrift nur für "in" */
.special-font {
  font-family: 'Brush Script MT', cursive; /* oder andere Schrift */
  color: #fcfbfb; /* Gold für Kontrast */
  font-size: 3.2rem;
}

/* Inhalt */
main {
  padding: 2rem;
  text-align: center;
}

button {
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  background-color: #4CAF50;
  color: white;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #45a049;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
  position: fixed;
  bottom: 0;
  width: 100%;
}

/* Notification-Leiste */

.notification {
  display: flex; /* sichtbar */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 0.4rem 1rem;
  background-color: #4CAF50;
  color: white;
  z-index: 1000;
}

/* Close Button */
.notification .close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  font-weight: bold;
}

/* Push the page content down so navigation is visible */
body {
  padding-top: 0; /* gleiche Höhe wie Notification + Navigation */
}

.contact {
  max-width: 500px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: left;
}

.contact h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: #333;
}

.contact label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}

.contact input, .contact textarea {
  width: 100%;
  padding: 0.7rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.contact button {
  margin-top: 1rem;
  width: 100%;
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 0.7rem;
  font-size: 1.1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact button:hover {
  background-color: #45a049;
}

#form-status {
  margin-top: 1rem;
  text-align: center;
  font-weight: bold;
  color: green;
}

