/* ========== 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;
}

/* Pink Unicorn mode variables (spieleres, auffälliges Farbschema) */
[data-theme="unicorn"] {
  --main-color: #ff4fbf; /* kräftiges Pink */
  --secondary-color: #ff9de2; /* helleres Pink */
  --dark-color: #b30074; /* dunkleres Pink für Hover */
  --light-color: #ffe6f6; /* sehr helles Rosa */
  --bg-color: #fff0fa; /* Pastell Hintergrund */
  --text-color: #5a0040; /* gut lesbares dunkles Pink/Violett */
  --card-bg: #ffe0f3; /* Karten Hintergrund */
  --card-text: #5a0040;
  --border-color: #ffb3e4;
}

/* Spezial-Effekte für Unicorn Mode */
[data-theme="unicorn"] body,
body[data-theme="unicorn"] {
  background-image: radial-gradient(circle at 15% 20%, #ffd3f0, transparent 60%),
    radial-gradient(circle at 85% 30%, #ffe7fa, transparent 55%),
    linear-gradient(135deg, #fff7fc 0%, #ffe6f8 60%, #ffd4f3 100%);
  background-attachment: fixed;
}

/* Navbar in Unicorn Mode */
[data-theme="unicorn"] .custom-navbar {
  background: linear-gradient(90deg, #ff4fbf, #ff7fd1, #ff4fbf);
  background-size: 200% 100%;
  animation: unicornBar 8s linear infinite;
}

@keyframes unicornBar {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* (Versteckter Unicorn Mode wird per Doppelklick aktiviert – kein eigener Button mehr) */
@keyframes sparkle { /* evtl. später wiederverwenden */
  0%, 80%, 100% { opacity: 0; transform: scale(0.3) translateY(0); }
  10% { opacity: 1; transform: scale(1) translateY(-2px); }
  40% { opacity: 0; transform: scale(0.3) translateY(-4px); }
}

/* Kleine Flash Animation beim Aktivieren */
.unicorn-flash {
  animation: unicornFlash 0.6s ease-out;
}
@keyframes unicornFlash {
  0% { box-shadow: 0 0 0 0 rgba(255,79,191,0.0); }
  40% { box-shadow: 0 0 25px 6px rgba(255,79,191,0.6); }
  100% { box-shadow: 0 0 0 0 rgba(255,79,191,0); }
}

/* ===== FLYING UNICORNS (nur sichtbar im Unicorn Mode) ===== */
body[data-theme="unicorn"] .unicorn-sky { display: block; }
.unicorn-sky {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 3000; /* über Content, unter Modals falls notwendig */
  display: none; /* nur im Modus anzeigen */
}

.flying-unicorn {
  position: absolute;
  left: -15%;
  top: 50%;
  font-size: 3.2rem;
  line-height: 1;
  filter: drop-shadow(0 6px 8px rgba(255,79,191,0.45));
  animation: flyUnicorn 10s linear forwards;
  opacity: 0.96;
  transform-origin: center;
  will-change: transform;
}

.flying-unicorn.small { font-size: 2.2rem; animation-duration: 8s; }
.flying-unicorn.big { font-size: 4.2rem; animation-duration: 12s; }
.flying-unicorn.reverse { left: auto; right: -15%; animation-name: flyUnicornReverse; transform: scaleX(-1); }

@keyframes flyUnicorn {
  0% { transform: translateX(0) translateY(0) rotate(-6deg) scale(1); opacity: 0; }
  6% { opacity: 1; }
  40% { transform: translateX(60vw) translateY(-6vh) rotate(5deg) scale(1.03); }
  70% { transform: translateX(110vw) translateY(4vh) rotate(-3deg) scale(1); }
  100% { transform: translateX(130vw) translateY(2vh) rotate(-10deg) scale(.95); opacity: 0; }
}

@keyframes flyUnicornReverse {
  0% { transform: translateX(0) translateY(0) rotate(6deg) scale(1); opacity: 0; }
  6% { opacity: 1; }
  40% { transform: translateX(-60vw) translateY(5vh) rotate(-4deg) scale(1.04); }
  70% { transform: translateX(-110vw) translateY(-4vh) rotate(3deg) scale(1); }
  100% { transform: translateX(-130vw) translateY(-2vh) rotate(8deg) scale(.95); opacity: 0; }
}

/* dezenter Schweif / Glow */
.flying-unicorn::after {
  content: '';
  position: absolute;
  left: -40%;
  top: 40%;
  width: 160px;
  height: 90px;
  background: radial-gradient(circle at 70% 50%, rgba(255,255,255,0.9), rgba(255,79,191,0));
  filter: blur(22px);
  opacity: 0.35;
  transform: translate(-50%, -50%) rotate(18deg);
  pointer-events: none;
}

/* ===== Click Sparkle Effekt im Unicorn Mode ===== */
body[data-theme="unicorn"] .unicorn-click-sparkle { display: block; }
.unicorn-click-sparkle {
  position: fixed;
  left: 0; top: 0;
  width: 0; height: 0; /* Container nur als Ursprung */
  pointer-events: none;
  z-index: 4000;
}

.unicorn-click-sparkle .spark {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, rgba(255,79,191,0.25));
  box-shadow: 0 0 6px 2px rgba(255,79,191,0.5), 0 0 14px 4px rgba(255,160,220,0.4);
  opacity: 0;
  animation: unicornSpark 0.9s ease-out forwards;
  will-change: transform, opacity;
}

.unicorn-click-sparkle .spark.alt {
  background: radial-gradient(circle at 30% 30%, #fff, rgba(255,200,240,0.3));
  box-shadow: 0 0 5px 2px rgba(255,200,240,0.5), 0 0 10px 3px rgba(255,120,210,0.35);
}

@keyframes unicornSpark {
  0% { transform: translate(0,0) scale(.2); opacity: 0; }
  15% { opacity: 1; }
  70% { opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) scale(1); opacity: 0; }
}

* {
  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);
}

/* Dark mode for event cards */
[data-theme="dark"] .event-card {
  background: var(--card-bg);
  box-shadow: 0 3px 12px rgba(0,0,0,0.3);
}

.event-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

/* Dark mode for event card images */
[data-theme="dark"] .event-card img {
  filter: brightness(1.1);
}

.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);
}

/* Dark mode for event text content */
[data-theme="dark"] .event-short-info {
  color: var(--text-color);
}

[data-theme="dark"] .event-card-link {
  color: var(--text-color);
} 

.event-details {
  display: none;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 0 0 12px 12px;
}

/* Dark mode for event details */
[data-theme="dark"] .event-details {
  background: var(--card-bg);
  color: var(--card-text);
}

/* 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;
}

/* Make event items clickable as links */
.event-clickable {
  text-decoration: none;
  color: inherit;
  display: block;
}

.event-clickable:hover {
  text-decoration: none;
  color: inherit;
}

/* Dark mode for event items */
[data-theme="dark"] .event-item {
  background: var(--card-bg);
  box-shadow: 0 3px 12px rgba(0,0,0,0.3);
}

[data-theme="dark"] .event-item h2 {
  color: var(--main-color);
}

[data-theme="dark"] .event-info {
  color: var(--text-color);
}

.event-item .event-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Dark mode for event item images */
[data-theme="dark"] .event-item .event-image {
  filter: brightness(1.1);
}

.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 description truncation with fade-out */
.event-description-truncated {
  position: relative;
  overflow: hidden;
}

.event-description-truncated::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1.5em;
  background: linear-gradient(to right, transparent, var(--card-bg, #F4F7F0) 70%);
  pointer-events: none;
}

[data-theme="dark"] .event-description-truncated::after {
  background: linear-gradient(to right, transparent, var(--card-bg, #2A2A2A) 70%);
}

/* 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 {
  background: #f8f9fa;
}

/* Dark mode for past events */
[data-theme="dark"] .past-event {
  background: var(--card-bg);
}

/* ========== 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 0.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;
}

/* Dark mode for member cards */
[data-theme="dark"] .member-card {
background: var(--card-bg);
box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.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;
}

/* Dark mode for member card titles */
[data-theme="dark"] .member-card h3 {
color: var(--text-color);
}

.member-card .position {
font-style: italic;
color: #777;
margin-bottom: 0.8rem;
}

/* Dark mode for member card positions */
[data-theme="dark"] .member-card .position {
color: #aaa;
}

.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;
}

/* Dark mode for ticket options */
[data-theme="dark"] .ticket-option {
background: var(--card-bg);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.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);
}

/* Dark mode for ticket card header */
[data-theme="dark"] .ticket-card-header h3 {
color: var(--text-color);
}

.ticket-icon {
font-size: 2rem;
color: var(--secondary-color);
}

.ticket-description {
font-size: 1.1rem;
color: #555;
margin-bottom: 2rem;
}

/* Dark mode for ticket description */
[data-theme="dark"] .ticket-description {
color: var(--card-text);
}

.ticket-hinweis {
font-style: italic;
color: #777;
margin-top: 1rem;
}

/* Dark mode for ticket hints */
[data-theme="dark"] .ticket-hinweis {
color: #aaa;
}

.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);
}

