@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Poppins&display=swap');

/* Grundlegende Anpassungen */
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #f9dfcd 0%, #FFF5EE 100%);
  color: #212121;
  margin: 0;
  line-height: 1.7;
}

/* Überschriften */
h1, h2, .card-title {
  font-family:Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #A0522D;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

/* Container Hauptbereich */
main.container {
  flex-grow: 1;
  padding: 4rem 3rem;
  max-width: 900px;
  margin: 2rem auto 4rem;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(156, 87, 22, 0.25);
  text-align: left;
  line-height: 1.6;
}

/* Button */
.btn-primary {
  background-color: #A0522D;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 12px rgba(156, 87, 22, 0.25);
  cursor: pointer;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: #bb7533;
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(147, 82, 20, 0.4);
}

/* Navigation */
nav {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(156, 87, 22, 0.25);
  padding: 1rem 2rem;
  margin-bottom: 0; /* Kein Abstand nach unten */
  position: sticky;
  top: 0;
  z-index: 10;
}

.navbar-nav {
  display: flex;
  gap: 1rem;
}

.navbar-nav .nav-link {
  color: 		#7B3F00;
  font-weight: 600;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.navbar-nav .nav-link:hover {
  color: #bb7533;
}

.navbar-nav .nav-link.active {
  color: #7B3F00;
  font-weight: 700;
  border-bottom: 2px solid 	#8B0000;
  padding-bottom: 0.25rem;
}

/* Footer */
footer {
  background-color: #fff !important;
  text-align: center;
  padding: 3rem 1.5rem;
  color: #7B3F00;
  font-size: 1rem;
  border-top: 2px solid #fff;
}

footer a {
  color: #7B3F00;
  text-decoration: none;
  margin: 0 0.5rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #bb7533;
  text-decoration: underline;
}
