body {
  font-family: "Open Sans", sans-serif;
  background: #fff8f0;
  color: #333;
  margin: 0;
  text-align: center;
}



.kategorien {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
}

.kategorie {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  padding: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.kategorie:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  background: #e6a33c;
  color: white;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #f1b24a;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

.subtitle {
  margin-top: 10px;
  font-weight: 300;
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.post {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-content {
  padding: 20px;
  text-align: left;
}

.post-content h2 {
  margin-top: 0;
  font-size: 1.3rem;
}

.date {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 10px;
}

.excerpt {
  line-height: 1.6;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  color: #ad1457;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.read-more:hover {
  color: #c62828;
}

.post-page {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.full-post img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  margin-bottom: 20px;
}

.full-post h2 {
  margin-top: 10px;
}

.full-post p {
  line-height: 1.7;
  margin-bottom: 15px;
}

.back-link {
  display: inline-block;
  margin-top: 20px;
  color: #ad1457;
  text-decoration: none;
  font-weight: 600;
}

.back-link:hover {
  color: #c62828;
}

.hero-image {
  position: relative;
  text-align: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.7);
}