/* Dark mode for outlet items */
[data-theme="dark"] .outlet-item {
background: var(--card-bg);
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.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;
}

/* Dark mode for outlet text */
[data-theme="dark"] .outlet-address {
color: var(--card-text);
}

.outlet-hours {
font-size: 0.9rem;
color: #777;
}

/* Dark mode for outlet hours */
[data-theme="dark"] .outlet-hours {
color: #aaa;
}

@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.3s ease;
}

.social-links a:hover {
color: var(--secondary-color); /* Farbe beim Hover */
transform: scale(1.05); /* Sanfte 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;
}

/* Dark mode for transparency items */
[data-theme="dark"] .transparency-item {
background: var(--card-bg);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .transparency-item:hover {
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.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;
}

/* Dark mode for transparency item text */
[data-theme="dark"] .transparency-item p {
color: var(--card-text);
}

.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 2rem; /* Weniger seitliches Padding für bessere Zentrierung */
  background: #f9fafb;
}

/* Dark mode for archive section */
[data-theme="dark"] .archive-section {
  background: var(--bg-color);
}

.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;
}

/* Dark mode for archive cards */
[data-theme="dark"] .archive-card {
  background: var(--card-bg);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.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;
}

/* Dark mode for archive content */
[data-theme="dark"] .archive-content h3 {
  color: var(--text-color);
}

