/* ==========================================================================
   FREIWILLIGE FEUERWEHR AUGSBURG-KRIEGSHABER E.V.
   Authentic German Civic / DIN Standard Theme with Universal Drawer Nav
   ========================================================================== */

:root {
  /* DIN 1451 Standard Font Stack */
  --font-sans: 'DIN Next LT Pro', 'DIN Alternate', 'DIN 1451 Mittelschrift', 'DIN 1451', 'Bahnschrift', 'D-DIN', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', Consolas, 'Liberation Mono', Menlo, monospace;
  
  /* Authentic German Feuerwehr Colors */
  --color-feuerrot: #A72920;      /* RAL 3000 Feuerrot */
  --color-feuerrot-hover: #8C221A;
  --color-feuerrot-dark: #701A13;
  --color-feuerrot-light: #FBF1F0;
  
  --color-anthrazit: #1A1E24;     /* Deep technical anthracite */
  --color-anthrazit-light: #28303B;
  
  --color-signal-blue: #0F52BA;   /* Blaulicht blue */
  --color-safety-yellow: #F0C419; /* Warnweste */
  
  --color-bg: #F4F6F8;            /* Neutral architectural grey */
  --color-surface: #FFFFFF;
  --color-border: #D1D7E0;
  --color-border-dark: #374151;
  
  --color-text-main: #1A202C;
  --color-text-muted: #5A6A80;
  --color-text-light: #F8FAFC;
  
  --transition: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-drawer: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text-main);
  line-height: 1.55;
  overflow-x: hidden;
}

body.drawer-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* SVG Icon Helper */
.icon-svg {
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  stroke-width: 2;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.15em;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS (Smooth, serious, no jank)
   ========================================================================== */

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 1.05s cubic-bezier(0.16, 1, 0.3, 1), transform 1.05s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger Delays for Grid Elements */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.30s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.60s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   HEADER & UNIVERSAL BURGER NAVIGATION
   ========================================================================== */

.top-bar {
  background-color: var(--color-anthrazit);
  color: #94A3B8;
  font-size: 0.8rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--color-border-dark);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-info {
  font-family: var(--font-sans);
  color: #CBD5E1;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.top-bar-emergency {
  color: #FCA5A5;
  font-weight: 600;
  font-size: 0.8rem;
}

.top-bar-emergency a {
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Site Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #FFFFFF;
  border-bottom: 2px solid var(--color-feuerrot);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo img {
  height: 48px;
  width: auto;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Universal Burger Menu Button (Visible on ALL devices) */
.burger-menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  color: var(--color-anthrazit);
  padding: 0.55rem 0.95rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: var(--transition);
}

.burger-menu-btn:hover {
  background-color: var(--color-anthrazit);
  color: #FFFFFF;
  border-color: var(--color-anthrazit);
}

.burger-menu-btn:hover .burger-icon span {
  background-color: #FFFFFF;
}

.burger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 18px;
  height: 13px;
}

.burger-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-anthrazit);
  transition: var(--transition);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.6rem 1.15rem;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-feuerrot);
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: var(--color-feuerrot-hover);
}

.customForm {
  cursor: pointer !important;
  user-select: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: var(--transition);
}

.customForm:hover {
  background-color: var(--color-feuerrot-hover);
  color: #FFFFFF;
}

.btn-dark {
  background-color: var(--color-anthrazit);
  color: #FFFFFF;
}

.btn-dark:hover {
  background-color: #2D3748;
}

.btn-outline {
  border-color: var(--color-border);
  background-color: #FFFFFF;
  color: var(--color-text-main);
}

.btn-outline:hover {
  border-color: var(--color-anthrazit);
  background-color: var(--color-bg);
}

.btn-sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
}

/* ==========================================================================
   OFF-CANVAS DRAWER MENU (SLIDE-IN NAVIGATION OVERLAY)
   ========================================================================== */

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 13, 20, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background-color: var(--color-anthrazit);
  color: #FFFFFF;
  z-index: 2600;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform var(--transition-drawer);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
  overflow-y: auto;
}

.drawer-backdrop.active .nav-drawer {
  transform: translateX(0);
}

.drawer-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--color-border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-brand {
  font-size: 0.85rem;
  font-weight: 700;
  color: #CBD5E1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.drawer-close-btn {
  color: #FFFFFF;
  font-size: 1.3rem;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.drawer-close-btn:hover {
  background-color: var(--color-feuerrot);
  border-color: var(--color-feuerrot);
}

.drawer-body {
  padding: 2rem;
  flex-grow: 1;
}

.drawer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.drawer-nav-item a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.75rem 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #E2E8F0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.drawer-nav-item a span.nav-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-feuerrot);
  font-weight: 700;
  width: 24px;
}

