@charset "UTF-8";
/*-------------------------------------
  Variables & Theme Setup
-------------------------------------*/
:root {
  --base-font-size: 100%;
  --font-base: Cabin, sans-serif;
  --font-accessible: OpenDyslexic, sans-serif;
  --color-bg: #fafafa;
  --color-text: #333333;
  --color-nav-bg: #ffffff;
  --color-nav-text: #2c0051;
  --color-accent: #ff37fc;
  --color-accent-2: #c7ff9e;
  --color-logo-purple: #2c0051;
  --color-logo-pink: #ff37fc;
  --color-logo-mint: #c7ff9e;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-bg-accessability-panel: #ff37fc;
}

.dark-mode {
  --base-font-size: 100%;
  --font-base: Cabin, sans-serif;
  --color-bg: #2c0051;
  --color-text: #f9f9f9;
  --color-nav-bg: #1a002f;
  --color-nav-text: #f9f9f9;
  --color-accent: #ff37fc;
  --color-accent-2: #c7ff9e;
  --color-logo-purple: #fff;
  --color-logo-pink: #ff37fc;
  --color-logo-mint: #c7ff9e;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-bg-accessability-panel: #ff37fc;
}

.high-contrast:not(.dark-mode) {
  --color-bg: #fafafa;
  --color-text: #333333;
  --color-nav-bg: #ffffff;
  --color-nav-text: #2c0051;
  --color-accent: #ff37fc;
  --color-accent-2: #c7ff9e;
  --color-logo-purple: #2c0051;
  --color-logo-pink: #ff37fc;
  --color-logo-mint: #c7ff9e;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-bg-accessability-panel: #ff37fc;
}

.high-contrast.dark-mode {
  --color-bg: #2c0051;
  --color-text: #f9f9f9;
  --color-nav-bg: #1a002f;
  --color-nav-text: #f9f9f9;
  --color-accent: #ff37fc;
  --color-accent-2: #c7ff9e;
  --color-logo-purple: #fff;
  --color-logo-pink: #ff37fc;
  --color-logo-mint: #c7ff9e;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-bg-accessability-panel: #ff37fc;
}

.dyslexia-mode {
  --font-base: var(--font-accessible);
}

/*-------------------------------------
  Font Faces
-------------------------------------*/
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cabin";
  src: url("../fonts/Cabin-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cabin";
  src: url("../fonts/Cabin-Italic-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Merriweather";
  src: url("../fonts/Merriweather-VariableFont_opsz,wdth,wght.ttf") format("truetype");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
  font-optical-sizing: auto;
}
@font-face {
  font-family: "Merriweather";
  src: url("../fonts/Merriweather-Italic-VariableFont_opsz,wdth,wght.ttf") format("truetype");
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
  font-optical-sizing: auto;
}
@font-face {
  font-family: "OpenDyslexic";
  src: url("../fonts/OpenDyslexic-Regular.woff2") format("woff2"), url("../fonts/OpenDyslexic-Regular.woff") format("woff"), url("../fonts/OpenDyslexic3-Regular.ttf") format("truetype"), url("../fonts/OpenDyslexic-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 1.25em;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
}

/*-------------------------------------
  Base & Reset
-------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--base-font-size, 100%);
}

body {
  font-family: var(--font-base);
  font-weight: 400;
  line-height: 1.5;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg);
  color: var(--color-text);
}

main {
  padding: 2rem 6rem;
}

main h2 {
  margin: 2rem 0 0 0;
}

/*-------------------------------------
  Typography
-------------------------------------*/
h1 {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
}

h2 {
  font-family: "Merriweather", serif;
  font-weight: 400;
}

body,
h2,
button,
p,
ul,
ol,
li,
dl,
dt,
dd,
blockquote,
pre,
code,
kbd,
samp,
figure,
figcaption,
address,
small,
sub,
sup,
mark,
q,
cite,
abbr,
time,
data {
  font-family: var(--font-base);
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
}

em,
i {
  font-family: var(--font-base);
  font-style: italic;
}

/*-------------------------------------
  Hero Section
-------------------------------------*/
.hero {
  position: relative;
  width: 100%;
  height: 85vh;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 0, 81, 0.5);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: var(--color-logo-purple);
  color: var(--color-white);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.hero-inner h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  line-height: 1.2;
}

@media (hover: hover) and (pointer: fine) {
  .nav:hover .hero-inner {
    background: rgba(0, 149, 32, 0.843);
    backdrop-filter: blur(98px);
    -webkit-backdrop-filter: blur(98px);
  }
  .hero-inner:hover {
    backdrop-filter: blur(98px);
    -webkit-backdrop-filter: blur(98px);
  }
}
.subtitle {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.6;
}
.subtitle li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}
.subtitle li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

/* Mobile responsive for hero section */
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 60vh;
  }
  .hero-inner {
    height: 80vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1.5rem;
  }
  .subtitle {
    font-size: 1rem;
    max-width: 90%;
  }
  .subtitle li {
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    text-align: left;
  }
}
/*-------------------------------------
  Landing Page & Orbs
-------------------------------------*/
.landing-page {
  width: 100%;
}

