/* Benutzerdefinierte Styles, die Bootstrap ergänzen */

/* Allgemeine Anpassungen */
body {
  font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}

/* Links ohne Unterstreichung */
a {
  text-decoration: none;
}

a:hover, 
a:focus {
  text-decoration: none !important;
}

/* Custom Hero-Bereich */
.hero {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 5;
}

/* Parallax Hero mit fixiertem Hintergrund für Scrolleffekt */
.hero-parallax {
  position: relative;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  height: 20vh;
  min-height: 150px;
}

.hero-parallax::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #212529;
  opacity: 0.5;
}

.hero-parallax .container {
  position: relative;
  z-index: 10;
}

.hero-parallax h2,
.hero-parallax p,
.hero-parallax .btn {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-parallax .btn {
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image-frame {
  border: 1px solid #e0e0e0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.image-frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.hero h1, 
.hero p, 
.hero .btn {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero .btn {
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Anpassungen für die Navbar */
.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  max-height: 60px;
}

/* Anpassungen für Buttons */
.btn-primary {
  background-color: #007bff; /* Ihre Primärfarbe */
  border-color: #007bff;
}

/* Anpassung für den Kontaktbereich */
#contact .card {
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Footer-Links */
footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Animationen */
.fade-in {
  opacity: 0;
  animation: fadeIn ease 1s forwards;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* ...existing code... */

/* Anpassungen für Buttons - angepasstes Farbschema */
 .btn-primary {
  background-color: #fc5d4f; 
  border-color: #fc5d4f;
  color: white;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus,
.btn-primary.active,
.btn-primary.active:focus,
.btn-check:checked + .btn-primary,
.btn-check:active + .btn-primary {
  background-color: #e04a3d !important; /* dunklerer Ton für Hover/Klick */
  border-color: #e04a3d !important;
  color: white !important;
  box-shadow: 0 0 0 0.25rem rgba(252, 93, 79, 0.4) !important; /* Angepasste Focus-Outline */
}

/* Button-Outline Variante */
.btn-outline-primary {
  color: #fc5d4f;
  border-color: #fc5d4f;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary:active:focus,
.btn-outline-primary.active,
.btn-outline-primary.active:focus,
.btn-check:checked + .btn-outline-primary,
.btn-check:active + .btn-outline-primary {
  background-color: #fc5d4f !important;
  border-color: #fc5d4f !important;
  color: white !important;
  box-shadow: 0 0 0 0.25rem rgba(252, 93, 79, 0.4) !important;
}