/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== GLOBAL ===== */
body {
  background: #fff;
  color: #222;
  font-family: "Montserrat", sans-serif;

  /* wichtig wegen fixed navbar */
  padding-top: 80px;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 900px;
  margin: auto;
}

/* ===== CONTENT ===== */
.content {
  padding: 60px 20px;
  background: white;
}

.content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* ===== BUTTON ===== */
.btn-main {
  display: inline-block;
  margin-top: 15px;

  background: #d62828;
  color: white;

  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;

  transition: all 0.3s ease;
}

.btn-main:hover {
  background: #b71c1c;
  transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero-bs {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

/* ===== JUBILÄUM SECTION ===== */
.jubilaeum {
  padding: 60px 20px;
  background: #ffffff;
}

.jubilaeum-inner {
  max-width: 900px;
  margin: auto;

  display: flex;
  align-items: center;
  gap: 40px;
}

.jubilaeum-text {
  flex: 1;
}

.jubilaeum-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.jubilaeum-text p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.jubilaeum-img {
  flex: 1;
}

.jubilaeum-img img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {

  .jubilaeum-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .jubilaeum-text,
  .jubilaeum-img {
    width: 100%;
  }

}

@media (max-width: 768px) {

  .content h2,
  .jubilaeum-text h2 {
    font-size: 2rem;
  }

  .hero-bs {
    height: 220px;
  }

}

@media (max-width: 600px) {

  body {
    padding-top: 70px;
  }

  .content,
  .jubilaeum {
    padding: 50px 20px;
  }

  .content p,
  .jubilaeum-text p {
    font-size: 0.95rem;
  }

  .btn-main {
    width: 100%;
    text-align: center;
  }

  .hero-bs {
    height: 180px;
  }

}