[data-theme="dark"] .archive-date {
  color: #aaa;
}

[data-theme="dark"] .archive-content p {
  color: var(--card-text);
}

.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: 1200px;
  margin: 0 auto 3rem auto; /* Zentriert mit Abstand nach unten */
  padding: 0; /* Kein padding, damit die Zentrierung perfekt ist */
  justify-items: center; /* Zentriert die Grid-Items horizontal */
}

.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);
}

/* Contact Page Styles */
.contact-link {
color: var(--main-color);
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
}

.contact-link:hover {
color: var(--dark-color);
text-decoration: underline;
}

/* Dark mode for contact links */
[data-theme="dark"] .contact-link {
color: var(--main-color);
}

[data-theme="dark"] .contact-link:hover {
color: var(--secondary-color);
}

.principle-item .social-links {
display: flex;
flex-direction: column;
gap: 0.5rem;
margin-top: 1rem;
}

.principle-item .social-links a {
color: var(--main-color);
text-decoration: none;
transition: color 0.3s ease, transform 0.3s ease;
font-size: 1.5rem;
display: inline-block;
}

.principle-item .social-links a:hover {
color: var(--dark-color);
transform: scale(1.05);
}

/* Dark mode for principle social links */
[data-theme="dark"] .principle-item .social-links a {
color: var(--main-color);
}

[data-theme="dark"] .principle-item .social-links a:hover {
color: var(--secondary-color);
}

/* Contact page centered layout */
.contact-centered {
text-align: center;
max-width: 600px;
margin: 0 auto;
}

.contact-centered .principle-item {
margin-bottom: 2rem;
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;
}

.contact-centered .principle-item:hover {
transform: translateY(-5px);
}

