body {
  background-color: #2f2e2a;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  color: #e0e0e0;
}

/* Bootstrap überschreiben wo nötig */
.text-secondary {
  color: #888 !important;
}
.border-secondary {
  border-color: #333 !important;
}

.cover {
  max-width: min(600px, 100%);
  object-fit: cover;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.cover:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5) !important;
}

.links {
  font-variant: small-caps;
}
.link {
  text-decoration: none;
  font-weight: bold;
  color: #cccccc;
  transition:
    color 0.25s ease,
    text-shadow 0.25s ease;
}
.link:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
}
/* Bullet-Separator nur für Social-Links */
.links .link:not(:last-child)::after {
  content: "\2022";
  margin-left: 10px;
  margin-right: 10px;
  color: #555;
}

hr {
  border-color: #333 !important;
  opacity: 1;
}

@media (max-width: 576px) {
  body {
    font-size: 1.08rem;
  }
  h4 {
    font-size: 1.4rem;
  }
  h5 {
    font-size: 1.15rem;
  }
  .small,
  small {
    font-size: 0.95rem !important;
  }
  .btn {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
}
