@charset "UTF-8";
@font-face {
  font-family: "Open Sauce Sans";
  src: url("/assets/fonts/OpenSauceSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sauce Sans";
  src: url("/assets/fonts/OpenSauceSans-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sauce Sans";
  src: url("/assets/fonts/OpenSauceSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sauce Sans";
  src: url("/assets/fonts/OpenSauceSans-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sauce Sans";
  src: url("/assets/fonts/OpenSauceSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sauce Sans";
  src: url("/assets/fonts/OpenSauceSans-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sauce Sans";
  src: url("/assets/fonts/OpenSauceSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sauce Sans";
  src: url("/assets/fonts/OpenSauceSans-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sauce Sans";
  src: url("/assets/fonts/OpenSauceSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sauce Sans";
  src: url("/assets/fonts/OpenSauceSans-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sauce Sans";
  src: url("/assets/fonts/OpenSauceSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sauce Sans";
  src: url("/assets/fonts/OpenSauceSans-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  background-color: #f8f9fa;
  color: #333333;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.content-area {
  background-color: #ffffff;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin: 2rem auto;
  max-width: 700px;
  width: 90%;
}
.content-area p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 0.5rem;
}
.content-area ul {
  margin-left: 1.5rem;
  list-style-type: disc;
}
.content-area li {
  color: #333333;
  margin-bottom: 0.5rem;
}
.content-area li a {
  color: #0066cc;
  text-decoration: none;
  transition: 0.3s ease;
}
.content-area li a:hover {
  color: #0044cc;
}

.site-footer {
  text-align: center;
  padding: 1.5rem;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  color: #666666;
}

/* Top horizontal box spanning full width */
.top-span-box {
  grid-column: 1/-1;
  background-color: rgba(90, 102, 168, 0.8);
  padding: 0;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}
.top-span-box .cafe-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.top-span-box .cafe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.top-span-box h2 {
  color: #ffffff;
  font-size: 1.5rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 700;
  margin: 0;
  text-align: center;
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1.5rem 3rem;
  border-radius: 4px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0;
  padding: 0;
  text-align: left;
}
nav .nav-left-text {
  font-size: 1.25rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  color: #333333;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 20px;
}
nav a {
  font-size: 1.25rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 400;
  color: #333333;
  text-decoration: none;
  margin: 0 15px;
  padding: 0.5rem 1rem;
  display: inline-block;
  transition: 0.3s ease;
  border-radius: 4px;
}
nav a:hover {
  background-color: #8fb4dc;
  color: #ffffff;
  transform: translateY(-2px);
}
nav a.current {
  font-weight: 700;
  color: #8fb4dc;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.nav-logo {
  background-color: #ffffff;
  padding: 0.5rem;
  border-radius: 4px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.nav-logo a {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  background-color: transparent;
}
.nav-logo a:hover {
  background-color: transparent;
  transform: none;
}
.nav-logo img {
  height: 60px;
  width: auto;
  display: block;
}

.nav-item-1 {
  background-color: #e75d2d;
  color: #333333 !important;
}
.nav-item-1:hover {
  background-color: #a64826;
}

.nav-item-2 {
  background-color: #f8ea40;
  color: #333333 !important;
}
.nav-item-2:hover {
  background-color: #e8d442;
}

.nav-item-3 {
  background-color: #89ca80;
  color: #333333 !important;
}
.nav-item-3:hover {
  background-color: #32886a;
}

.nav-item-4 {
  background-color: #8fb4dc;
  color: #333333 !important;
}
.nav-item-4:hover {
  background-color: #5367ac;
}

.nav-item-5 {
  background-color: #5367ac;
  color: #333333 !important;
}
.nav-item-5:hover {
  background-color: #3d4d89;
}

.nav-item-6 {
  background-color: #9d5d9c;
  color: #333333 !important;
}
.nav-item-6:hover {
  background-color: #7d3d7c;
}

.navigation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem auto;
  max-width: 1024px;
  padding: 0 20px;
  min-height: 400px;
}

/* 3x3 Navigation Grid */
.navigation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 4rem auto;
  max-width: 1024px;
  padding: 0 20px;
}

.nav-box {
  background-color: #ced4da;
  padding: 2rem;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}
.nav-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}
.nav-box.has-bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.nav-box.has-bg-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}
.nav-box.has-bg-image h3, .nav-box.has-bg-image p {
  position: relative;
  z-index: 2;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}
.nav-box h3 {
  font-size: 1.25rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.nav-box p {
  font-size: 1rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.nav-box--blue {
  background-color: #8fb4dc;
}
.nav-box--green {
  background-color: #89ca80;
}
.nav-box--yellow {
  background-color: #f8ea40;
}
.nav-box--red {
  background-color: #e75d2d;
}
.nav-box--purple {
  background-color: #9d5d9c;
}
.nav-box--grey {
  background-color: #b3b8b8;
}

@media (max-width: 992px) {
  .navigation-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .nav-box {
    padding: 1.5rem;
    min-height: 180px;
  }
  .nav-box h3 {
    font-size: 1.125rem;
  }
  .nav-box p {
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .navigation-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 15px;
  }
  .nav-box {
    padding: 1.5rem;
    min-height: 150px;
  }
  .nav-box h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
  .nav-box p {
    font-size: 0.875rem;
  }
}
@media (max-width: 576px) {
  .nav-logo img {
    height: 40px;
  }
  .nav-box {
    padding: 0.5rem;
    min-height: 80px;
  }
  .nav-box h3 {
    font-size: 0.875rem;
  }
  .nav-box p {
    font-size: 0.75rem;
  }
}
.site-footer {
  padding: 1rem;
  text-align: center;
  margin-top: 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-link {
  color: #000000;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: 0.15s ease;
}
.footer-link:hover {
  color: #e75d2d;
  text-decoration: underline;
}

.impressum-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.impressum-content {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.impressum-content h1 {
  color: #333333;
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}
.impressum-content h2 {
  color: #e75d2d;
  font-size: 1.25rem;
  margin: 1.5rem 0 1rem 0;
}
.impressum-content h3 {
  color: #8fb4dc;
  font-size: 1.125rem;
  margin: 1.5rem 0 1rem 0;
}
.impressum-content p {
  line-height: 1.6;
  margin-bottom: 1rem;
}
.impressum-content .copyright {
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.7;
  margin-top: 2rem;
}

.body-home {
  min-height: 100vh;
}

.aktuelles-container {
  margin: 1.5rem auto 2rem auto;
  max-width: 1024px;
  padding: 0 20px;
}

.aktuelles-box {
  background: #faf17d;
  border: 3px solid #faf17d;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}
.aktuelles-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  animation: pulse 2s ease-in-out infinite alternate;
}
.aktuelles-box h2 {
  color: #000000;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.aktuelles-content {
  color: #000000;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
}
.aktuelles-content p {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: left;
}
.aktuelles-content p:last-child {
  margin-bottom: 0;
}
.aktuelles-content ul, .aktuelles-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.aktuelles-content li {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0.25rem;
}
.aktuelles-content a {
  color: #8fb4dc;
  font-weight: 600;
  text-decoration: underline;
  transition: 0.15s ease;
}
.aktuelles-content strong, .aktuelles-content b {
  font-weight: 700;
  color: #e75d2d;
}
.aktuelles-content em, .aktuelles-content i {
  font-style: italic;
  color: #000000;
}

@keyframes pulse {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .aktuelles-container {
    padding: 0 15px;
  }
  .aktuelles-box {
    padding: 1.5rem;
  }
  .aktuelles-box h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  .aktuelles-content p {
    font-size: 1rem;
  }
  .aktuelles-content li {
    font-size: 0.875rem;
  }
}
@media (max-width: 576px) {
  .aktuelles-box {
    padding: 1rem;
  }
  .aktuelles-box h2 {
    font-size: 1.125rem;
  }
  .aktuelles-content p {
    font-size: 0.875rem;
  }
  .aktuelles-content li {
    font-size: 0.75rem;
  }
}
.start-side-bottom-text-box {
  margin: 2rem auto;
  max-width: 1024px;
  padding: 0 20px;
  text-align: center;
}
.start-side-bottom-text-box h1 {
  color: #333333;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.start-side-bottom-text-box h2 {
  color: #333333;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.start-side-bottom-text-box p {
  color: #333333;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.start-side-bottom-text-box ul {
  text-align: left;
  display: inline-block;
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}
.start-side-bottom-text-box li {
  color: #333333;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
  .start-side-bottom-text-box {
    padding: 0 15px;
  }
  .start-side-bottom-text-box h1 {
    font-size: 1.875rem;
  }
  .start-side-bottom-text-box h2 {
    font-size: 1.25rem;
  }
  .start-side-bottom-text-box p {
    font-size: 1rem;
  }
  .start-side-bottom-text-box li {
    font-size: 0.875rem;
  }
}
@media (max-width: 576px) {
  .start-side-bottom-text-box h1 {
    font-size: 1.5rem;
  }
  .start-side-bottom-text-box h2 {
    font-size: 1.125rem;
  }
  .start-side-bottom-text-box p {
    font-size: 0.875rem;
  }
  .start-side-bottom-text-box li {
    font-size: 0.75rem;
  }
}
.hero {
  position: relative;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 2rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
}

.hero-text-box {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 700px;
  width: 90%;
  padding: 2rem;
  text-align: center;
}
.hero-text-box h1 {
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2;
  color: #333333;
  margin-bottom: 1.5rem;
}
.hero-text-box h1 em {
  font-style: italic;
}

.hero-link {
  display: inline-block;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  color: #333333;
  text-decoration: none;
  border-bottom: 1px solid #333333;
  transition: 0.15s ease;
}
.hero-link:hover {
  color: #0044cc;
  border-color: #0044cc;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0 auto 1rem auto;
  max-width: 1024px;
  padding: 0 20px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.feature-card--green {
  background-color: #89ca80;
}
.feature-card--purple {
  background-color: #9d5d9c;
}
.feature-card--red {
  background-color: #e75d2d;
}
.feature-card h3 {
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.feature-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  color: #ffffff;
}
.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-link {
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-size: 0.875rem;
  color: #ffffff;
  text-decoration: underline;
  opacity: 0.9;
}

.begegnung-card {
  max-width: 1024px;
  margin: 0 auto 2rem auto;
  padding: 2rem;
  border: 1px solid #b3b8b8;
  border-radius: 8px;
  text-align: center;
}
.begegnung-card h2 {
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #333333;
  margin-bottom: 1rem;
}
.begegnung-card p {
  max-width: 700px;
  margin: 0 auto 1rem auto;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #666666;
}

.begegnung-icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-bottom: 0.5rem;
  color: #333333;
}
.begegnung-icon svg {
  width: 100%;
  height: 100%;
}

.begegnung-link {
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-size: 0.875rem;
  color: #0066cc;
  text-decoration: none;
  border-bottom: 1px solid #0066cc;
}
.begegnung-link:hover {
  color: #0044cc;
  border-color: #0044cc;
}

@media (max-width: 768px) {
  .hero {
    min-height: 380px;
  }
  .hero-text-box {
    margin-left: 0;
    padding: 1.5rem;
  }
  .hero-text-box h1 {
    font-size: 1.875rem;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .hero-text-box h1 {
    font-size: 1.5rem;
  }
  .begegnung-card {
    padding: 1.5rem;
  }
}
.body-cafe {
  background: rgba(231, 93, 45, 0.3);
  min-height: 100vh;
}

/* Custom Layout Grid */
.cafe-boxes {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: auto 1fr;
  gap: 1rem;
  margin: 2rem auto;
  max-width: 1200px;
  padding: 0 20px;
  min-height: 800px;
}

/* Left side container */
.left-side {
  display: grid;
  grid-template-rows: 2fr 1fr 1fr;
  gap: 1rem;
}

/* Main content area below top box */
.main-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 1rem;
  grid-column: 1/-1;
}

/* Left side boxes */
.left-box-large {
  background-color: rgba(157, 200, 131, 0.9);
  padding: 3rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-height: 350px;
  position: relative;
  overflow: hidden;
}
.left-box-large.has-bg-image {
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.left-box-large.has-bg-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  border-radius: 8px;
  z-index: 1;
}
.left-box-large.has-bg-image h3, .left-box-large.has-bg-image p {
  position: relative;
  z-index: 2;
}
.left-box-large h3 {
  color: white;
  font-size: 1.875rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.left-box-large p {
  color: white;
  font-size: 1.25rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 400;
  margin: 0;
  text-align: center;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.left-box-image {
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-height: 200px;
  position: relative;
  overflow: hidden;
}
.left-box-image.has-bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.left-box-small {
  background-color: rgba(244, 233, 82, 0.9);
  padding: 2rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-height: 200px;
  position: relative;
  overflow: hidden;
}
.left-box-small.has-bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.left-box-small.has-bg-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(244, 233, 82, 0.9);
  border-radius: 8px;
  z-index: 1;
}
.left-box-small.has-bg-image h3, .left-box-small.has-bg-image p {
  position: relative;
  z-index: 2;
}
.left-box-small h3 {
  color: white;
  font-size: 1.5rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 700;
  margin: 0 0 1rem 0;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.left-box-small p {
  color: white;
  font-size: 1.125rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 400;
  margin: 0;
  text-align: center;
  line-height: 1.4;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Right side 6-box grid */
.right-side {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(6, 1fr);
  gap: 0.6rem;
  height: 100%;
}

.right-box {
  background-color: rgba(203, 93, 51, 0.8);
  padding: 0.5rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  min-height: 50px;
  position: relative;
  overflow: hidden;
  /* External link styling */
}
.right-box.has-bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.right-box.has-bg-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 4px;
  z-index: 1;
}
.right-box.has-bg-image h4, .right-box.has-bg-image p {
  position: relative;
  z-index: 2;
}
.right-box.has-bg-image[href^=http]::before {
  background: rgba(0, 0, 0, 0.6);
}
.right-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: rgb(203, 93, 51);
}
.right-box:hover.has-bg-image::before {
  background: rgba(0, 0, 0, 0.75);
}
.right-box:hover.has-bg-image[href^=http]::before {
  background: rgba(0, 0, 0, 0.75);
}
.right-box[href^=http] {
  background-color: #e75d2d;
  border: 2px solid #ffffff;
}
.right-box[href^=http]:hover {
  background-color: rgb(0, 102, 204);
}
.right-box[href^=http]::before {
  content: "🌐 EXTERNE SEITE";
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
}
.right-box[href^=http].has-bg-image::before {
  background: rgba(0, 0, 0, 0.6);
}
.right-box[href^=http].has-bg-image::after {
  content: "🌐 EXTERNE SEITE";
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
}
.right-box h4 {
  color: white;
  font-size: 1.25rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}
.right-box h4 a {
  color: white;
  text-decoration: none;
}
.right-box h4 a:hover {
  text-decoration: underline;
}
.right-box p {
  color: white;
  font-size: 1.125rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 400;
  margin: 0;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

/* Responsive design */
@media (max-width: 768px) {
  .cafe-boxes {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .left-side {
    grid-template-rows: auto auto;
  }
  .right-side {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .left-box-large {
    min-height: 200px;
  }
  .left-box-large h3 {
    font-size: 1.125rem;
  }
  .left-box-large p {
    font-size: 0.875rem;
  }
}
.accordion-box {
  cursor: pointer;
}
.accordion-box .accordion-header {
  width: 100%;
}
.accordion-box .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background-color: #e75d2d;
  margin-top: 0.5rem;
  padding: 0 1rem;
  border-radius: 4px;
}
.accordion-box .accordion-content p {
  padding: 0.25rem 0;
}
.accordion-box.active .accordion-content {
  max-height: 500px;
  padding: 1rem;
  transition: max-height 0.4s ease-in;
}

.body-gruppen {
  background: rgba(137, 202, 128, 0.3);
  min-height: 100vh;
}

.gruppen-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 20px 4rem 20px;
}

.gruppen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 1.5rem;
  min-height: 800px;
}

.group-box {
  padding: 2rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.group-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}
.group-box h3 {
  font-size: 1.25rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 3;
}
.group-box p {
  font-size: 1rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 3;
}
.group-box.has-bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.group-box.has-bg-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  pointer-events: none;
}
.group-box.has-bg-image h3, .group-box.has-bg-image p {
  position: relative;
  z-index: 3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}
.group-box.has-bg-image::before {
  display: none;
}
.group-box:not(.has-bg-image)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  opacity: 0.3;
  pointer-events: none;
}

.group-box--green {
  background: #89ca80;
}

.orga-treff-footer {
  background-color: #f8ea40;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 4rem;
}
.orga-treff-footer h2 {
  font-size: 1.5rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1rem;
}
.orga-treff-footer h3 {
  font-size: 1.25rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1.5rem;
}
.orga-treff-footer p {
  font-size: 1.125rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 400;
  color: #333333;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 1rem auto;
}
.orga-treff-footer p:last-child {
  margin-bottom: 0;
}
.orga-treff-footer .email-link {
  color: #333333;
  text-decoration: underline;
  font-weight: 700;
}
.orga-treff-footer .email-link:hover {
  color: #000000;
}

@media (max-width: 992px) {
  .gruppen-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, 1fr);
  }
  .group-box {
    padding: 1.5rem;
  }
  .group-box h3 {
    font-size: 1.125rem;
  }
  .group-box p {
    font-size: 0.875rem;
  }
  .orga-treff-footer {
    padding: 3rem 1.5rem;
  }
  .orga-treff-footer h2 {
    font-size: 1.875rem;
  }
  .orga-treff-footer h3 {
    font-size: 1.25rem;
  }
  .orga-treff-footer p {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .page-header {
    padding: 2rem 1rem;
  }
  .page-header h1 {
    font-size: 1.5rem;
  }
  .page-header p {
    font-size: 1rem;
  }
  .gruppen-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(12, auto);
    gap: 1rem;
  }
  .group-box {
    padding: 1.5rem;
    min-height: 120px;
  }
  .group-box h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
  .group-box p {
    font-size: 0.875rem;
  }
  .orga-treff-footer {
    padding: 2rem 1rem;
  }
  .orga-treff-footer h2 {
    font-size: 1.5rem;
  }
  .orga-treff-footer h3 {
    font-size: 1.125rem;
  }
  .orga-treff-footer p {
    font-size: 0.875rem;
  }
}
/* Subpage Styles */
/* Header Section */
.subpage-header {
  text-align: center;
  padding: 4rem 2rem 3rem 2rem;
  background: linear-gradient(135deg, rgba(157, 200, 131, 0.1), rgba(90, 102, 168, 0.1));
}
.subpage-header h1 {
  font-size: 2.25rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1rem;
}
.subpage-header p {
  font-size: 1.25rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 400;
  color: #666666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* 1x3 Picture Boxes */
.picture-boxes-container {
  max-width: 1280px;
  margin: 3rem auto;
  padding: 0 20px;
}

.picture-boxes-grid {
  display: grid;
  gap: 2rem;
  /* Default: 3 columns */
  grid-template-columns: repeat(3, 1fr);
  /* 1 item */
  /* 2 items */
  /* 3 items (default, no class needed) */
}
.picture-boxes-grid.single-item {
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 800px;
  margin: 0 auto;
}
.picture-boxes-grid.single-item .picture-box {
  width: 100%;
}
.picture-boxes-grid.single-item .picture-box img {
  height: 400px;
}
.picture-boxes-grid.two-items {
  grid-template-columns: repeat(2, 1fr);
}
.picture-boxes-grid.three-items {
  grid-template-columns: repeat(3, 1fr);
}

.picture-box {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}
.picture-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}
.picture-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.picture-box h3 {
  padding: 1.5rem;
  font-size: 1.25rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 700;
  color: #333333;
  text-align: center;
  margin: 0;
}

/* Text Content Section */
.subpage-content {
  background-color: #f8f9fa;
  padding: 4rem 0;
}

.content-wrapper {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 3rem;
}
.content-wrapper h2 {
  font-size: 1.5rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1.5rem;
}
.content-wrapper h3 {
  font-size: 1.25rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 700;
  color: #333333;
  margin: 2rem 0 1rem 0;
}
.content-wrapper p {
  font-size: 1.125rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 400;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.content-wrapper ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}
.content-wrapper ul li {
  font-size: 1.125rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 400;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.content-wrapper a {
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
}
.content-wrapper a:hover {
  text-decoration: underline;
}

.back-link {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid #dee2e6;
}
.back-link a {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: #e9ecef;
  border-radius: 4px;
  color: #333333;
  text-decoration: none;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 500;
  transition: 0.3s ease;
}
.back-link a:hover {
  background-color: #dee2e6;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 992px) {
  .picture-boxes-grid {
    gap: 1.5rem;
  }
  .picture-boxes-grid.three-items {
    grid-template-columns: repeat(2, 1fr);
  }
  .picture-box img {
    height: 180px;
  }
  .picture-box h3 {
    font-size: 1.125rem;
    padding: 1rem;
  }
  .content-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  .subpage-header {
    padding: 3rem 1rem 2rem 1rem;
  }
  .subpage-header h1 {
    font-size: 1.5rem;
  }
  .subpage-header p {
    font-size: 1.125rem;
  }
  .picture-boxes-container {
    margin: 2rem auto;
    padding: 0 15px;
  }
  .picture-boxes-grid {
    gap: 1.5rem;
  }
  .picture-boxes-grid.two-items, .picture-boxes-grid.three-items {
    grid-template-columns: 1fr;
  }
  .picture-box img {
    height: 160px;
  }
  .picture-box h3 {
    font-size: 1.125rem;
    padding: 1rem;
  }
  .subpage-content {
    padding: 3rem 0;
  }
  .content-wrapper {
    margin: 0 15px;
    padding: 2rem 1.5rem;
  }
  .content-wrapper h2 {
    font-size: 1.875rem;
  }
  .content-wrapper h3 {
    font-size: 1.25rem;
  }
  .content-wrapper p, .content-wrapper li {
    font-size: 1rem;
  }
}
.body-donation {
  background: rgba(83, 103, 172, 0.3);
  min-height: 100vh;
}

.donation-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto 1fr;
  gap: 1rem;
  margin: 2rem auto;
  max-width: 1200px;
  padding: 0 20px;
  min-height: 800px;
}

/* Intro text section */
.intro-section {
  grid-column: 1/-1;
  background-color: #8fb4dc;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.intro-section h3 {
  color: #000000;
  font-size: 1.875rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
}
.intro-section p {
  color: #333333;
  font-size: 1.25rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 400;
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

/* Bank details section */
.bank-details {
  grid-column: 1/-1;
  background-color: #8fb4dc;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}
.bank-details h3 {
  color: #000000;
  font-size: 1.875rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 700;
  margin: 0 0 3rem 0;
  text-align: left;
}
.bank-details .bank-text {
  color: #333333;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  max-width: 600px;
  margin: 0;
  line-height: 1.6;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.bank-details .bank-text .bank-column {
  display: flex;
  flex-direction: column;
}
.bank-details .bank-text .bank-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.bank-details .bank-text .bank-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.bank-details .bank-text .bank-row .label {
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.8;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bank-details .bank-text .bank-row .value {
  font-size: 1rem;
  font-weight: 600;
}
.bank-details .bank-text .bank-row .value.highlight {
  font-size: 1.125rem;
  font-weight: 700;
}
.bank-details .bank-text .iban-row .value {
  font-family: "Monaco", "Consolas", monospace;
  letter-spacing: 1px;
  font-size: 1.125rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .bank-details {
    padding: 1.5rem;
  }
  .bank-details .bank-text {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 400px;
  }
}
@media (max-width: 576px) {
  .bank-details {
    padding: 1rem;
  }
  .bank-details h3 {
    font-size: 1.5rem;
  }
  .bank-details .bank-text .bank-row .value.iban {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .bank-details {
    padding: 1.5rem;
  }
  .bank-details .bank-text .bank-row {
    flex-direction: column;
    text-align: left;
    gap: 0.25rem;
  }
  .bank-details .bank-text .bank-row .label {
    margin-right: 0;
    margin-bottom: 0.25rem;
  }
  .bank-details .bank-text .bank-row .value {
    text-align: left;
  }
}
@media (max-width: 576px) {
  .bank-details {
    padding: 1rem;
  }
  .bank-details h3 {
    font-size: 1.5rem;
  }
}
/* Secondary donation grid */
.secondary-donations {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.secondary-donations .donation-option {
  background-color: rgba(0, 102, 204, 0.8);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.secondary-donations .donation-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  background-color: rgb(0, 102, 204);
}
.secondary-donations .donation-option h4 {
  color: white;
  font-size: 1.25rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 700;
  margin: 0 0 1rem 0;
}
.secondary-donations .donation-option p {
  color: white;
  font-size: 1rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
}

/* Contact info section */
.contact-info {
  grid-column: 1/-1;
  background-color: rgba(90, 102, 168, 0.8);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-top: 1rem;
}
.contact-info h3 {
  color: white;
  font-size: 1.5rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 700;
  margin: 0 0 1rem 0;
}
.contact-info p {
  color: white;
  font-size: 1.125rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 400;
  margin: 0.25rem 0;
  line-height: 1.4;
}

/* Responsive design */
@media (max-width: 768px) {
  .donation-boxes {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }
  .secondary-donations {
    grid-template-columns: 1fr;
  }
  .top-span-box h2 {
    font-size: 1.25rem;
    padding: 1rem 1.5rem;
  }
  .intro-section,
  .bank-details,
  .paypal-section {
    padding: 1.5rem;
  }
  .intro-section h3,
  .bank-details h3,
  .paypal-section h3 {
    font-size: 1.25rem;
  }
  .intro-section p,
  .bank-details .bank-info p {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .donation-boxes {
    margin: 1rem auto;
    min-height: auto;
  }
  .top-span-box {
    min-height: 200px;
  }
  .top-span-box h2 {
    font-size: 1.125rem;
  }
  .bank-details .bank-info {
    max-width: 100%;
  }
}
.body-calendar {
  background: rgba(250, 241, 125, 0.3);
  min-height: 100vh;
}

.kalender-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-template-rows: auto 1fr;
  gap: 1.5rem;
  height: calc(100vh - 40px);
}

.day-selector-container {
  grid-column: 1/-1;
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.day-selector {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  scroll-behavior: smooth;
}
.day-selector::-webkit-scrollbar {
  height: 6px;
}
.day-selector::-webkit-scrollbar-track {
  background: #e9ecef;
  border-radius: 3px;
}
.day-selector::-webkit-scrollbar-thumb {
  background: #8fb4dc;
  border-radius: 3px;
}

.day-item {
  min-width: 120px;
  padding: 1rem 1.5rem;
  background: #faf17d;
  color: #333333;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease;
  border: 2px solid transparent;
  user-select: none;
}
.day-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(143, 180, 220, 0.4);
}
.day-item.active {
  background: #faf17d;
  color: #333333;
  border-color: #faf17d;
  transform: scale(1.05);
}
.day-item.today {
  background: #89ca80;
  color: #000000;
  font-weight: 700;
}
.day-item.today:hover {
  background: #32886a;
  box-shadow: 0 6px 20px rgba(137, 202, 128, 0.4);
}
.day-item.today.active {
  background: #89ca80;
  color: #333333;
  border-color: #89ca80;
}
.day-item.has-events {
  background: #e75d2d;
  color: #000000;
  font-weight: 700;
}
.day-item.has-events::after {
  display: block;
  color: #faf17d;
  font-size: 8px;
  margin-top: 2px;
  line-height: 1;
}
.day-item.has-events:hover {
  background: #a64826;
  box-shadow: 0 6px 20px rgba(231, 93, 45, 0.4);
}
.day-item.has-events.active {
  background: #faf17d;
  color: #333333;
}
.day-item.has-events.active::after {
  color: #e75d2d;
}
.day-item.has-events.today {
  background: #89ca80;
}
.day-item.has-events.today::after {
  content: "●";
  color: #e75d2d;
}
.day-item.has-events.today:hover {
  background: #32886a;
  box-shadow: 0 6px 20px rgba(137, 202, 128, 0.4);
}
.day-item.has-events.today.active {
  background: #faf17d;
}
.day-item.has-events.today.active::after {
  color: #e75d2d;
}

.day-label {
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.day-date {
  font-size: 0.75rem;
  opacity: 0.9;
}

.month-overview {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.month-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding: 0;
  gap: 0.5rem;
  min-height: 44px;
  flex-wrap: nowrap;
  overflow: hidden;
}

.month-nav-button {
  background: #faf17d;
  color: black;
  border: none;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.25rem;
  transition: background-color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 40px;
  max-width: 40px;
}
.month-nav-button:hover {
  background: #0056b3;
}
.month-nav-button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.month-nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex: 1;
  min-width: 0;
  max-width: 300px;
}

.month-header {
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
  text-align: center;
  margin: 0;
  white-space: nowrap;
  flex: 1;
}

.month-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.month-day-header {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #666666;
  padding: 0.5rem 0;
}

.month-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.15s ease;
  font-size: 0.875rem;
}
.month-day:hover {
  background: #e9ecef;
}
.month-day.today {
  background: #89ca80;
  color: #000000;
}
.month-day.has-event {
  background: #e75d2d;
  color: #333333;
  font-weight: 700;
}
.month-day.selected {
  background: #faf17d;
  color: #333333;
}

.event-display {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  overflow-y: auto;
}

.event-placeholder {
  text-align: center;
  color: #666666;
  font-style: italic;
  padding: 3rem 1.5rem;
}

.event-card {
  background: #e75d2d;
  color: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
  border: 2px solid transparent;
}
.event-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 93, 45, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.event-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.event-time {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.event-description {
  font-size: 0.875rem;
  line-height: 1.4;
  opacity: 0.95;
}

.event-click-hint {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-top: 0.5rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .kalender-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
    gap: 1rem;
  }
  .month-overview {
    order: 2;
  }
  .event-display {
    order: 3;
  }
  .day-item {
    min-width: 100px;
    padding: 0.5rem 1rem;
  }
  .month-navigation {
    gap: 0.25rem;
  }
  .month-nav-button {
    padding: 0.25rem;
    font-size: 0.75rem;
    max-width: 40px;
  }
  .month-header {
    font-size: 0.875rem;
    max-width: 160px;
    min-width: 120px;
  }
}
@media (max-width: 480px) {
  .month-navigation {
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
  }
  .month-nav-center {
    order: 1;
    width: 100%;
    justify-content: center;
  }
  .month-nav-button {
    order: 2;
    width: 40px;
    max-width: 40px;
  }
}
.kalender-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
}

.day {
  background: #f3f3f3;
  padding: 0.5rem;
  min-height: 100px;
  border-radius: 0.4rem;
  position: relative;
}
.day.empty {
  background: transparent;
}

.day-name {
  font-weight: bold;
  text-align: center;
}

.date {
  font-size: 0.9rem;
  font-weight: bold;
  position: absolute;
  top: 0.3rem;
  right: 0.5rem;
  color: #555;
}

.event {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  background: #fff9c4;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.monthly-events-list {
  background: #ffffff;
  border-radius: 12px;
  margin-top: 1.5rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.monthly-events-header {
  background: #faf17d;
  color: #000000;
  padding: 1rem 1.5rem;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.monthly-events-header h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  flex: 1;
  text-align: center;
}

.events-count {
  background: rgba(255, 255, 255, 0.2);
  color: #000000;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
  white-space: nowrap;
}

.monthly-events-content {
  max-height: 400px;
  overflow-y: auto;
  padding: 0.5rem;
}
.monthly-events-content::-webkit-scrollbar {
  width: 6px;
}
.monthly-events-content::-webkit-scrollbar-track {
  background: #e9ecef;
  border-radius: 3px;
}
.monthly-events-content::-webkit-scrollbar-thumb {
  background: #8fb4dc;
  border-radius: 3px;
}
.monthly-events-content::-webkit-scrollbar-thumb:hover {
  background: #5367ac;
}

.monthly-event-item {
  display: flex;
  align-items: flex-start;
  padding: 0.5rem 1rem;
  margin: 0.25rem 0;
  background: #D4F8D4;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-left: 4px solid #FDE047;
}
.monthly-event-item:hover {
  background: #C7F5C7;
  transform: translateX(2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}
.monthly-event-item.featured {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE047 100%);
  border-left-color: #F97316;
}
.monthly-event-item.featured:hover {
  background: #fffcdd;
}

.monthly-event-date {
  flex-shrink: 0;
  text-align: center;
  margin-right: 1rem;
  min-width: 48px;
}

.monthly-event-day {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
  line-height: 1;
}

.monthly-event-weekday {
  font-size: 0.75rem;
  color: #666666;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 0.25rem;
}

.monthly-event-details {
  flex: 1;
  min-width: 0;
}

.monthly-event-title {
  font-weight: 700;
  color: #333333;
  font-size: 0.875rem;
  line-height: 1.25;
  margin-bottom: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.monthly-event-time {
  font-size: 0.75rem;
  color: #666666;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.monthly-event-location,
.monthly-event-registration {
  font-size: 0.75rem;
  color: #666666;
  margin: 0.25rem 0;
  display: flex;
  align-items: center;
}

.monthly-event-location {
  color: #8fb4dc;
}

.monthly-event-registration {
  color: #e75d2d;
  font-weight: 500;
}

.no-events {
  text-align: center;
  padding: 40px 20px;
  color: #adb5bd;
  font-style: italic;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .monthly-events-list {
    margin-top: 1rem;
  }
  .monthly-event-item {
    padding: 0.5rem 1rem;
  }
  .monthly-event-date {
    min-width: 40px;
    margin-right: 0.5rem;
  }
  .monthly-event-day {
    font-size: 1rem;
  }
  .monthly-event-title {
    font-size: 0.75rem;
  }
}
.event-detail {
  max-width: 1024px;
  margin: 0 auto;
  padding: 1.5rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
}
.event-detail .event-hero {
  margin-bottom: 3rem;
}
.event-detail .event-hero .event-image {
  margin-bottom: 1.5rem;
}
.event-detail .event-hero .event-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.event-detail .event-header .event-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.event-detail .event-header .event-badges .badge {
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.event-detail .event-header .event-badges .badge.featured {
  background: linear-gradient(135deg, #fdf5a0, #f8ea40);
  color: #333333;
}
.event-detail .event-header .event-badges .badge.registration {
  background: linear-gradient(180deg, #f3ae96, #e75d2d);
  color: #ffffff;
}
.event-detail .event-header .event-title {
  font-size: 2.25rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.event-detail .event-header .event-description {
  font-size: 1.25rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 400;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.event-detail .event-details {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 3rem;
  margin-bottom: 3rem;
}
.event-detail .event-details .event-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.event-detail .event-details .event-meta-grid .meta-item {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.event-detail .event-details .event-meta-grid .meta-item h3 {
  font-size: 1.125rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.5rem;
}
.event-detail .event-details .event-meta-grid .meta-item .meta-content {
  font-size: 1rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 500;
  color: #666666;
  line-height: 1.4;
}
.event-detail .event-details .registration-box,
.event-detail .event-details .bring-items-box,
.event-detail .event-details .accessibility-box {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.event-detail .event-details .registration-box h3,
.event-detail .event-details .bring-items-box h3,
.event-detail .event-details .accessibility-box h3 {
  font-size: 1.25rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1rem;
}
.event-detail .event-details .registration-box p,
.event-detail .event-details .bring-items-box p,
.event-detail .event-details .accessibility-box p {
  font-size: 1rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 400;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.event-detail .event-details .registration-box ul,
.event-detail .event-details .bring-items-box ul,
.event-detail .event-details .accessibility-box ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.event-detail .event-details .registration-box ul li,
.event-detail .event-details .bring-items-box ul li,
.event-detail .event-details .accessibility-box ul li {
  font-size: 1rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 400;
  color: #666666;
  line-height: 1.4;
  margin-bottom: 0.25rem;
}
.event-detail .event-details .registration-box a,
.event-detail .event-details .bring-items-box a,
.event-detail .event-details .accessibility-box a {
  color: #8fb4dc;
  text-decoration: none;
  font-weight: 500;
}
.event-detail .event-details .registration-box a:hover,
.event-detail .event-details .bring-items-box a:hover,
.event-detail .event-details .accessibility-box a:hover {
  color: #5367ac;
  text-decoration: underline;
}
.event-detail .event-details .registration-box {
  border-left: 4px solid #e75d2d;
}
.event-detail .event-details .bring-items-box {
  border-left: 4px solid #89ca80;
}
.event-detail .event-details .accessibility-box {
  border-left: 4px solid #8fb4dc;
}
.event-detail .event-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.event-detail .event-content h2 {
  font-size: 1.5rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}
.event-detail .event-content h2:first-child {
  margin-top: 0;
}
.event-detail .event-content h3 {
  font-size: 1.25rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 600;
  color: #333333;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}
.event-detail .event-content p {
  font-size: 1rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 400;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.event-detail .event-content ul, .event-detail .event-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.event-detail .event-content ul li, .event-detail .event-content ol li {
  font-size: 1rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 400;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 0.25rem;
}
.event-detail .event-content a {
  color: #8fb4dc;
  text-decoration: none;
  font-weight: 500;
}
.event-detail .event-content a:hover {
  color: #5367ac;
  text-decoration: underline;
}
.event-detail .event-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
}
.event-detail .event-footer .back-link,
.event-detail .event-footer .contact-link {
  display: inline-block;
  padding: 1rem 1.5rem;
  background-color: #8fb4dc;
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  transition: 0.3s ease;
}
.event-detail .event-footer .back-link:hover,
.event-detail .event-footer .contact-link:hover {
  background-color: #5367ac;
  text-decoration: none;
  transform: translateY(-1px);
}
.event-detail .event-footer .contact-link {
  background-color: #89ca80;
}
.event-detail .event-footer .contact-link:hover {
  background-color: #32886a;
}

@media (max-width: 768px) {
  .event-detail {
    padding: 1rem;
  }
  .event-detail .event-header .event-title {
    font-size: 1.875rem;
  }
  .event-detail .event-header .event-description {
    font-size: 1.125rem;
  }
  .event-detail .event-details {
    padding: 1.5rem;
  }
  .event-detail .event-details .event-meta-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .event-detail .event-content {
    padding: 1.5rem;
  }
  .event-detail .event-content h2 {
    font-size: 1.25rem;
  }
  .event-detail .event-content h3 {
    font-size: 1.125rem;
  }
  .event-detail .event-footer {
    padding: 1.5rem;
  }
}
@media (max-width: 576px) {
  .event-detail {
    padding: 0.5rem;
  }
  .event-detail .event-hero .event-image img {
    height: 200px;
  }
  .event-detail .event-header .event-title {
    font-size: 1.5rem;
  }
  .event-detail .event-header .event-description {
    font-size: 1rem;
  }
  .event-detail .event-details,
  .event-detail .event-content {
    padding: 1rem;
  }
}
.body-archive {
  background: rgba(157, 93, 156, 0.3);
  min-height: 100vh;
}

.archive-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem;
}

.archive-intro {
  margin: 1.5rem auto 3rem auto;
  max-width: 1024px;
  padding: 0 20px;
  text-align: center;
}
.archive-intro p {
  color: #333333;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.archive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.archive-box {
  background: #9d5d9c;
  border-radius: 12px;
  min-height: 200px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.archive-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.archive-box:hover .archive-box-overlay {
  opacity: 1;
  transform: translateY(0);
}
.archive-box:hover .archive-box-content h2 {
  transform: translateY(-10px);
}
.archive-box:active {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.archive-box-content {
  padding: 3rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: transparent;
}
.archive-box-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  margin: 0;
  text-align: center;
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
}

.archive-box-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #ffffff;
  padding: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 3;
}
.archive-box-overlay span {
  font-weight: 700;
  font-size: 1rem;
  display: block;
  text-align: center;
}

.archive-box:nth-child(1) .archive-box-content {
  background: linear-gradient(135deg, rgba(248, 234, 64, 0.15) 0%, rgba(231, 93, 45, 0.1) 100%);
}

.archive-box:nth-child(2) .archive-box-content {
  background: linear-gradient(135deg, rgba(137, 202, 128, 0.15) 0%, rgba(143, 180, 220, 0.1) 100%);
}

.archive-box:nth-child(3) .archive-box-content {
  background: linear-gradient(135deg, rgba(143, 180, 220, 0.15) 0%, rgba(157, 93, 156, 0.1) 100%);
}

@media (max-width: 768px) {
  .archive-container {
    padding: 2rem 1rem;
  }
  .archive-intro {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  .archive-intro p {
    font-size: 1rem;
  }
  .archive-grid {
    gap: 1.5rem;
  }
  .archive-box {
    min-height: 150px;
  }
  .archive-box .archive-box-content {
    padding: 1.5rem;
  }
  .archive-box .archive-box-content h2 {
    font-size: 1.25rem;
  }
}
@media (max-width: 480px) {
  .archive-container {
    padding: 1.5rem 0.5rem;
  }
  .archive-intro {
    padding: 1rem;
  }
  .archive-intro p {
    font-size: 0.875rem;
  }
  .archive-box {
    min-height: 120px;
  }
  .archive-box .archive-box-content {
    padding: 1rem;
  }
  .archive-box .archive-box-content h2 {
    font-size: 1.125rem;
  }
  .archive-box .archive-box-overlay {
    padding: 1rem;
  }
  .archive-box .archive-box-overlay span {
    font-size: 0.875rem;
  }
}
.body-archive-category {
  background: linear-gradient(135deg, rgba(248, 234, 64, 0.08) 0%, rgba(231, 93, 45, 0.08) 25%, rgba(157, 93, 156, 0.12) 50%, rgba(143, 180, 220, 0.1) 75%, rgba(137, 202, 128, 0.08) 100%);
  min-height: 100vh;
  position: relative;
}
.body-archive-category::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(157, 93, 156, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(143, 180, 220, 0.05) 0%, transparent 50%), radial-gradient(circle at 40% 20%, rgba(248, 234, 64, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.body-archive-category.category-veranstaltungen {
  background: linear-gradient(135deg, rgba(248, 234, 64, 0.12) 0%, rgba(231, 93, 45, 0.15) 50%, rgba(248, 234, 64, 0.1) 100%);
}
.body-archive-category.category-veranstaltungen .archive-post-card::before {
  background: linear-gradient(180deg, #f3ae96, #e75d2d);
}
.body-archive-category.category-veranstaltungen .archive-post-date {
  background: linear-gradient(180deg, #f3ae96, #e75d2d);
}
.body-archive-category.category-veranstaltungen .read-more-btn {
  background: linear-gradient(135deg, rgba(248, 234, 64, 0.2), rgba(231, 93, 45, 0.15));
  color: #a64826;
}
.body-archive-category.category-veranstaltungen .read-more-btn:hover {
  background: linear-gradient(180deg, #f3ae96, #e75d2d);
  color: #ffffff;
}
.body-archive-category.category-projekte {
  background: linear-gradient(135deg, rgba(137, 202, 128, 0.12) 0%, rgba(143, 180, 220, 0.15) 50%, rgba(137, 202, 128, 0.1) 100%);
}
.body-archive-category.category-projekte .archive-post-card::before {
  background: linear-gradient(135deg, #c4e4bd, #89ca80);
}
.body-archive-category.category-projekte .archive-post-date {
  background: linear-gradient(135deg, #c4e4bd, #89ca80);
}
.body-archive-category.category-projekte .read-more-btn {
  background: linear-gradient(135deg, rgba(137, 202, 128, 0.2), rgba(143, 180, 220, 0.15));
  color: #32886a;
}
.body-archive-category.category-projekte .read-more-btn:hover {
  background: linear-gradient(135deg, #c4e4bd, #89ca80);
  color: #ffffff;
}
.body-archive-category.category-ausstellungen {
  background: linear-gradient(135deg, rgba(143, 180, 220, 0.12) 0%, rgba(157, 93, 156, 0.15) 50%, rgba(143, 180, 220, 0.1) 100%);
}
.body-archive-category.category-ausstellungen .archive-post-card::before {
  background: linear-gradient(135deg, #8fb4dc 0%, #9d5d9c 100%);
}
.body-archive-category.category-ausstellungen .archive-post-date {
  background: linear-gradient(135deg, #8fb4dc 0%, #9d5d9c 100%);
}
.body-archive-category.category-ausstellungen .read-more-btn {
  background: linear-gradient(135deg, rgba(143, 180, 220, 0.2), rgba(157, 93, 156, 0.15));
  color: #5367ac;
}
.body-archive-category.category-ausstellungen .read-more-btn:hover {
  background: linear-gradient(135deg, #8fb4dc 0%, #9d5d9c 100%);
  color: #ffffff;
}

.archive-category-header {
  text-align: center;
  padding: 4rem 1.5rem 3rem;
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.archive-category-header .category-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}
.archive-category-header h1 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #333333;
  margin-bottom: 1.5rem;
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  position: relative;
  display: inline-block;
}
.archive-category-header h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #8fb4dc 0%, #9d5d9c 100%);
  border-radius: 9999px;
}
.archive-category-header p {
  font-size: 1.25rem;
  color: rgba(51, 51, 51, 0.75);
  font-family: "Open Sauce Sans", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
.archive-stats {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.archive-stats .stat-badge {
  background: #ffffff;
  color: #9d5d9c;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 3px solid rgba(157, 93, 156, 0.2);
  transition: all 0.3s ease;
}
.archive-stats .stat-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  border-color: rgba(157, 93, 156, 0.4);
}

.archive-category-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
  position: relative;
  z-index: 1;
}

.back-to-archive {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  background: #ffffff;
  color: #9d5d9c;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 9999px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.back-to-archive:hover {
  background: linear-gradient(135deg, #8fb4dc 0%, #9d5d9c 100%);
  color: #ffffff;
  transform: translateX(-5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-color: rgba(157, 93, 156, 0.3);
}
.back-to-archive:active {
  transform: translateX(-3px);
}

.archive-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.archive-post-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.archive-post-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(135deg, #8fb4dc 0%, #9d5d9c 100%);
  transition: height 0.3s ease;
}
.archive-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(157, 93, 156, 0.2);
}
.archive-post-card:hover::before {
  height: 8px;
}
.archive-post-card:hover .archive-post-title a {
  color: #9d5d9c;
}

.archive-post-header {
  padding: 2rem 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: linear-gradient(to bottom, rgba(157, 93, 156, 0.02), transparent);
}

.archive-post-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}
.archive-post-title a {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}
.archive-post-title a:hover {
  color: #9d5d9c;
}

.archive-post-date {
  font-size: 0.875rem;
  color: #ffffff;
  background: linear-gradient(135deg, #8fb4dc 0%, #9d5d9c 100%);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  display: inline-block;
  align-self: flex-start;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.archive-post-description {
  color: rgba(51, 51, 51, 0.85);
  line-height: 1.6;
  margin: 0;
  padding: 0 2rem;
  font-size: 1rem;
  font-weight: 400;
}

.archive-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(to top, rgba(143, 180, 220, 0.03), transparent);
  border-top: 2px solid rgba(157, 93, 156, 0.08);
}
.archive-post-meta .meta-item {
  font-size: 0.875rem;
  color: rgba(51, 51, 51, 0.8);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 500;
  background: rgba(248, 234, 64, 0.1);
  padding: 0.25rem 1rem;
  border-radius: 8px;
}

.archive-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 2rem 1rem;
}
.archive-post-tags .tag {
  background: linear-gradient(135deg, rgba(157, 93, 156, 0.15), rgba(143, 180, 220, 0.12));
  color: #9d5d9c;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.15s ease;
  border: 2px solid transparent;
}
.archive-post-tags .tag:hover {
  background: linear-gradient(135deg, rgba(157, 93, 156, 0.25), rgba(143, 180, 220, 0.2));
  border-color: rgba(157, 93, 156, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.archive-post-footer {
  padding: 0 2rem 2rem;
  margin-top: auto;
}
.archive-post-footer .read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, rgba(157, 93, 156, 0.15), rgba(143, 180, 220, 0.12));
  color: #9d5d9c;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.archive-post-footer .read-more-btn:hover {
  background: linear-gradient(135deg, #8fb4dc 0%, #9d5d9c 100%);
  color: #ffffff;
  transform: translateX(5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-color: rgba(157, 93, 156, 0.3);
}

.no-posts-message {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 2rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 3px solid rgba(157, 93, 156, 0.15);
  max-width: 600px;
  margin: 0 auto;
}
.no-posts-message .no-posts-icon {
  font-size: 5rem;
  margin-bottom: 2rem;
  opacity: 0.6;
  animation: float 3s ease-in-out infinite;
}
.no-posts-message p {
  font-size: 1.25rem;
  color: rgba(51, 51, 51, 0.7);
  font-weight: 600;
  margin: 0 0 1rem 0;
}
.no-posts-message small {
  font-size: 0.875rem;
  color: rgba(51, 51, 51, 0.5);
  font-style: italic;
  display: block;
}

@media (max-width: 992px) {
  .archive-posts-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .back-to-archive {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
  }
  .archive-category-header {
    padding: 3rem 1rem 2rem;
  }
  .archive-category-header .category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  .archive-category-header h1 {
    font-size: 1.875rem;
  }
  .archive-category-header h1::after {
    width: 60px;
    height: 3px;
  }
  .archive-category-header p {
    font-size: 1.125rem;
    margin-top: 1rem;
  }
  .archive-stats {
    margin-top: 1.5rem;
  }
  .archive-stats .stat-badge {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
  }
  .archive-category-container {
    padding: 0 1rem 3rem;
  }
  .archive-posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .archive-post-card::before {
    height: 5px;
  }
  .archive-post-card:hover::before {
    height: 6px;
  }
  .archive-post-header {
    padding: 1.5rem 1.5rem 1rem;
  }
  .archive-post-title {
    font-size: 1.25rem;
  }
  .archive-post-description {
    padding: 0 1.5rem;
  }
  .archive-post-meta {
    padding: 1rem 1.5rem;
    gap: 1rem;
  }
  .archive-post-meta .meta-item {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }
  .archive-post-tags {
    padding: 0 1.5rem 1.5rem;
  }
  .archive-post-tags .tag {
    padding: 0.25rem 1rem;
    font-size: 0.65rem;
  }
  .no-posts-message {
    padding: 3rem 1.5rem;
  }
  .no-posts-message p {
    font-size: 1.125rem;
  }
}
@media (max-width: 480px) {
  .archive-category-header {
    padding: 2rem 0.5rem;
  }
  .archive-category-header .category-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  .archive-category-header h1 {
    font-size: 1.5rem;
  }
  .archive-category-header h1::after {
    width: 50px;
    height: 2px;
  }
  .archive-category-header p {
    font-size: 1rem;
  }
  .archive-stats {
    margin-top: 1rem;
  }
  .archive-stats .stat-badge {
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
  }
  .archive-category-container {
    padding: 0 0.5rem 2rem;
  }
  .archive-post-card:hover {
    transform: translateY(-4px);
  }
  .archive-post-header {
    padding: 1rem 1rem 0.5rem;
  }
  .archive-post-title {
    font-size: 1.125rem;
  }
  .archive-post-description {
    padding: 0 1rem;
    font-size: 0.875rem;
  }
  .archive-post-meta {
    padding: 0.5rem 1rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  .archive-post-meta .meta-item {
    align-self: flex-start;
  }
  .archive-post-tags {
    padding: 0 1rem 1rem;
  }
  .no-posts-message {
    padding: 2rem 1rem;
  }
  .no-posts-message p {
    font-size: 1rem;
  }
}

/*# sourceMappingURL=styles.css.map */