/* Header images */
.header-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Logos Referenzen */
.referenz-logo {
    height: 90px;
    width: auto;
}

/* Mailadresse */
.mailadresse {
    height: 36px;
    width: auto;
}

body {
  background-color: #678815;
}
/*
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*/
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 16px 32px;
  background-color: #111;
  color: white;

  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo a {
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: #ddd;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: white;
}

.nav-actions .btn {
  padding: 8px 14px;
  background: #4f46e5;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.nav-actions .btn:hover {
  background: #4338ca;
}