.drawer-nav-item a:hover {
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.04);
  padding-left: 1rem;
}

.drawer-footer {
  padding: 1.75rem 2rem;
  border-top: 1px solid var(--color-border-dark);
  background-color: #11161F;
}

.drawer-footer-emergency {
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: #FCA5A5;
  font-weight: 700;
}

.drawer-footer-address {
  font-size: 0.8rem;
  color: #94A3B8;
  line-height: 1.45;
}

/* ==========================================================================
   FIRST SCREEN / NOTICE BOARD (SCHWARZES BRETT HERO)
   ========================================================================== */

.hero-notice-board {
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--color-border);
  padding: 2.5rem 0 3rem;
}

.notice-board-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: stretch;
}

.notice-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.station-badge-line {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-feuerrot);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}

.station-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-anthrazit);
  margin-bottom: 1rem;
}

.station-description {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.station-photo-wrapper {
  border: 1px solid var(--color-border);
  background-color: #0F172A;
  height: 260px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.station-photo-wrapper img, .station-photo-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.station-caption {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
}

.notice-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Notice Board Container (Right Side) */
.notice-card {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-feuerrot);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.notice-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
}

.notice-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-anthrazit);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.notice-section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}

.notice-entry {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  padding: 1rem 1.15rem;
  margin-bottom: 0.75rem;
}

.notice-entry:last-child {
  margin-bottom: 0;
}

.notice-entry-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.notice-entry-badge {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  text-transform: uppercase;
  color: #FFFFFF;
}

.badge-brand {
  background-color: var(--color-feuerrot);
}

.badge-thl {
  background-color: var(--color-signal-blue);
}

.badge-dienst {
  background-color: #15803D;
}

.notice-entry-heading {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-anthrazit);
  margin-bottom: 0.25rem;
}

.notice-entry-detail {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.notice-entry-forces {
  font-size: 0.78rem;
  font-family: var(--font-mono);
  color: var(--color-feuerrot);
  font-weight: 600;
  margin-top: 0.4rem;
}

.notice-footer-links {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
}

.notice-footer-links a {
  color: var(--color-feuerrot);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.notice-footer-links a:hover {
  color: var(--color-feuerrot-dark);
}

/* ==========================================================================
   STANDARD SECTION STYLES
   ========================================================================== */

.section-padding {
  padding: 4.5rem 0;
}

.section-padding-sm {
  padding: 3rem 0;
}

.section-dark {
  background-color: var(--color-anthrazit);
  color: #FFFFFF;
}

.section-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-border);
}

.section-dark .section-header {
  border-bottom-color: var(--color-border-dark);
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-feuerrot);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.35rem;
}

.section-dark .section-tag {
  color: #F87171;
}

.section-title {
  font-size: clamp(1.75rem, 2.5vw, 2.35rem);
  font-weight: 800;
  color: var(--color-anthrazit);
  line-height: 1.2;
}

.section-dark .section-title {
  color: #FFFFFF;
}

.section-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 850px;
  line-height: 1.6;
  margin-top: 0.5rem;
}

.section-dark .section-desc {
  color: #94A3B8;
}

/* ==========================================================================
   SECTION 1: ÜBER UNS & FÜHRUNG
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
}

.about-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 2rem;
}

.about-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--color-anthrazit);
}

.about-card-text {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.leader-item {
  border-left: 3px solid var(--color-feuerrot);
  padding-left: 0.85rem;
}

.leader-name {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--color-anthrazit);
}

.leader-role {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.about-image-box {
  border: 1px solid var(--color-border);
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  background-color: #0F172A;
}

.about-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   SECTION 2: UNSERE FAHRZEUGE (FLEET)
   ========================================================================== */

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem;
}

.fleet-card {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  color: var(--color-text-main);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.fleet-card-img {
  height: 280px;
  width: 100%;
  position: relative;
  background-color: #0F172A;
  overflow: hidden;
}

.fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.fleet-card:hover .fleet-card-img img {
  transform: scale(1.03);
}

.fleet-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background-color: var(--color-anthrazit);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.fleet-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background-color: #FFFFFF;
}

.fleet-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-anthrazit);
}

