
body {
  background: #f4f7fb;
  font-family: "Inter", "Segoe UI", sans-serif;
}

.directory-card {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.directory-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #0d6efd, #6f42c1, #20c997);
}

.directory-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(16, 24, 40, 0.14);
}

.directory-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: linear-gradient(135deg, #e9f2ff, #f3ecff);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.card-title {
  font-weight: 700;
  color: #1f2937;
}

.card-text {
  font-size: 0.96rem;
  line-height: 1.6;
}

.directory-badge {
  background: #eef2ff;
  color: #4f46e5;
  border-radius: 999px;
  padding: 0.55em 0.9em;
  font-weight: 500;
}

.btn-directory {
  border-radius: 12px;
  padding: 0.65rem 1.1rem;
  background: linear-gradient(135deg, #0d6efd, #4f46e5);
  border: none;
  color: #fff;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-directory:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.25);
}

.directory-rating {
  font-weight: 600;
  color: #f59e0b;
}






.container{
    max-width: 992px;
}
.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2;color:var(--bs-heading-color)}
.h1,h1{font-size:calc(1.375rem + 1.5vw)}
@media (min-width:1200px){
    .h1,h1{font-size:1.8rem}}
    .h2,h2{font-size:calc(1.325rem + .9vw)}
    @media (min-width:1200px){.h2,h2{font-size:1.50rem}}
    .h3,h3{font-size:calc(1.3rem + .6vw)}
    @media (min-width:1200px){.h3,h3{font-size:1.40rem}}
    .h4,h4{font-size:calc(1.275rem + .3vw)}
    @media (min-width:1200px){.h4,h4{font-size:1.30rem}}
.h5,h5{font-size:1.20rem}
.h6,h6{font-size:1rem}
p{margin-top:0;margin-bottom:1rem}

.hero-section {
  /* 1. Hintergrundbild-Einstellungen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* 2. Zentrierung mit Flexbox */
  display: flex;
  justify-content: center; /* Horizontale Zentrierung */
  align-items: center;     /* Vertikale Zentrierung */
  /* 3. Dimensionen */
  width: 100%;
  min-height: 25vh;        /* Nimmt 80% der Bildschirmhöhe ein */
  text-align: center;
  color: white;            /* Textfarbe auf dunklem Bild */
}
/*
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);  Responsive Größe: Passt sich automatisch an
  margin-bottom: 1rem;
} 
*/

.dkDrange{
    color:#D57F07;
}