/* Custom CSS für Wüsten-Thema */

/* Hintergrundbild */
body {
  background-image: url("../images/wueste-hintergrund.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

/* Navbar-Styling */
.navbar {
  background-color: rgba(0, 0, 0, 0.7);
}

.navbar-brand {
  color: #fff;
  font-weight: bold;
}

.navbar-nav .nav-link {
  color: #fff;
}

.navbar-nav .nav-link:hover {
  color: #ffcc00;
}

/* Hero-Bereich */
.hero {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 3em 0;
  text-align: center;
}

.hero .container {
  background-image: url("../images/wueste-hintergrund.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.hero .container.presse {
  background-image: url("../images/wueste-hintergrund-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.hero .container.moschee {
  background-image: url("../images/sunset-3169556_640.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.hero .container.stadt {
  background-image: url("../images/morocco-2349647_640.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.hero .container p {
}


.hero h1 {
  color: white;
  text-shadow: 2px 2px 4px black;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero p {
  color: #000000;
  text-shadow: 2px 2px 4px white;
  font-size: 18px;
  margin-bottom: 30px;
}

.hero .btn {
  background-color: #ffcc00;
  color: #000;
  border-color: #ffcc00;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
}

.hero .btn:hover {
  background-color: #fff;
  color: #000;
}

/* Hauptinhalt */
.main-content {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 50px 0;
  text-align: center;
}

.main-content h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}
.main-content h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.main-content h4 {
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 18px;
}

.main-content p {
  font-size: 16px;
  margin-bottom: 30px;
}

/* Footer-Styling */
.footer {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 20px 0;
  text-align: center;
}

.footer p {
  color: #fff;
  font-size: 14px;
}

