/* Fixed site header with logo/branding */
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%) !important;
  z-index: 2000 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  height: auto !important;
}
/* Site branding section */
.site-branding {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.site-title {
  font-size: 1.8rem !important;
  font-weight: 600 !important;
  color: white !important;
  text-decoration: none !important;
  letter-spacing: 0.5px;
  margin: 0 !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-title:hover {
  color: #e0f2fe !important;
}
/* Navigation menu */
.site-navigation {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.site-navigation a {
  color: white !important;
  text-decoration: none !important;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: background-color 0.2s;
  font-weight: 500;
}
.site-navigation a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
/* Add padding to body to account for fixed header */
body {
  padding-top: 80px !important;
}
/* Style für die Homepage Description */
.home-page-content p:first-of-type {
  color: #2d6a4f;
  font-size: 1.2em;
  font-weight: 300;
  line-height: 1.6;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

/* Homepage header styling - text color only, no box */
.home article header h1,
.home article header h2,
.home header h1,
.home header h2,
article header h1.f2,
article header h1.f1-l,
article header h2.fw1,
article.cf header h1,
article.cf header h2,
.cf.ph3.ph5-l header h1,
.cf.ph3.ph5-l header h2 {
  color: #1e3a8a !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
}

/* Target ALL text inside the homepage header */
article header *,
article.cf header *,
.home header * {
  color: #1e3a8a !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
}

/* Override any white text classes */
.white-90,
.white-80,
.white,
header .white-90,
header .white-80,
header .white {
  color: #1e3a8a !important;
}
