/* Grundlayout */
body {
  font-family: 'Open Sans', sans-serif;
  background: url('ruanda-bisate-lodge-ansicht.jpg') no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  color: #5A3E1B;
  display: block;
  flex-direction: column;
  align-items: center;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', sans-serif; /* Überschriften */
  font-weight: bold; /* optional */
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 244, 229, 0.4);
  z-index: -1;
}
/*Header*/
header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between; /* Logo links, Menü mittig, Language rechts */
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  height: 50px;
}

nav {
  flex: 1;
}

.nav-menu {
  list-style: none;
  display: flex;
  justify-content: center; /* Menü zentrieren */
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding: 5px 10px;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #0077cc;
}

/* Dropdown */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  min-width: 160px;
  z-index: 1000;
  top: 100%;
  left: 0;
}

.dropdown-content a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #333;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Language Menu */
.lang-menu {
  position: relative;
}

.lang-menu button {
  background: none;
  border: none;
  cursor: pointer;
}

.flag-icon {
  height: 20px;
  width: auto;
}

.lang-options {
  display: none;
  position: absolute;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  top: 30px;
  right: 0;
  border-radius: 5px;
}

.lang-options.show {
  display: block;
}

.lang-options div {
  padding: 10px;
  cursor: pointer;
}

.lang-options div:hover {
  background: #f0f0f0;
}

#lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.flag-icon {
  width: 24px;
  height: auto;
  vertical-align: middle;
}

.lang-options {
  display: none;
  position: absolute;
  right: 0;
  top: 40px;
  background: #fff8dc;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  z-index: 10;
}

.lang-options div {
  padding: 10px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-options div:hover {
  background: #f4e5b8;
}

.show {
  display: block;
}

/* Main */
main {
  background: #fffbea;
  max-width: 800px;        /* maximal 800px breit */
  width: 100%;             /* nimmt volle Breite bis max-width */
  margin: 0 auto 50px;     /* zentriert den Block horizontal */
  padding: 30px 40px;      /* Abstand innen */
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(139,109,60,0.2);
  text-align: left;
}


main h1 {
  margin-top: 0;
}

/* Footer */
footer {
  text-align: center;
  padding: 15px 20px;
  color: #6a5a33;
  font-size: 0.9rem;
  border-top: 1px solid #d2c68a;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 30px;
}