/* Dark mode for contact principle items */
[data-theme="dark"] .contact-centered .principle-item {
background: var(--card-bg);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.contact-centered h2 {
text-align: center;
}

.contact-centered .lead-text {
text-align: center;
margin-bottom: 2rem;
}

/* Tickets section centered layout */
.tickets-centered {
display: flex;
justify-content: center;
gap: 3rem;
flex-wrap: wrap;
}

.ticket-item-centered {
background: var(--card-bg);
padding: 2rem;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
text-align: center;
flex: 1;
min-width: 280px;
max-width: 400px;
color: var(--card-text);
}

.ticket-item-centered h3 {
font-family: var(--header-font);
color: var(--main-color);
margin-bottom: 1rem;
font-size: 1.3rem;
}

.ticket-item-centered h3 i {
margin-right: 0.5rem;
}

/* Dark mode for ticket items */
[data-theme="dark"] .ticket-item-centered {
background: var(--card-bg);
color: var(--card-text);
box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Responsive design for contact page */
@media (max-width: 768px) {
.tickets-centered {
  flex-direction: column;
  align-items: center;
}

.ticket-item-centered {
  max-width: 100%;
}

.contact-centered {
  max-width: 100%;
  padding: 0 1rem;
  margin: 0;
}

.contact-centered .principle-item {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
}

.principle-item .social-links {
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
}

.principle-item .social-links a {
  font-size: 2rem;
}
}

/* Responsive design for about page */
@media (max-width: 768px) {
.about-main {
  max-width: 100%;
  padding: 6rem 1rem 2rem 1rem;
  margin: 0;
}
.content-section {
  padding: 4rem 1.5rem;
}
}

@media (max-width: 480px) {
.about-main {
  padding: 5rem 0.75rem 2rem 0.75rem;
}
.content-section {
  padding: 2rem 0.75rem;
}
.content-section h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.content-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
}

/* Neue Media Queries für kleine Bildschirme */
@media (max-width: 768px) {
.ticket-item-centered,
.contact-centered .principle-item {
width: 100%;
min-width: 0;
max-width: 100%;
box-sizing: border-box;
}
}

@media (max-width: 480px) {
.ticket-item-centered,
.contact-centered .principle-item {
width: 100%;
min-width: 0;
max-width: 100%;
box-sizing: border-box;
}
}

@media (max-width: 768px) {
  .tickets-main {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 6rem 1rem 2rem 1rem;
    box-sizing: border-box;
  }
  .ticket-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
    padding: 0;
  }
  .ticket-option {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0 0 2rem 0;
    box-sizing: border-box;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .tickets-main {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 5rem 0.75rem 2rem 0.75rem;
    box-sizing: border-box;
  }
  .ticket-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
    padding: 0;
  }
  .ticket-option {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0 0 1.5rem 0;
    box-sizing: border-box;
    padding: 1.25rem;
  }
}

@media (max-width: 768px) {
  .member-main {
    max-width: 100%;
    padding: 6rem 1rem 2rem 1rem;
    margin: 0;
    box-sizing: border-box;
  }
  .member-content {
    max-width: 100%;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .member-main {
    padding: 5rem 0.75rem 2rem 0.75rem;
  }
  .member-content {
    padding: 1.25rem;
  }
}

/* ========== JAHRESBERICHTE CARDS ========== */
.reports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.report-item {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.report-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--main-color), var(--secondary-color));
}

.report-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.report-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, var(--main-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(102, 124, 68, 0.3);
}

.report-icon i {
  font-size: 1.8rem;
  color: #fff;
}

.report-item h3 {
  font-family: var(--header-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 0.5rem;
}

.report-item p {
  color: var(--text-color);
  opacity: 0.8;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.report-download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--main-color);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(102, 124, 68, 0.25);
}

.report-download:hover {
  background: var(--dark-color);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(102, 124, 68, 0.35);
}

.report-download i {
  font-size: 0.9rem;
}

/* Responsive für Reports */
@media (max-width: 768px) {
  .reports-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
  }

  .report-item {
    padding: 1.5rem 1rem;
  }

  .report-icon {
    width: 60px;
    height: 60px;
  }

  .report-icon i {
    font-size: 1.5rem;
  }

  .report-item h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .reports-grid {
    grid-template-columns: 1fr;
  }
}