/* ===== Allgemein ===== */
body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Navigation */
.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.4rem;
  color: #003366;
}

.navbar-brand:hover {
  color: #0055aa;
}

.nav-link {
  font-weight: 500;
  margin-left: 1rem;
}

.nav-link:hover {
  color: #0055aa;
}

/* ===== Hero Section ===== */
.hero {
  background: url("img/hero2.jpg") center/cover no-repeat;
  min-height: 90vh;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
}

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

.hero h1 {
  font-size: 3rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.hero p {
  font-size: 1.25rem;
  margin-top: 1rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* ===== Buttons ===== */
.btn-primary {
  background-color: #0055aa;
  border: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: #003f7d;
}

/* ===== Leistungen Karten ===== */
.card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
}

.card img {
  height: 220px;
  object-fit: cover;
}

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

.card-title {
  color: #0055aa;
  font-weight: bold;
}

/* ===== Über uns ===== */
#ueber {
  background: #f8f9fa;
  padding: 60px 0;
}

#ueber h2 {
  color: #0055aa;
}

/* ===== Kontakt ===== */
#kontakt form .form-control {
  border-radius: 8px;
}

#kontakt h2 {
  color: #0055aa;
  margin-bottom: 2rem;
}

/* ===== Footer ===== */
footer {
  background: #003366;
  color: white;
  font-size: 0.95rem;
}

.social-icons a {
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: #0d6efd; /* Bootstrap-Blau beim Hover */
}
