/* Custom Styles für Bootstrap 5.3
   - Bootstrap Core kommt aus vendor/bootstrap/css/bootstrap.min.css
   - Icons kommen aus vendor/bootstrap-icons/font/bootstrap-icons.min.css
*/

/* Grundtypografie EFF2EA */
body {
  font-family: "Source Sans Pro", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.3rem;
  color: #6B6258;
  background: #f2ecdc;
}

aside {
  font-size: 1rem;
}

.scroll-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;

  background-color: #db5510; /* Rot der nav-pills */
  color: #ffffff;

  font-size: 2rem;           /* Chevron-Größe */
  font-weight: 700;
  line-height: 1;

  text-decoration: none;
  border: none;

  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

/* Hover / Fokus */
.scroll-arrow:hover,
.scroll-arrow:focus {
  background-color: #c14a0c;   /* etwas dunkler */
  transform: translateY(6px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);

  color: #ffffff;
  text-decoration: none;
  border: none;
}

/* globale Link-Unterstreichung sicher entfernen */
.scroll-arrow,
.scroll-arrow:hover,
.scroll-arrow:focus {
  border-bottom: none !important;
}


@media (min-width: 1400px) {
  aside {
    font-size: 1.1rem;
  }
}
/* Links (dein Stil) */
a {
  color: #c14a0c;
  text-decoration: none;
  border-bottom: thin dotted #c14a0c;
}
a:hover,
a:focus {
  border-bottom: thin solid;
  text-decoration: none;
}

a.text-decoration-none {
  border-bottom: none;
}

/* Überschriften 3A5200*/
h1, h2, h3, h4 {
  color: #c44a3d;
  padding-bottom: 4px;
  font-weight: 700;
}
h1, h2 {
  border-bottom: thin solid #c44a3d;
}

/* Headerbild (wie bisher, nur ohne BS3-Abhängigkeiten) */
@media (min-width: 1024px) {
  header {
    height: 250px;
    background-image: url("../img/head.jpg");
    background-position: center center;
    background-size: cover;
    border-bottom: 1px solid #8ab1cf;
  }
}

@media (min-width: 1200px) {
  header {
    height: 300px;
  }
}

/* Bild-Box rechts */
.pic {
  margin-bottom: 2rem;
}
.pic img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Navbar Branding / Logo links (angepasst an BS5 Navbar) */
.navbar {
  /* du hattest vorher margin-bottom:0 im header */
  margin-bottom: 0;
}

/* “Bootstrap 3 navbar-default”-Farben als Custom-Override */
.navbar.navbar-light {
  background-color: transparent;
}
/* Brand-Container */
.brand-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  background-color: rgba(255, 255, 255, 0.75); 
  padding: 8px 14px;
  border-radius: 14px;

  text-decoration: none;
  border-bottom: none;
}

/* Hover/Fokus sauber, ohne Unterstreichung */
.brand-box:hover,
.brand-box:focus {
  text-decoration: none;
  border-bottom: none;
}

/* Logo links */
.brand-logo {
  height: 56px;
  width: auto;
  display: block;
}

/* Text rechts */
.brand-text {
  line-height: 1.2;
  font-size: 1.2rem;   /* kleiner als vorher */
  color: #c44a3d;
}

/* Unterzeile noch kleiner */
.brand-text .small {
  font-family: "Oooh Baby", cursive;
  font-weight: 400;
  font-size: 0.95rem;
  color: #666;
}

/* etwas größer ab Desktop */
@media (min-width: 992px) {
  .brand-logo {
    height: 64px;
  }

  .brand-text {
    font-size: 1.35rem;
  }

  .brand-text .small {
    font-size: 1.1rem;
  }
}

/* Abstand nach oben für den Brand-Block im nicht-collapsed Zustand */
@media (min-width: 992px) { /* entspricht navbar-expand-lg */
  .brand-box {
    margin-top: 3rem;
  }
}
@media (min-width: 1200px) { 
  .brand-box {
    margin-top: 4rem;
  }
}

/* Nav-Pills Branding (BS5 nutzt .nav-link + .active) */
.nav-pills .nav-link {
  border-radius: 4px;
  background: #c44a3d;
  color: #fff;
  border: thin solid #c44a3d;
  padding: 7px 10px;
  margin-right: 5px;
}
.nav-pills .nav-link:hover,
.nav-pills .nav-link:focus {
  color: #2e5502;
  background-color: #fff;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #ed8a11;
  border-color: #ed8a11;
}

/* Spacing-Bereiche */
.mainnav {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.metanav {
  padding-top: 20px;
  padding-bottom: 50px;
}

/* Kontaktbox */
.kontakt {
  color: #eee;
  border: thin solid #3A5200;
  border-radius: 10px;
  background: #3A5200;
  margin-top: 23px;
  margin-bottom: 23px;
}

.kontakt h1 {
  margin-top: 1em;
  font-size: 19.2px;
  color: #eee;
  border-bottom: solid thin #3A5200;
}


.kontakt h2 { font-size: 16px; }
.kontakt h3 { font-size: 12.8px; }

.kontakt address,
.kontakt h1,
.kontakt h2,
.kontakt h3,
.kontakt ol,
.kontakt p,
.kontakt ul {
  padding: 0 15px;
}

.kontakt address {
  margin-bottom: 15px;
}

.kontakt img {
  max-width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.kontakt a {
  color: #fff;
  border-bottom-color: rgba(255,255,255,.7);
}

/* Footer */
footer {
  margin-top: 40px;
  background: #606657;
}


