/* style.css */
body {
    font-family: 'Ruda', sans-serif; /* Schriftart */;
}

/* navbar-brand */
.navbar-brand {
      font-family: 'monoton', sans-serif; /* Schriftart */
      color: #b88f67; /* Schriftfarbe */
    }

.navbar {
  background-color: #fff;
}


/* Schriftart, Schriftfarbe und Hintergrundfarbe anwenden */
    .custom-topbar {
      background-color: #6c6460; /* Hintergrundfarbe */
      color: #b88f67; /* Schriftfarbe */
      font-family: 'Ruda', sans-serif; /* Schriftart */
    }

    /* Für Links, um sie auch in der gewünschten Farbe zu halten */
    .custom-topbar a {
      color: #b88f67; /* Linkfarbe */
    }

    /* Optional: Hover-Effekt für Links */
    .custom-topbar a:hover {
      color: #fff; /* Hover-Farbe für Links */
    }


/* HERO-Bereich Hintergrund + Overlay */
.hero {
    height: 80vh;
    background: url('3A_logo_neu.svg') center/cover no-repeat;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6); /* dunkles Overlay */
}

/* Hero Text mittig */
.hero .container {
    position: relative;
    z-index: 2;
}

/* Buttons */
.btn-primary {
    background-color: #5271ff;
    border-color: #5271ff;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #5271ff;
    border-color: #5271ff;
}
.btn:hover {
    background-color: #5271ff;
    border-color: #5271ff;
}

/* Karten */
.card {
    border: none;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.custom-card {
  transform: skew(-10deg);
  overflow: hidden;
  height: 250px;
}

.custom-card .card-body {
  transform: skew(10deg);
}






/*Costum Footer*/

    .custom-footer {
      background-color: #6c6460; /* Hintergrundfarbe */
      color: #b88f67; /* Schriftfarbe */
      font-family: 'Ruda', sans-serif; /* Schriftart */
    }

    /* Für Links, um sie auch in der gewünschten Farbe zu halten */
    .custom-footer a {
      color: #b88f67; /* Linkfarbe */
    }

    /* Optional: Hover-Effekt für Links */
    .custom-footer a:hover {
      color: #fff; /* Hover-Farbe für Links */
    }

/*Badge Footer*/

    .badge-custom {
      background-color: #6c6460; /* Hintergrundfarbe */
      color: #b88f67; /* Schriftfarbe */
      font-family: 'Ruda', sans-serif; /* Schriftart */
    }

    /* Für Links, um sie auch in der gewünschten Farbe zu halten */
    .badge-custom  a {
      color: #b88f67; /* Linkfarbe */
    }

    /* Optional: Hover-Effekt für Links */
    .badge-custom a:hover {
      color: #fff; /* Hover-Farbe für Links */
    }

    /* Abschnitt Leistunen*/
    #leistungen h3.h5 {
      font-family: 'monoton', sans-serif;
      color: #fff;
    }




.impressum-link {
  color: #b88f67;
  text-decoration: underline;
}

#scrollToTopBtn {
  position: fixed;       /* fixiert auf dem Bildschirm */
  bottom: 1.5rem;        /* Abstand vom unteren Rand */
  right: 1.5rem;         /* Abstand vom rechten Rand */
  display: none;         /* erst verstecken */
  z-index: 1050;         /* über anderen Elementen */
  border-radius: 50%;    /* rund (optional) */
  width: 48px;
  height: 48px;
  padding: 0;
  font-size: 1.5rem;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
