body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-image: url('../Kontakt.jpg'); 
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
}

/* Header */
header {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 40px; 
  text-align: center;
}

header h1 {
  font-size: 7rem; /* Größere Schrift für den Titel */
}

/* Button Container */
.header-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.btn {
  text-decoration: none;
  background-color: #c11414;
  color: white;
  padding: 16px 28px;
  border-radius: 10px;
  font-size: 4.5rem; /* Vergrößerte Schrift */
  font-weight: bold;
  transition: 0.3s ease-in-out;
}

.btn:hover {
  background-color: #17769c;
  transform: scale(1.1);
}

/* Slider */
.slider {
  width: 100%;
  height: 90vh;
  position: relative;
  overflow: hidden;
}

.items-group {
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 1s ease;
}

/* Slide Items */
.item {
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 1s ease;
}

/* Active Slide */
.item.active {
  opacity: 1;
  visibility: visible;
}

/* Slide Block */
.block {
  width: 100%;
  max-width: 1200px;
  padding: 50px;
  color: #ffffff;
  border-radius: 10px;
  background-color: rgba(14, 20, 43, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.5s;
}

.block h2 {
  font-size: 7rem;
}

.block p {
  font-size: 5.5rem;
  margin-top: 20px;
}

/* Images */
.block img {
  width: 500px;
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.block img:hover {
  transform: scale(1.1);
}

/* Projekte */
.projects img {
  width: 650px;
  height: auto;
  margin: 10px;
  border-radius: 10px;
}

/* Navigation Dots */
.navigations {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.dots {
  list-style: none;
  display: flex;
  justify-content: center;
}

.dots li {
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: 0.7s;
}

.dots li.active {
  background-color: #d22b60;
}

/* Hover Effekt */
.block:hover {
  box-shadow: 0px 0px 70px #111;
}

/* Projekte: Bilder untereinander anordnen */
.projects {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

