* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", sans-serif;
  color: #333;
  background-color: #f7f7f7;
  line-height: 1.6;
}

.header {
  background: url("header.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 4rem 1rem;
  position: relative;
}

.header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.header-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo h1 {
  margin: 0;
  font-size: 1.8rem;
}

.logo p {
  font-size: 1rem;
  color: #ccc;
}

.hero-text h2 {
  font-size: 2.5rem;
  margin: 1rem 0;
}

.cta-buttons {
  display: flex;
  flex-direction: row;
  margin-top: 30px;
  gap: 2rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  background-color: #3498db;
  transition: background 0.3s;
  min-width: 220px;
  text-align: center;
}

.btn:hover {
  background-color: #2980b9;
}

main {
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: auto;
  background-color: white;
}

.angebot,
.pilgerreisen {
  margin-bottom: 3rem;
}

.angebot h2,
.pilgerreisen h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #222;
}

.angebot ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
  list-style-type: disc;
}

.pilgerreisen-content {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  flex-direction: row; /* Wichtig: Bild links vom Text */
}

.pilgerreisen img {
  max-width: 30%;
  height: auto;
  flex: 1 1 250px;
  border-radius: 8px;
}

.pilgerreisen .text {
  flex: 2 1 300px;
}

footer {
  background: #eee;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-text h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .pilgerreisen-content {
    flex-direction: column;
  }

  .pilgerreisen img {
    max-width: 100%;
  }
}
