/* ========== BASIS-STYLES ========== */
:root {
  --main-color: #667C44;
  --secondary-color: #8A9B6E;
  --dark-color: #46532F;
  --light-color: #F4F7F0;
  --header-font: 'Montserrat', sans-serif;
  --body-font: 'Open Sans', sans-serif;
  
  /* Background and text colors for light mode */
  --bg-color: #ffffff;
  --text-color: #333333;
  --card-bg: #F4F7F0;
  --card-text: #333333;
  --border-color: #e0e0e0;
}

/* Dark mode variables */
[data-theme="dark"] {
  --main-color: #7A9251;
  --secondary-color: #9BB072;
  --dark-color: #5A6740;
  --light-color: #2A2A2A;
  
  /* Background and text colors for dark mode */
  --bg-color: #1a1a1a;
  --text-color: #e0e0e0;
  --card-bg: #2A2A2A;
  --card-text: #e0e0e0;
  --border-color: #404040;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--bg-color);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* ========== HEADER (NEU) ========== */
header {
  background: var(--main-color);
  padding: 1.5rem 4rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 80px;
  transition: transform 0.3s;
}

.nav-links {
  display: flex;
  gap: 3.5rem;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-family: var(--header-font);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  transition: all 0.3s;
}

.nav-links a:hover {
  background: var(--dark-color);
}

/* Header Controls Container */
.header-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Theme Toggle Button */
.theme-toggle {
  background: none;
  border: 2px solid white;
  color: white;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  margin-left: 1rem;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.theme-toggle:active {
  transform: scale(0.95);
}

/* Section titles */
.section-title {
  font-family: var(--header-font);
  color: var(--main-color);
  text-align: center;
  margin-bottom: 3rem;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s;
}

.menu-toggle.active {
  transform: rotate(90deg);
}

/* ========== LANDING PAGE (AKTUALISIERT) ========== */
.swiper-container {
  height: 90vh;
  margin-top: 80px;
}

.swiper-slide {
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.slide-caption {
  position: absolute;
  bottom: 25%;
  left: 10%;
  color: white;
  max-width: 700px;
}

.slide-caption h2 {
  font-family: var(--header-font);
  font-size: 3.5rem;
  margin-bottom: 2rem;
  text-shadow: 3px 3px 8px rgba(0,0,0,0.4);
}

/* Styling for Swiper navigation arrows */
.swiper-button-next,
.swiper-button-prev {
  color: white; /* Farbe der Pfeile */
  font-size: 2rem; /* Größe der Pfeile */
  font-weight: bold; /* Dickere Pfeile */
  background-color: rgba(0, 0, 0, 0.5); /* Halbtransparenter Hintergrund */
  border-radius: 50%; /* Runde Form */
  width: 3rem; /* Breite der Pfeile */
  height: 3rem; /* Höhe der Pfeile */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: rgba(0, 0, 0, 0.8); /* Dunklerer Hintergrund beim Hover */
  transform: scale(1.1); /* Leichtes Vergrößern beim Hover */
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.5rem; /* Größe des Pfeilsymbols */
  font-weight: bold; /* Dickere Pfeilsymbole */
}

.swiper-pagination {
  bottom: 1rem !important;
}

.swiper-pagination-bullet {
  background: white !important;
  border: 0.15rem solid black;
  width: 1rem !important;
  height: 1rem !important;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: white !important;
  border: 0.15rem solid black;
  width: 1rem !important;
  height: 1rem !important;
  opacity: 1;
}
.news-section {
  padding: 8.4rem 2rem;
  background: var(--bg-color);
}

.news-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.news-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.news-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  padding: 1rem;
}

.news-card-content {
  padding: 2rem;
}

.news-content {
  padding: 1rem;
  color: var(--card-text);
}

/* ========== EVENTS (KOMPLETT ÜBERARBEITET) ========== */
.events-main {
  padding: 8rem 4rem;
  max-width: 1600px;
  margin: 0 auto;
  background: var(--bg-color);
  color: var(--text-color);
}

.event-year-section {
  margin-bottom: 4rem;
}

.event-year-section h2 {
  font-family: var(--header-font);
  font-size: 2.5rem;
  color: var(--main-color);
  margin-bottom: 2rem;
}

.event-card {
  background: var(--card-bg);
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.3s;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.event-short-info {
  padding: 2rem;
  text-decoration: none;
  text-decoration-style: dotted;
  color: var(--dark-color);
}

.event-card-link {
  text-decoration: none;
  color: var(--dark-color);
} 

.event-details {
  display: none;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 0 0 12px 12px;

}

/* Event Grid Styles */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.event-item {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.event-item .event-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.event-item h2 {
  padding: 1.5rem 2rem 0.5rem;
  color: var(--main-color);
  margin-bottom: 0;
  font-size: 1.5rem;
}

.event-info {
  padding: 0 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-item:hover {
  transform: translateY(-5px);
}

.event-item h2 {
  color: var(--main-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.event-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-info .icon {
  font-size: 2rem;
}

/* Event Date/Time Styling */
.event-datetime {
  padding: 1rem 2rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-color);
  font-size: 0.95rem;
  font-weight: 500;
}

.event-datetime i {
  color: var(--main-color);
  font-size: 1.1rem;
}

.event-date {
  color: var(--text-color);
}

.event-link {
  display: inline-block;
  color: var(--main-color);
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: color 0.3s;
}

.event-link:hover {
  color: var(--dark-color);
}

.past-event {
  opacity: 0.8;
  background: #f8f9fa;
}

/* ========== TICKETS (NEU) ========== */
.ticket-redirect {
  padding: 10rem 2rem;
  text-align: center;
}

.ticket-main-button {
  display: inline-block;
  background: var(--main-color);
  color: white!important;
  padding: 1.5rem 5rem;
  font-size: 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(102,124,68,0.3);
}

.ticket-main-button:hover {
  background: var(--dark-color);
  transform: scale(1.05);
}

/* ========== FOOTER (AKTUALISIERT) ========== */
footer {
  background: var(--dark-color);
  color: white;
  padding: 2rem 1rem;
}

.footer-content {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem; /* Abstand zwischen den Abschnitten reduziert */
    font-size: 0.85rem; /* Kleinere Schriftgröße */
    padding: 1rem 0; /* Weniger vertikaler Abstand */
}

.footer-section h3 {
  font-family: var(--header-font);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.footer-section a[href] {
  color: gold;
}

.footer-bottom a[href]{
  color: gold;
}

.footer-links {
  display: flex;
  flex-direction: column; /* Links untereinander anordnen */
  align-items: flex-start; /* Links linksbündig ausrichten */
  gap: 0.5rem; /* Abstand zwischen den Links */
  margin-top: 1rem; /* Abstand über den Links */
}

.footer-links a {
  color: var(--light-color); /* Farbe der Links */
  text-decoration: none; /* Unterstreichung entfernen */
  font-size: 1rem; /* Schriftgröße */
  transition: color 0.3s ease; /* Weicher Hover-Effekt */
}

.footer-links a:hover {
  color: var(--secondary-color); /* Farbe beim Hover */
}

.newsletter-form input {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-copyright {
  font-size: 0.9rem;
}

/* ========== MEDIA QUERIES ========== */
@media (max-width: 1200px) {
  .nav-links {
    gap: 2rem;
  }
  
  .swiper-container {
    height: 70vh;
  }
}

@media (max-width: 992px) {
  header {
    padding: 1rem 2rem;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .theme-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--main-color);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 5rem;
    gap: 1.5rem;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    z-index: 1000;
  }
  
  .nav-links.nav-active {
    right: 0;
  }
  
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  
  .nav-links a {
    width: 100%;
    padding: 1.2rem 0;
  }
  
  .dropdown-content {
    position: static;
    background: var(--secondary-color);
    width: 100%;
    box-shadow: none;
    display: none;
    padding: 0;
  }
  
  .dropdown-content a {
    padding: 1rem;
  }
  
  .dropdown:hover .dropdown-content {
    animation: none;
  }
  
  .dropdown.active .dropdown-content {
    display: block;
  }
  
  /* For dropdown toggle on mobile */
  .nav-links .dropdown > a {
    position: relative;
  }
  
  .nav-links .dropdown > a::after {
    content: "▾";
    margin-left: 0.5rem;
  }
  
  /* Adjust news grid */
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Adjust events and tickets sections */
  .events-main, .tickets-main {
    padding: 8rem 2rem;
  }
  
  .events-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem;
  }
  
  .logo img {
    height: 60px;
  }
  
  .swiper-container {
    height: 60vh;
    margin-top: 80px;
  }
  
  .slide-caption {
    bottom: 15%;
    left: 5%;
  }
  
  .slide-caption h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .news-grid, .ticket-container {
    grid-template-columns: 1fr;
  }
  
  .news-section, .content-section {
    padding: 4rem 1.5rem;
  }
  
  .about-main, .events-main, .tickets-main {
    padding: 6rem 1.5rem 2rem;
  }
  
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
  
  .footer-section {
    width: 100%;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-links {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 50px;
  }
  
  .swiper-container {
    height: 50vh;
  }
  
  .slide-caption h2 {
    font-size: 1.8rem;
  }
  
  .ticket-hero h1, .content-section h1 {
    font-size: 2rem;
  }
  
  .nav-links {
    width: 85%;
  }
  
  .event-item h2 {
    font-size: 1.3rem;
  }
  
  .about-grid, .events-grid {
    gap: 1.5rem;
  }
}

/* Improvement for touch devices */
@media (hover: none) {
  .dropdown:hover .dropdown-content {
    display: none;
  }
  
  .dropdown.active .dropdown-content {
    display: block;
  }
}

/* ========== ANIMATIONEN ========== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}
/* Dropdown Container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (versteckt standardmäßig) */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark-color);
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1001;
  border-radius: 4px;
  padding: 1rem 0;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

/* Dropdown Links */
.dropdown-content a {
  color: var(--light-color);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background 0.3s;
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
}

.dropdown-content a:hover {
  background: var(--secondary-color);
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Event Detail Page */
.event-detail-main {
padding: 8rem 4rem;
max-width: 1200px;
margin: 0 auto;
}

.event-header {
text-align: center;
margin-bottom: 3rem;
}

.event-hero-image {
width: 100%;
height: 500px;
object-fit: cover;
border-radius: 12px;
margin-top: 2rem;
}

.event-meta {
display: flex;
justify-content: center;
gap: 4rem;
margin: 2rem 0;
}

.meta-item {
display: flex;
align-items: center;
gap: 1rem;
background: var(--light-color);
padding: 1.5rem;
border-radius: 8px;
}

/* .event-content {
display: grid;
grid-template-columns: 1fr 350px;
gap: 3rem;
margin: 4rem 0;
} */

.event-description h2 {
color: var(--main-color);
margin-bottom: 1.5rem;
}

.programm-list {
background: #f8f9fa;
padding: 2rem;
border-radius: 8px;
margin: 2rem 0;
}

.ticket-box {
background: var(--light-color);
padding: 2rem;
border-radius: 12px;
position: sticky;
top: 120px;
}

.artist-card {
text-align: center;
margin-top: 2rem;
}

.artist-card img {
width: 200px;
height: 200px;
border-radius: 50%;
object-fit: cover;
margin: 0 auto 1rem;
}

.map-container {
margin: 3rem 0;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
.event-content {
    grid-template-columns: 1fr;
}

.event-meta {
    flex-direction: column;
    gap: 1rem;
}

.event-hero-image {
    height: 300px;
}
}

/* About Page Styles */
.about-main {
padding: 8rem 4rem;
max-width: 1600px;
margin: 0 auto;
background: var(--bg-color);
color: var(--text-color);
}

.content-section {
margin-bottom: 3rem;
padding: 2rem;
background: var(--card-bg);
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
color: var(--card-text);
}

.content-section h1, .content-section h2 {
font-family: var(--header-font);
color: var(--main-color);
margin-bottom: 1.5rem;
text-align: center;
}

.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
align-items: start;
}

.about-image img {
width: 100%;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.about-text .lead-text {
font-size: 1.1rem;
color: var(--text-color);
margin-bottom: 1.5rem;
}

.principles {
display: flex;
gap: 1.5rem;
}

.principle-item {
background: var(--card-bg);
padding: 1rem;
border-radius: 6px;
box-shadow: 0 1px 6px rgba(0,0,0,0.06);
text-align: center;
color: var(--card-text);
}

.principle-item h3 {
font-family: var(--header-font);
color: var(--secondary-color);
margin-bottom: 0.8rem;
font-size: 1rem;
}

.statute-content {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.statute-article {
background: var(--card-bg);
padding: 1.5rem;
border-radius: 6px;
box-shadow: 0 1px 6px rgba(0,0,0,0.06);
color: var(--card-text);
}

.statute-article h3 {
font-family: var(--header-font);
color: var(--main-color);
margin-bottom: 0.8rem;
font-size: 1.2rem;
}

.board-members {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
}

.member-card {
background: white;
padding: 1.5rem;
border-radius: 6px;
box-shadow: 0 2px 6px rgba(0,0,0,0.08);
text-align: center;
}

.member-card img {
width: 120px;
height: 120px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 0.8rem;
}

.member-card h3 {
font-family: var(--header-font);
color: var (--dark-color);
margin-bottom: 0.4rem;
font-size: 1.1rem;
}

.member-card .position {
font-style: italic;
color: #777;
margin-bottom: 0.8rem;
}

.member-card .contact {
color: var(--main-color);
}

/* Media Queries for About Page */
@media (max-width: 992px) {
.about-grid {
  grid-template-columns: 1fr;
}

.principles {
  flex-direction: column;
}
}

/* Contact Page Styles */
.tickets-main {
padding: 8rem 4rem;
max-width: 1600px;
margin: 0 auto;
}

.ticket-hero {
text-align: center;
margin-bottom: 4rem;
}

.ticket-hero h1 {
font-family: var(--header-font);
font-size: 3rem;
color: var(--main-color);
margin-bottom: 2rem;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.ticket-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 3rem;
}

.ticket-option {
background: var(--light-color);
border-radius: 12px;
padding: 2rem;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
transition: transform 0.3s ease;
}

.ticket-option:hover {
transform: translateY(-5px);
}

.ticket-card {
text-align: left;
}

.ticket-card-header {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 1.5rem;
}

.ticket-card-header h3 {
font-family: var(--header-font);
font-size: 1.5rem;
color: var(--dark-color);
}

.ticket-icon {
font-size: 2rem;
color: var(--secondary-color);
}

.ticket-description {
font-size: 1.1rem;
color: #555;
margin-bottom: 2rem;
}

.ticket-hinweis {
font-style: italic;
color: #777;
margin-top: 1rem;
}

.outlet-list {
margin-top: 1.5rem;
}

.outlet-item {
margin-bottom: 1.5rem;
padding: 1.5rem;
border-radius: 8px;
background: white;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.outlet-item h4 {
font-family: var(--header-font);
color: var(--main-color);
margin-bottom: 0.5rem;
}

.outlet-address {
font-size: 1rem;
color: #666;
margin-bottom: 0.8rem;
}

.outlet-hours {
font-size: 0.9rem;
color: #777;
}

@media (max-width: 768px) {
.ticket-container {
  grid-template-columns: 1fr;
}

.ticket-option {
  padding: 1.5rem;
}

.ticket-hero h1 {
  font-size: 2.5rem;
}
}

/* Styling for Swiper buttons */
.cta-button {
display: inline-block;
padding: 12px 24px;
background-color: #667C44; /* Ersetze dies mit der Farbe des Banners */
color: #fff;
text-decoration: none;
font-size: 16px;
font-weight: bold;
border-radius: 5px;
transition: background-color 0.3s ease, transform 0.2s ease;
text-align: center;
}

.cta-button:hover {
background-color: #667C44; /* Dunklere Version der Bannerfarbe */
transform: scale(1.05); /* Leichtes Vergrößern beim Hover */
}

.cta-button:active {
transform: scale(0.95); /* Leichtes Verkleinern beim Klicken */
}

.social-links {
margin-top: 1rem; /* Abstand über den Icons */
display: flex;
gap: 1rem; /* Abstand zwischen den Icons */
justify-content: start; /* Links ausrichten */
}

.social-links a {
color: white;
font-size: 2rem; /* Größere Icons */
transition: color 0.3s ease, transform 0.2s ease;
}

.social-links a:hover {
color: var(--secondary-color); /* Farbe beim Hover */
transform: scale(1.2); /* Vergrößerung beim Hover */
}

/* Styling for the newsletter form button */
.newsletter-form button {
background-color: #667C44; /* Farbe passend zum Design */
color: #fff;
border: none;
padding: 10px 20px;
font-size: 16px;
font-weight: bold;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.2s ease;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.newsletter-form button:hover {
background-color: #556835; /* Dunklere Version der Hauptfarbe */
transform: scale(1.05); /* Leichtes Vergrößern beim Hover */
}

.newsletter-form button:active {
transform: scale(0.95); /* Leichtes Verkleinern beim Klicken */
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}



/* Styling for the Transparency Section */
#transparenz {
margin-top: 2rem;
}

.transparency-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
margin-top: 1rem;
}

.transparency-item {
background: #f5f5f5; /* Dezentes Grau */
padding: 1rem;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
font-size: 0.9rem; /* Kleinere Schriftgröße */
transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.transparency-item:hover {
transform: translateY(-3px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.transparency-item h3 {
font-size: 1.2rem; /* Kleinere Überschrift */
margin-bottom: 0.5rem;
color: var(--main-color);
}

.transparency-item p {
font-size: 0.9rem; /* Kleinere Beschreibung */
color: #666;
margin-bottom: 0.5rem;
}

.transparency-item .read-more {
font-size: 0.9rem;
color: var(--secondary-color);
text-decoration: none;
font-weight: normal;
transition: color 0.3s ease;
}

.transparency-item .read-more:hover {
color: var(--main-color);
}

/* Archive Section Styles */
.archive-section {
  padding: 8rem 4rem;
  background: #f9fafb;
}

.archive-section .section-title {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--main-color);
}

.archive-scrollable {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  overflow-x: auto;
  padding-bottom: 20px; /* Platz für den Scrollbalken */
  scrollbar-width: thin; /* Für Firefox */
  scrollbar-color: var(--secondary-color) #f0f0f0; /* Für Firefox */
}

/* Anpassung für Webkit-Browser (Chrome, Safari) */
.archive-scrollable::-webkit-scrollbar {
  height: 8px;
}

.archive-scrollable::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 4px;
}

.archive-scrollable::-webkit-scrollbar-thumb {
  background-color: var(--secondary-color);
  border-radius: 4px;
}

.archive-card {
  min-width: 300px;
  max-width: 400px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin: 0 1rem;
  transition: transform 0.3s ease;
}

.archive-card:hover {
  transform: translateY(-5px);
}

.archive-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.archive-content {
  padding: 1rem;
}

.archive-content h3 {
  font-family: var(--header-font);
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.archive-date {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 0.8rem;
}

.archive-content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

.archive-content .read-more {
  color: var(--main-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.archive-content .read-more:hover {
  color: var(--dark-color);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; /* Abstand zwischen den Karten */
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.impressum-main {
padding: 10rem 4rem 2rem 4rem; /* Top Right Bottom Left */
display: flex;
justify-content: center;
align-items: flex-start;
min-height: calc(100vh - 300px); /* Adjust based on header/footer height */
}

.legal-content {
max-width: 800px;
width: 100%;
background: var(--light-color);
padding: 3rem;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.legal-section {
margin-bottom: 2.5rem;
}

.legal-content h1 {
color: var(--main-color);
font-family: var(--header-font);
font-size: 2.5rem;
margin-bottom: 2rem;
text-align: center;
}

.legal-section h2 {
color: var(--dark-color);
font-family: var(--header-font);
font-size: 1.5rem;
margin-bottom: 1rem;
}

.legal-section p {
line-height: 1.6;
}

.legal-section a {
color: var(--main-color);
text-decoration: none;
transition: color 0.3s ease;
}

.legal-section a:hover {
color: var(--dark-color);
}

.member-main {
padding: 8.5rem 4rem 2rem 4rem;
display: flex;
justify-content: center;
align-items: flex-start;
min-height: calc(100vh - 300px);
}

.member-content {
max-width: 800px;
width: 100%;
background: var(--light-color);
padding: 3rem;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.member-content h1 {
color: var(--main-color);
font-family: var(--header-font);
font-size: 2.5rem;
margin-bottom: 2rem;
text-align: center;
}

.member-section {
margin-bottom: 3rem;
}

.member-section h2 {
color: var(--dark-color);
font-family: var(--header-font);
font-size: 1.5rem;
margin-bottom: 1rem;
}

.membership-fees {
list-style: none;
padding: 1.5rem;
background: white;
border-radius: 8px;
margin: 1rem 0;
}

.membership-fees li {
padding: 0.5rem 0;
border-bottom: 1px solid #eee;
}

.membership-fees li:last-child {
border-bottom: none;
}

.member-benefits {
list-style: none;
padding: 0;
}

.member-benefits li {
display: flex;
align-items: center;
gap: 1rem;
padding: 0.8rem 0;
}

.member-benefits i {
color: var(--main-color);
font-size: 1.2rem;
}

.download-button {
display: inline-block;
background: var(--main-color);
color: white;
padding: 1rem 2rem;
border-radius: 6px;
text-decoration: none;
margin: 1rem 0;
transition: background-color 0.3s ease;
}

.download-button:hover {
background: var(--dark-color);
}

.form-info {
margin-top: 2rem;
font-weight: bold;
}

.member-content address {
margin-top: 1rem;
line-height: 1.6;
}

.member-content address a {
color: var(--main-color);
text-decoration: none;
}

.member-content address a:hover {
color: var(--dark-color);
}

.spenden-main {
padding: 10rem 4rem 6rem 4rem;
display: flex;
justify-content: center;
align-items: flex-start;
min-height: calc(100vh - 300px);
}