.LandingPage {
  position: relative;
  width: 100vw;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 100vh;
  overflow: hidden;
  background: var(--color-bg);
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  animation: pulse 12s ease-in-out infinite alternate;
  pointer-events: none;
}

.orb1 {
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle at center, #ff88fc, #2c0051);
  top: -20vw;
  left: -30vw;
}

.orb2 {
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle at center, #c7ff9e, #2c0051);
  bottom: -25vw;
  right: -20vw;
}

.orb3 {
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle at center, #84439c, #2c0051);
  top: 10vh;
  right: -15vw;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.1);
    opacity: 0.6;
  }
}
/*-------------------------------------
  Navigation
-------------------------------------*/
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--color-nav-bg);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: relative;
  flex-wrap: wrap;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  cursor: pointer;
}

.logo {
  height: clamp(30px, 8vh, 60px);
}

.logo.dark-mode {
  display: none;
}

.logo.light-mode {
  display: inline;
}

/* When dark-mode class is active on root, swap logos */
.dark-mode .logo.dark-mode {
  display: inline;
}

.dark-mode .logo.light-mode {
  display: none;
}

.logo-title {
  font-size: 1.5rem;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: var(--color-nav-text);
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  position: relative;
  width: 30px;
  height: 24px;
  z-index: 1100;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  background-color: var(--color-nav-text);
  height: 3px;
  border-radius: 3px;
  position: absolute;
  width: 100%;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.hamburger {
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0px;
}

.hamburger::before {
  content: "";
  top: 0;
}

.hamburger.open {
  background-color: transparent;
}

.hamburger.open::before {
  transform: rotate(45deg);
  top: 50%;
  margin-top: 0px;
}

.hamburger.open::after {
  transform: rotate(-45deg);
  bottom: 50%;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

.nav-item a {
  text-decoration: none;
  color: var(--color-nav-text);
  font-weight: 500;
  padding: 0.3rem 0.5rem;
  display: block;
  transition: color 0.3s, transform 0.3s;
}

.nav-item:hover > a,
.nav-item.active > a {
  color: var(--color-accent);
  transform: scale(1.1);
}

.has-dropdown > a::after,
.has-subdropdown > a::after {
  content: " ⌄";
  font-size: 0.6rem;
  margin-left: 0.3rem;
}

.dropdown,
.subdropdown {
  display: none;
  position: absolute;
  background: var(--color-nav-bg);
  list-style: none;
  padding: 0.5rem 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  z-index: 1000;
  border-radius: 4px;
}

.dropdown li a,
.subdropdown li a {
  white-space: nowrap;
  color: var(--color-nav-text);
  transition: color 0.3s;
}

.dropdown li a:hover,
.subdropdown li a:hover {
  color: var(--color-accent);
}

.has-dropdown:hover > .dropdown,
.has-subdropdown:hover > .subdropdown {
  display: block;
}

.subdropdown {
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--color-nav-bg);
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    z-index: 999;
  }
  .nav-links.active {
    display: flex;
    max-height: 90vh;
  }
  .nav-item a {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
  .has-dropdown > .dropdown,
  .has-subdropdown > .subdropdown {
    position: static;
    box-shadow: none;
    padding-left: 1rem;
    border-radius: 0;
  }
  .dropdown li,
  .subdropdown li {
    padding-left: 2rem;
  }
  .has-dropdown > a::after,
  .has-subdropdown > a::after {
    content: "";
  }
}
/* - - - - - - Acessability - - - - - - - - */
.accessibility-widget {
  position: fixed;
  top: 20vh;
  left: 1rem;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.accessibility-toggle {
  background: #c7ff9e;
  color: #fff;
  border: none;
  border-bottom-right-radius: 50%;
  padding: 0.75rem;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.accessibility-panel {
  margin-top: 0.5rem;
  background: var(--color-bg-accessability-panel, #fff);
  color: var(--color-text, #333);
  border-top-right-radius: 12px;
  padding: 1rem;
  min-width: 200px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  gap: 0.75rem;
}
.accessibility-panel[aria-hidden=false] {
  display: flex;
}
.accessibility-panel button {
  background: transparent;
  border: none;
  cursor: pointer;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: var(--base-font-size, 100%);
  transition: all 0.3s ease;
  padding: 0.25rem;
}
.accessibility-panel button .material-symbols-outlined {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}
.accessibility-panel button small,
.accessibility-panel button .theme-label,
.accessibility-panel button .contrast-label {
  font-size: 0.75rem;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.accessibility-panel button:hover {
  color: var(--color-accent-2, #333) !important;
}
.accessibility-panel .text-size-controls {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

/* - - - - 
Breadcrumbs
- - - - - - */
#breadcrumb-content {
  margin-left: 50px;
}

.breadcrumbs {
  font-size: 0.9rem;
  margin-top: 1rem;
  color: var(--text-secondary, #666);
}

.breadcrumbs a {
  text-decoration: underline;
  color: var(--color-accent, #3366cc);
}

.breadcrumbs a:hover {
  color: var(--color-nav-text, #2c0051);
}

.breadcrumbs span[aria-current=page] {
  font-weight: bold;
  color: var(--color-nav-text, #000);
}

.breadcrumb-ellipsis {
  color: #aaa;
}

@media (max-width: 768px) {
  .accessibility-widget {
    top: auto;
    bottom: 1rem;
    left: 1rem;
  }
}
form {
  max-width: 600px;
  margin: 3rem auto;
  padding: 2rem;
  border-radius: 1.5rem;
  background: var(--color-bg, #fff);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
form label {
  font-weight: 600;
  color: var(--color-text, #222);
  margin-bottom: 0.25rem;
  display: block;
}
form input,
form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid #ccc;
  background: #f9f9f9;
  font-size: 1rem;
  transition: all 0.2s ease;
}
form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--color-accent, #a45ee5);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(164, 94, 229, 0.2);
}
form textarea {
  resize: vertical;
  min-height: 120px;
}
form button {
  align-self: flex-end;
  padding: 0.75rem 1.5rem;
  background: var(--color-accent, #a45ee5);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
form button:hover {
  background: rgb(139.1818181818, 50.0909090909, 221.9090909091);
}
form button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(164, 94, 229, 0.4);
}
form [hidden] {
  display: none !important;
}

/* - - - - - - - - - - - - 
  bildungsarbeit Page
- - - - - - - - - - - - - */
/* Page Description */
/* bildungsarbeit Counter */
.bildungsarbeit-counter {
  margin-bottom: 1.5rem;
  text-align: center;
}
.bildungsarbeit-counter p {
  color: var(--color-nav-text, #2c0051);
  font-size: 1rem;
  margin: 0;
}
.bildungsarbeit-counter p strong {
  font-weight: 600;
}

/* bildungsarbeit Board Container */
.bildungsarbeit-board {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* bildungsarbeit Card */
.bildungsarbeit-card {
  background: var(--color-white, #ffffff);
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 1rem;
}

/* bildungsarbeit Header */
.bildungsarbeit-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

@media screen and (max-width: 568px) {
  .bildungsarbeit-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.bildungsarbeit-header:hover {
  background: #f9f9f9;
}

/* bildungsarbeit Title Section */
.bildungsarbeit-title-section {
  flex: 1;
}

.bildungsarbeit-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-nav-text, #2c0051);
  margin: 0 0 0.25rem 0;
}

.bildungsarbeit-subtitle {
  font-size: 1rem;
  color: var(--color-text, #333333);
  margin: 0;
}

.bildungsarbeit-cooperation {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--color-accent, #ff37fc);
  margin: 0;
}

/* bildungsarbeit Status Section */
.bildungsarbeit-status-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Status Badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}

.status-available {
  background: #e7f5e7;
  color: #2d5a2d;
  border: 1px solid #a7d4a7;
}

.status-full {
  background: #ffe7f5;
  color: #8b2252;
  border: 1px solid #ff88bc;
}

.status-waitlist {
  background: #f0f0f0;
  color: #555;
  border: 1px solid #ccc;
}

.status-kostenlos {
  background: rgba(199, 255, 158, 0.2);
  color: var(--color-nav-text, #2c0051);
  border: 1px solid var(--color-accent-2, #c7ff9e);
}

/* bildungsarbeit Toggle Button */
.bildungsarbeit-toggle {
  background: var(--color-accent, #ff37fc);
  color: white;
  border: none;
  border-radius: 4px;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.bildungsarbeit-toggle:hover {
  background: var(--color-nav-text, #2c0051);
}

/* bildungsarbeit Content */
.bildungsarbeit-content {
  padding: 1rem;
}

/* bildungsarbeit Intro/Description Lists */
.bildungsarbeit-content ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.bildungsarbeit-content ul li {
  position: relative;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.bildungsarbeit-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-accent, #ff37fc);
  font-weight: bold;
  font-size: 1.1rem;
}

/* bildungsarbeit Topics/Parts */
.bildungsarbeit-part {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(199, 255, 158, 0.05);
  border-radius: 6px;
  border-left: 3px solid var(--color-accent-2, #c7ff9e);
}

.bildungsarbeit-part h4 {
  color: var(--color-nav-text, #2c0051);
  margin: 0 0 0.75rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.bildungsarbeit-part ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bildungsarbeit-part ul li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.2rem;
  margin-bottom: 0.3rem;
  line-height: 1.3;
  font-size: 0.95rem;
}

.bildungsarbeit-part ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-accent, #ff37fc);
  font-weight: bold;
  font-size: 1.2rem;
}

/* bildungsarbeit Details */
.bildungsarbeit-details {
  margin-bottom: 1rem;
}

.bildungsarbeit-info-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .bildungsarbeit-info-grid {
    flex-direction: row;
    align-items: stretch;
  }
  .bildungsarbeit-info-item:first-child {
    flex: 1;
  }
  .bildungsarbeit-info-secondary {
    display: flex;
    flex-direction: column;
    flex: 0 0 200px;
    gap: 1rem;
  }
  .bildungsarbeit-info-secondary .bildungsarbeit-info-item {
    flex: 1;
    margin: 0;
  }
}
.bildungsarbeit-info-item {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 4px;
  border: 1px solid #eee;
}

.bildungsarbeit-info-item h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: var(--color-nav-text, #2c0051);
}

/* bildungsarbeit Registration */
.bildungsarbeit-registration {
  text-align: center;
  padding: 1rem;
  background: #f0f8ff;
  border-radius: 4px;
  border: 1px solid var(--color-accent, #ff37fc);
  margin-top: 1rem;
}

.bildungsarbeit-register-button {
  display: inline-block;
  background: var(--color-accent, #ff37fc);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 0.5rem;
}

.bildungsarbeit-register-button:hover {
  background: var(--color-nav-text, #2c0051);
  color: white;
  text-decoration: none;
}

/* No bildungsarbeit Section */
.no-bildungsarbeit {
  text-align: center;
  padding: 2rem;
}

@media (max-width: 768px) {
  .no-bildungsarbeit {
    padding: 0rem;
  }
  form {
    padding: 0;
  }
}
/* Newsletter Form */
.newsletter-form .form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.5rem;
  margin: 0;
}

.newsletter-form input[type=email] {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100%;
  font-size: 1rem;
  min-width: 0;
}

.newsletter-submit {
  background: var(--color-accent, #ff37fc);
  color: white;
  border: none;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  white-space: nowrap;
}

.newsletter-submit:hover {
  background: var(--color-nav-text, #2c0051);
}

/* Dark Mode Support */
.dark-mode .bildungsarbeit-card {
  background: #333;
  border-color: #555;
  color: white;
}

.dark-mode .bildungsarbeit-header:hover {
  background: #444;
}

.dark-mode .bildungsarbeit-info-item {
  background: #444;
  border-color: #555;
}

/* Dark Mode Support */
.dark-mode .bildungsarbeit-card {
  background: #333;
  border-color: #555;
  color: white;
}

.dark-mode .bildungsarbeit-header:hover {
  background: #444;
}

.dark-mode .bildungsarbeit-info-item {
  background: #444;
  border-color: #555;
}

/* - - - - - - - - bildungsarbeit CTA
- - */
.bildungsarbeit-highlight {
  margin: 2em 0;
  display: flex;
  justify-content: center;
}

.bildungsarbeit-alert {
  background: linear-gradient(90deg, #c7ff9e 0%, #ff37fc 72%, #fff 100%);
  color: var(--color-text, #333);
  border-radius: 0.5em;
  padding: 1em 1.2em;
  max-width: 90vw;
  width: 90vw;
  text-align: center;
  border: 1px solid var(--color-accent, #ff37fc);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin: 0 auto;
}

.bildungsarbeit-alert h2 {
  font-size: 1.2em;
  margin-bottom: 0.4em;
  font-weight: bold;
  color: var(--color-white, #ff37fc);
}

.bildungsarbeit-alert p {
  font-size: 1em;
  margin-bottom: 1em;
}

.bildungsarbeit-cta-button {
  background: var(--color-nav-bg, #ff37fc);
  color: var(--color-text, #fff);
  padding: 0.5em 1.2em;
  border-radius: 1.5em;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  border: none;
  box-shadow: none;
  transition: background 0.2s;
  display: inline-block;
}

.bildungsarbeit-cta-button:hover,
.bildungsarbeit-cta-button:focus {
  background: var(--color-accent-2, #c7ff9e);
  color: var(--color-text, #333);
}

/* - - - - - - - - - - - - - - 
  Support Page
- - - - - - - - - - - - - - */
.support-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.support-text {
  flex: 2 1 300px;
  min-width: 220px;
}

.support-boxes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 180px;
  min-width: 180px;
}

.support-box {
  display: flex;
  align-items: center;
  gap: 0.7em;
  background: #f5f5f5;
  border-radius: 0.7em;
  padding: 1em 1.2em;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  transition: background 0.2s, box-shadow 0.2s;
}

.support-box:hover {
  background: #e0e0e0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

@media (max-width: 700px) {
  .support-contact {
    flex-direction: column;
    gap: 1.5rem;
  }
  .support-boxes {
    flex-direction: column;
    min-width: 0;
  }
  main {
    padding: 2rem 2rem;
  }
}
/* - - - - - - - - - -
Grid Layout for Helplines
- - - - - - - - - - */
.helpline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.helpline-card {
  background: var(--color-nav-bg);
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}

.helpline-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.additional-resources {
  background: linear-gradient(135deg, rgba(255, 55, 252, 0.1) 0%, rgba(199, 255, 158, 0.1) 100%);
  padding: 10px;
  border: #000 2px solid;
}

.resource-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .resource-links {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.resource-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  background: var(--color-white);
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  border: 2px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  flex: 1;
}
.resource-link:hover, .resource-link:focus {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border-color: var(--color-accent);
  text-decoration: none;
  color: inherit;
}
.resource-link:active {
  transform: translateY(0);
}
@media (min-width: 768px) {
  .resource-link {
    padding: 1.5rem;
  }
}

.resource-content {
  flex: 1;
  margin-right: 1rem;
}
.resource-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-nav-text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .resource-content h3 {
    font-size: 1.2rem;
  }
}
.resource-content p {
  font-size: 0.9rem;
  color: var(--color-text);
  margin: 0;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .resource-content p {
    font-size: 1rem;
  }
}

.resource-link .material-symbols-outlined {
  font-size: 1.5rem;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .resource-link .material-symbols-outlined {
    font-size: 1.75rem;
  }
}

.resource-link:hover .material-symbols-outlined {
  transform: scale(1.1);
}

/* Dark mode support */
.dark-mode .additional-resources {
  background: linear-gradient(135deg, rgba(255, 55, 252, 0.15) 0%, rgba(199, 255, 158, 0.15) 100%);
  border-color: var(--color-accent);
}
.dark-mode .resource-link {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text);
}
.dark-mode .resource-content h3 {
  color: var(--color-accent-2);
}
.dark-mode .resource-link .material-symbols-outlined {
  color: var(--color-accent);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .resource-link {
    transition: none;
  }
  .resource-link:hover {
    transform: none;
  }
  .resource-link .material-symbols-outlined {
    transition: none;
  }
  .resource-link:hover .material-symbols-outlined {
    transform: none;
  }
}
/* - - - - - - - - - 
  Infomaterial Grid
- - - - - - - - - */
.infomaterial-preview {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0 auto 1em auto;
  border-radius: 0.7em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 500px) {
  main {
    padding: 1rem 1rem;
  }
}
/* - - - - - - - - - - - - - - 
  Footer
- - - - - - - - - - - - - - */
.footer {
  background: var(--color-nav-bg);
  color: var(--color-nav-text);
  margin-top: 4rem;
  border-top: 1px solid rgba(199, 255, 158, 0.2);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 1rem;
}

.footer-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--color-accent, #ff37fc);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: "Merriweather", serif;
}
.footer-section h4 {
  color: var(--color-nav-text);
  font-size: 1rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem 0;
}
.footer-section p {
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--color-nav-text);
  opacity: 0.9;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: var(--color-nav-text);
  text-decoration: none;
  transition: color 0.3s ease;
  opacity: 0.8;
}
.footer-links a:hover, .footer-links a:focus {
  color: var(--color-accent, #ff37fc);
  opacity: 1;
}

.footer-logo {
  margin-top: 1rem;
}

.footer-logo-img {
  height: 40px;
  opacity: 0.8;
}
.footer-logo-img.dark-mode {
  display: none;
}
.footer-logo-img.light-mode {
  display: inline;
}

.dark-mode .footer-logo-img.dark-mode {
  display: inline;
}
.dark-mode .footer-logo-img.light-mode {
  display: none;
}

.footer-section .footer-logo {
  text-align: center;
  margin-bottom: 1rem;
}

.funding-logo {
  max-height: 50px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.funding-logo:hover {
  opacity: 1;
}

.funding-text {
  font-size: 0.85rem;
  color: var(--color-nav-text);
  opacity: 0.8;
  line-height: 1.4;
  text-align: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(199, 255, 158, 0.2);
}
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-legal a {
  color: var(--color-nav-text);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: color 0.3s ease;
}
.footer-legal a:hover, .footer-legal a:focus {
  color: var(--color-accent, #ff37fc);
  opacity: 1;
}
@media (max-width: 768px) {
  .footer-legal {
    justify-content: center;
  }
}

.footer-copyright p {
  font-size: 0.85rem;
  color: var(--color-nav-text);
  opacity: 0.7;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 55, 252, 0.1);
  border-radius: 50%;
  color: var(--color-accent, #ff37fc);
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-social a:hover, .footer-social a:focus {
  background: var(--color-accent, #ff37fc);
  color: var(--color-nav-bg);
  transform: translateY(-2px);
}
.footer-social a .material-symbols-outlined {
  font-size: 1.2rem;
}

.dark-mode .footer {
  border-top-color: rgba(199, 255, 158, 0.3);
}

@media (max-width: 768px) {
  .footer-content {
    padding: 2rem 1rem 1rem;
  }
  .footer-sections {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .funding-logos {
    flex-direction: column;
    gap: 1rem;
  }
  .footer-bottom {
    gap: 1.5rem;
  }
  .footer-legal {
    gap: 1rem;
  }
}
/* - - - - - - - - - - - - - - 
  Barrierefreiheit Page
- - - - - - - - - - - - - - */
.page-header {
  text-align: center;
  margin-bottom: 3rem;
}
.page-header h1 {
  font-size: 2.5rem;
  color: var(--color-nav-text);
  margin-bottom: 1rem;
  font-family: "Merriweather", serif;
}
.page-header .page-subtitle {
  font-size: 1.2rem;
  color: var(--color-nav-text);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.content-section {
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}
.content-section h2 {
  color: var(--color-accent, #ff37fc);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-family: "Merriweather", serif;
}
.content-section p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}
.content-section ul {
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.content-section li {
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.accessibility-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-card {
  background: var(--color-white, #ffffff);
  border: 1px solid rgba(199, 255, 158, 0.3);
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.feature-card .feature-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.feature-card .feature-header .material-symbols-outlined {
  color: var(--color-accent, #ff37fc);
  font-size: 1.5rem;
}
.feature-card .feature-header h3 {
  margin: 0;
  color: var(--color-nav-text);
  font-size: 1.2rem;
}
.feature-card p {
  margin: 0;
  color: var(--color-text);
  line-height: 1.5;
}

.accessibility-measures {
  list-style: none;
  padding: 0;
}
.accessibility-measures li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}
.accessibility-measures li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--color-accent-2, #c7ff9e);
  font-weight: bold;
}

.contact-accessibility {
  background: rgba(199, 255, 158, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}
.contact-accessibility .contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.contact-accessibility .contact-item:last-child {
  margin-bottom: 0;
}
.contact-accessibility .contact-item .material-symbols-outlined {
  color: var(--color-accent, #ff37fc);
  font-size: 1.2rem;
}
.contact-accessibility .contact-item div {
  flex: 1;
}
.contact-accessibility .contact-item strong {
  color: var(--color-nav-text);
  display: block;
  margin-bottom: 0.25rem;
}
.contact-accessibility .contact-item a {
  color: var(--color-accent, #ff37fc);
  text-decoration: none;
  font-weight: 500;
}
.contact-accessibility .contact-item a:hover, .contact-accessibility .contact-item a:focus {
  text-decoration: underline;
}

.external-links {
  list-style: none;
  padding: 0;
}
.external-links li {
  margin-bottom: 0.75rem;
}
.external-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent, #ff37fc);
  text-decoration: none;
  transition: color 0.3s ease;
}
.external-links a:hover, .external-links a:focus {
  color: var(--color-nav-text);
  text-decoration: underline;
}
.external-links a .material-symbols-outlined {
  font-size: 1rem;
}

.dark-mode .feature-card {
  background: var(--color-nav-bg);
  border-color: rgba(199, 255, 158, 0.2);
}

.dark-mode .contact-accessibility {
  background: rgba(199, 255, 158, 0.15);
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2rem;
  }
  .content-section {
    padding: 0 1rem;
  }
  .accessibility-features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .feature-card {
    padding: 1rem;
  }
  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
/*-------------------------------------
  Mitwirken Page Styles
-------------------------------------*/
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.benefit-card {
  background: var(--color-white);
  border: 1px solid rgba(44, 0, 81, 0.1);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.benefit-card .material-symbols-outlined {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
  display: block;
}
.benefit-card h3 {
  color: var(--color-logo-purple);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}
.benefit-card p {
  color: var(--color-text);
  line-height: 1.5;
  margin: 0;
}

.process-steps {
  margin: 2rem 0;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: 0.5rem;
  border-left: 4px solid var(--color-accent);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-number {
  background: var(--color-accent);
  color: var(--color-white);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-content h3 {
  color: var(--color-logo-purple);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.step-content p {
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
}

.expectations-list {
  background: var(--color-white);
  border: 1px solid rgba(44, 0, 81, 0.1);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.expectations-list li {
  margin-bottom: 1rem;
  line-height: 1.6;
}
.expectations-list li:last-child {
  margin-bottom: 0;
}
.expectations-list li strong {
  color: var(--color-logo-purple);
}

.support-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-white);
  border: 1px solid rgba(44, 0, 81, 0.1);
  border-radius: 0.5rem;
}
.feature .material-symbols-outlined {
  font-size: 1.8rem;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.feature h3 {
  color: var(--color-logo-purple);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.feature p {
  color: var(--color-text);
  line-height: 1.5;
  margin: 0;
}

.faq-section {
  margin: 2rem 0;
}

.faq-item {
  border: 1px solid rgba(44, 0, 81, 0.1);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-item summary {
  background: var(--color-white);
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-weight: 500;
  color: var(--color-logo-purple);
  border: none;
  outline: none;
  transition: background-color 0.2s ease;
}
.faq-item summary:hover {
  background: rgba(199, 255, 158, 0.1);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::before {
  content: "+";
  float: right;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-accent);
}
.faq-item[open] summary::before {
  content: "−";
}
.faq-item p {
  padding: 1rem 1.5rem;
  background: rgba(199, 255, 158, 0.05);
  margin: 0;
  line-height: 1.6;
  color: var(--color-text);
}

.dark-mode .benefit-card,
.dark-mode .step,
.dark-mode .expectations-list,
.dark-mode .feature,
.dark-mode .faq-item summary,
.dark-mode .faq-item p {
  background: var(--color-nav-bg);
  border-color: rgba(199, 255, 158, 0.2);
}
.dark-mode .faq-item p {
  background: rgba(199, 255, 158, 0.1);
}
.dark-mode .faq-item summary:hover {
  background: rgba(199, 255, 158, 0.15);
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .step {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .step-number {
    align-self: flex-start;
  }
  .support-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .feature {
    padding: 1rem;
  }
  .faq-item summary,
  .faq-item p {
    padding: 0.75rem 1rem;
  }
}
/*-------------------------------------
  Veranstaltungsbetreuung Page Styles
-------------------------------------*/
.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.event-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.event-type {
  background: var(--color-white);
  border: 1px solid rgba(44, 0, 81, 0.1);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
}
.event-type h3 {
  color: var(--color-logo-purple);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.event-type p {
  color: var(--color-text);
  margin: 0;
  font-size: 0.9rem;
}

.important-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 0.5rem;
}
.info-box .material-symbols-outlined {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.info-box h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.info-box p {
  margin: 0;
  line-height: 1.5;
}

.info-timing {
  background: rgba(255, 55, 252, 0.1);
  border: 1px solid rgba(255, 55, 252, 0.2);
}
.info-timing .material-symbols-outlined {
  color: var(--color-accent);
}
.info-timing h3 {
  color: var(--color-accent);
}

.info-process {
  background: rgba(199, 255, 158, 0.1);
  border: 1px solid rgba(199, 255, 158, 0.3);
}
.info-process .material-symbols-outlined {
  color: var(--color-accent-2);
}
.info-process h3 {
  color: var(--color-logo-purple);
}

.info-costs {
  background: rgba(44, 0, 81, 0.05);
  border: 1px solid rgba(44, 0, 81, 0.1);
}
.info-costs .material-symbols-outlined {
  color: var(--color-logo-purple);
}
.info-costs h3 {
  color: var(--color-logo-purple);
}

.veranstaltung-contact-form {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--color-white);
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-section {
  margin-bottom: 2.5rem;
}
.form-section h3 {
  color: var(--color-logo-purple);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 0.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-text);
}
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=tel],
.form-group input[type=number],
.form-group input[type=date],
.form-group input[type=time],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(44, 0, 81, 0.2);
  border-radius: 0.25rem;
  font-size: 1rem;
  font-family: var(--font-base);
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color 0.2s ease;
}
.form-group input[type=text]:focus,
.form-group input[type=email]:focus,
.form-group input[type=tel]:focus,
.form-group input[type=number]:focus,
.form-group input[type=date]:focus,
.form-group input[type=time]:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(255, 55, 252, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.radio-group .radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
}
.radio-group .radio-label input[type=radio] {
  margin: 0;
  width: auto;
}
.radio-group input[type=text] {
  margin-top: 0.5rem;
  margin-left: 1.5rem;
}

.checkbox-group .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  line-height: 1.5;
}
.checkbox-group .checkbox-label input[type=checkbox] {
  margin: 0;
  width: auto;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.checkbox-group .checkbox-label a {
  color: var(--color-accent);
  text-decoration: underline;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .form-actions {
    flex-direction: column;
  }
}

.submit-btn,
.save-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.25rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.submit-btn:focus,
.save-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 55, 252, 0.3);
}

.submit-btn {
  background: var(--color-accent);
  color: var(--color-white);
  flex: 1;
}
.submit-btn:hover {
  background: var(--color-logo-purple);
}

.save-btn {
  background: var(--color-accent-2);
  color: var(--color-logo-purple);
  border: 1px solid var(--color-accent-2);
}
.save-btn:hover {
  background: var(--color-logo-purple);
  color: var(--color-white);
}

.dark-mode .event-type,
.dark-mode .info-box,
.dark-mode .veranstaltung-contact-form {
  background: var(--color-nav-bg);
  border-color: rgba(199, 255, 158, 0.2);
}
.dark-mode .info-timing {
  background: rgba(255, 55, 252, 0.15);
}
.dark-mode .info-process {
  background: rgba(199, 255, 158, 0.15);
}
.dark-mode .info-costs {
  background: rgba(199, 255, 158, 0.1);
}
.dark-mode .form-group input,
.dark-mode .form-group select,
.dark-mode .form-group textarea {
  background: var(--color-nav-bg);
  border-color: rgba(199, 255, 158, 0.3);
  color: var(--color-text);
}

@media (max-width: 768px) {
  .important-info {
    grid-template-columns: 1fr;
  }
  .event-types {
    grid-template-columns: 1fr;
  }
  .service-features {
    grid-template-columns: 1fr;
  }
  .veranstaltung-contact-form {
    padding: 1rem;
    margin: 1rem;
  }
  .info-box {
    padding: 1rem;
  }
}
/*-------------------------------------
  Legal Pages Styles (Impressum & Datenschutz)
-------------------------------------*/
.contact-box {
  background: var(--color-white);
  border: 1px solid rgba(44, 0, 81, 0.1);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.contact-box.impressum-main {
  background: rgba(199, 255, 158, 0.05);
  border-color: rgba(199, 255, 158, 0.3);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.contact-item .material-symbols-outlined {
  color: var(--color-accent);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.contact-item a {
  color: var(--color-accent);
  text-decoration: underline;
}
.contact-item a:hover {
  color: var(--color-logo-purple);
}

.legal-info {
  background: var(--color-white);
  border: 1px solid rgba(44, 0, 81, 0.1);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.info-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(44, 0, 81, 0.1);
}
.info-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.info-row strong {
  flex: 0 0 200px;
  color: var(--color-logo-purple);
  margin-right: 1rem;
}
.info-row span {
  flex: 1;
  min-width: 200px;
}
@media (max-width: 768px) {
  .info-row {
    flex-direction: column;
  }
  .info-row strong {
    flex: none;
    margin-bottom: 0.5rem;
  }
  .info-row span {
    flex: none;
  }
}

.board-info {
  background: var(--color-white);
  border: 1px solid rgba(44, 0, 81, 0.1);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.board-info h3 {
  color: var(--color-logo-purple);
  margin-bottom: 1rem;
}

.board-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.board-member {
  padding: 1rem;
  background: rgba(199, 255, 158, 0.05);
  border: 1px solid rgba(199, 255, 158, 0.2);
  border-radius: 0.25rem;
}
.board-member strong {
  color: var(--color-logo-purple);
}

.attribution-info,
.funding-info {
  background: var(--color-white);
  border: 1px solid rgba(44, 0, 81, 0.1);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.attribution-info h3,
.funding-info h3 {
  color: var(--color-logo-purple);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}
.attribution-info h3:first-child,
.funding-info h3:first-child {
  margin-top: 0;
}
.attribution-info ul,
.funding-info ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}
.attribution-info ul li,
.funding-info ul li {
  margin-bottom: 0.5rem;
}
.attribution-info ul li a,
.funding-info ul li a {
  color: var(--color-accent);
  text-decoration: underline;
}
.attribution-info ul li a:hover,
.funding-info ul li a:hover {
  color: var(--color-logo-purple);
}

.funding-item {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(199, 255, 158, 0.05);
  border: 1px solid rgba(199, 255, 158, 0.2);
  border-radius: 0.25rem;
}
.funding-item:last-child {
  margin-bottom: 0;
}
.funding-item h3 {
  color: var(--color-logo-purple);
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.bank-info {
  margin: 1.5rem 0;
}
.bank-info .contact-box {
  background: rgba(255, 55, 252, 0.05);
  border-color: rgba(255, 55, 252, 0.2);
}

.dark-mode .contact-box,
.dark-mode .legal-info,
.dark-mode .board-info,
.dark-mode .attribution-info,
.dark-mode .funding-info {
  background: var(--color-nav-bg);
  border-color: rgba(199, 255, 158, 0.2);
}
.dark-mode .contact-box.impressum-main {
  background: rgba(199, 255, 158, 0.1);
}
.dark-mode .board-member,
.dark-mode .funding-item {
  background: rgba(199, 255, 158, 0.1);
  border-color: rgba(199, 255, 158, 0.3);
}
.dark-mode .bank-info .contact-box {
  background: rgba(255, 55, 252, 0.1);
  border-color: rgba(255, 55, 252, 0.3);
}

@media (max-width: 768px) {
  .contact-details {
    grid-template-columns: 1fr;
  }
  .board-members {
    grid-template-columns: 1fr;
  }
  .contact-box,
  .legal-info,
  .board-info,
  .attribution-info,
  .funding-info {
    padding: 1rem;
  }
}
/*-------------------------------------
  Floating Info Banner
-------------------------------------*/
.floating-info-banner {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 25vw;
  height: 35vh;
  background: var(--color-nav-bg);
  border: 2px solid var(--color-accent);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.floating-info-banner .close-banner {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}
.floating-info-banner .close-banner:hover {
  color: var(--color-accent);
}
.floating-info-banner .close-banner .material-symbols-outlined {
  font-size: 1.5rem;
}
.floating-info-banner .banner-image {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 0.5rem;
}
.floating-info-banner h3 {
  font-family: "Raleway", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-accent);
  margin: 0;
  text-align: center;
}
.floating-info-banner p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-text);
  margin: 0;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

@media (max-width: 1024px) {
  .floating-info-banner {
    width: 35vw;
    height: 30vh;
  }
}
@media (max-width: 768px) {
  .floating-info-banner {
    width: 80vw;
    height: auto;
    min-height: 200px;
    bottom: 0.5rem;
    right: 0.5rem;
    padding: 1rem;
  }
}/*# sourceMappingURL=styles.css.map */