.fleet-callsign {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-feuerrot);
  font-weight: 700;
  margin-top: 0.2rem;
  margin-bottom: 0.85rem;
}

.fleet-desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.fleet-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 0.85rem 1rem;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  font-size: 0.85rem;
}

.fleet-spec-label {
  color: var(--color-text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}

.fleet-spec-val {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-anthrazit);
}

.fleet-card .btn-view-vehicle {
  width: 100%;
  padding: 0.75rem 1rem;
  font-weight: 700;
  font-size: 0.88rem;
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  color: var(--color-anthrazit);
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.fleet-card .btn-view-vehicle:hover {
  background-color: var(--color-feuerrot);
  border-color: var(--color-feuerrot);
  color: #FFFFFF;
}

/* ==========================================================================
   SECTION 3: KINDER- & JUGENDFEUERWEHR
   ========================================================================== */

.youth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.youth-card {
  border: 1px solid var(--color-border);
  background-color: #FFFFFF;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.youth-card.highlight-card {
  border-top: 4px solid var(--color-feuerrot);
}

.youth-age-badge {
  display: inline-block;
  background-color: var(--color-feuerrot-light);
  color: var(--color-feuerrot-dark);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.75rem;
}

.youth-title {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--color-anthrazit);
}

.youth-list {
  margin: 1rem 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.youth-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

.youth-list li::before {
  content: '•';
  color: var(--color-feuerrot);
  font-size: 1.1rem;
  line-height: 1.2;
}

/* ==========================================================================
   SECTION 4: EINSÄTZE (MISSIONS LIST)
   ========================================================================== */

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.mission-card {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.mission-card-img {
  height: 180px;
  width: 100%;
  position: relative;
  background-color: #0F172A;
  overflow: hidden;
}

.mission-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  text-transform: uppercase;
  color: #FFFFFF;
}

.mission-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.mission-meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
}

.mission-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-anthrazit);
  margin-bottom: 0.5rem;
}

.mission-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}

/* ==========================================================================
   SECTION 5: TERMINE (EVENTS)
   ========================================================================== */

.events-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-border);
}

.event-row {
  display: grid;
  grid-template-columns: 180px 1fr 160px;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border);
}

.event-row:hover {
  background-color: #FFFFFF;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.event-date {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-anthrazit);
}

.event-time {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.event-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-anthrazit);
  margin-bottom: 0.2rem;
}

.event-category {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-feuerrot);
}

/* ==========================================================================
   SECTION 6: FÖRDERVEREIN & SPENDEN
   ========================================================================== */

.support-banner {
  background-color: var(--color-anthrazit);
  color: #FFFFFF;
  border: 1px solid var(--color-border-dark);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.support-title {
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.support-text {
  color: #94A3B8;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.iban-box {
  background-color: #111827;
  border: 1px solid var(--color-border-dark);
  padding: 1.5rem;
}

.iban-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: #94A3B8;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.iban-code {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FEF08A;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   SECTION 7: KONTAKT & FORM
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-card {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  padding: 2rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-feuerrot);
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}

.contact-detail p {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.form-control {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 0.95rem;
  border: 1px solid var(--color-border);
  background-color: var(--color-bg);
  color: var(--color-text-main);
  border-radius: 0;
}

.form-control:focus {
  outline: 2px solid var(--color-anthrazit);
  background-color: #FFFFFF;
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

/* ==========================================================================
   MODAL
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 13, 20, 0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-window {
  background-color: #FFFFFF;
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--color-border);
}

.modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-close-btn {
  font-size: 1.1rem;
  font-weight: 700;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
}

.modal-close-btn:hover {
  background-color: var(--color-anthrazit);
  color: #FFFFFF;
}

.modal-body {
  padding: 1.5rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background-color: var(--color-anthrazit);
  color: #94A3B8;
  border-top: 3px solid var(--color-feuerrot);
  padding: 3.5rem 0 1.5rem;
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  margin: 0.75rem 0 1rem;
  line-height: 1.5;
}

.footer-col-title {
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid var(--color-border-dark);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 992px) {
  .notice-board-grid {
    grid-template-columns: 1fr;
  }
  .about-grid, .fleet-grid, .youth-grid, .contact-grid, .support-banner {
    grid-template-columns: 1fr;
  }
  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-actions .btn {
    display: none;
  }
  .mission-grid {
    grid-template-columns: 1fr;
  }
  .event-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav-drawer {
    max-width: 100%;
  }
}