/*
Theme Name: VDF-AG Child
Theme URI: https://vdf-ag.de
Template: Divi
Description: Child-Theme für die AG Freilichtbühnen Rheinland-Pfalz. Corporate-Design: gelb-akzentuiert auf schwarzem Grund. Archivo Black Headings in Uppercase, Inter Body. Ziel: Live-vdf-ag.de (2026).
Author: OMmatic Agentur Normen Daunderer
Version: 2.3.0
License: proprietary
Text Domain: vdf-child
Tags: divi, divi-child
*/

/* ============================================================
   1. DESIGN TOKENS — Live vdf-ag.de 2026
   ============================================================ */
:root {
  --vdf-yellow: #F5C518;
  --vdf-yellow-light: #FFD84A;
  --vdf-yellow-dim-20: rgba(245, 197, 24, 0.2);
  --vdf-yellow-dim-10: rgba(245, 197, 24, 0.1);
  --vdf-yellow-dim-30: rgba(245, 197, 24, 0.3);

  --vdf-black: #0A0A0A;
  --vdf-dark: #111111;
  --vdf-dark-2: #1A1A1A;
  --vdf-gray-700: #444444;
  --vdf-gray-500: #666666;
  --vdf-gray-300: #CCCCCC;
  --vdf-gray-200: #E5E7EB;
  --vdf-white: #FFFFFF;

  --vdf-white-90: rgba(255,255,255,0.9);
  --vdf-white-70: rgba(255,255,255,0.7);
  --vdf-white-60: rgba(255,255,255,0.6);
  --vdf-white-50: rgba(255,255,255,0.5);
  --vdf-white-40: rgba(255,255,255,0.4);
  --vdf-white-10: rgba(255,255,255,0.1);
  --vdf-white-05: rgba(255,255,255,0.05);
  --vdf-black-90: rgba(10,10,10,0.9);
  --vdf-black-70: rgba(10,10,10,0.7);

  --vdf-font-heading: 'Archivo Black', 'Impact', system-ui, sans-serif;
  --vdf-font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --vdf-radius-xs: 2px;
  --vdf-radius-sm: 4px;
  --vdf-radius-md: 8px;
  --vdf-radius-lg: 12px;

  --vdf-section-pad: 128px;
  --vdf-section-pad-tablet: 80px;
  --vdf-section-pad-mobile: 56px;

  --vdf-container-max: 1280px;
  --vdf-container-narrow: 960px;

  --vdf-shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --vdf-shadow-md: 0 4px 16px rgba(0,0,0,0.25);
  --vdf-shadow-yellow: 0 8px 24px rgba(245,197,24,0.25);
}

/* ============================================================
   2. BASE
   ============================================================ */
html { scroll-behavior: smooth; }
body {
  font-family: var(--vdf-font-body);
  color: var(--vdf-white);
  background-color: var(--vdf-black);
  font-size: 18px;
  line-height: 1.6em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#page-container,
#main-content,
#main-content .container {
  background-color: var(--vdf-black);
  color: var(--vdf-white);
}

/* ============================================================
   3. TYPOGRAPHY — Archivo Black uppercase headings + Inter body
   ============================================================ */
h1, h2, h3, h4, h5, h6,
.et_pb_module_header,
#left-area h1, .entry-content h1, .entry-content h2, .entry-content h3 {
  font-family: var(--vdf-font-heading) !important;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1em;
  color: var(--vdf-white);
}

h1, .et_pb_fullwidth_header h1.et_pb_module_header {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1em;
  margin-bottom: 1.5rem;
}
h2, .et_pb_module_header {
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.05em;
  margin-bottom: 1.25rem;
}
h3 { font-size: 1.5rem; line-height: 1.1em; margin-bottom: 1rem; }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; letter-spacing: 0.1em; }

p, li {
  font-family: var(--vdf-font-body);
  font-weight: 400;
  line-height: 1.7em;
  color: var(--vdf-white-90);
}
p { margin-bottom: 1rem; font-size: 1.125rem; }

a { color: var(--vdf-yellow); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--vdf-yellow-light); }

strong, b { color: var(--vdf-white); font-weight: 600; }

/* ============================================================
   4. DIVI SECTION/ROW + multi-column flex override
   ============================================================ */

/* Multi-column rows: force flex layout since Divi via REST renders all as 4_4 */
.et_pb_row {
  display: flex !important;
  flex-wrap: wrap;
  gap: 24px;
}
.et_pb_row > .et_pb_column {
  float: none !important;
  display: flex;
  flex-direction: column;
  flex: 1 1 100%;
  min-width: 0;
  margin-right: 0 !important;
}
/* 2-column rows: flex 1 1 calc(50% - gap) */
.et_pb_row > .et_pb_column:nth-child(1):nth-last-child(2),
.et_pb_row > .et_pb_column:nth-child(2):nth-last-child(1) {
  flex: 1 1 calc(50% - 24px);
}
/* 3-column rows */
.et_pb_row > .et_pb_column:nth-child(1):nth-last-child(3),
.et_pb_row > .et_pb_column:nth-child(2):nth-last-child(2),
.et_pb_row > .et_pb_column:nth-child(3):nth-last-child(1) {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 240px;
}
/* 4-column rows */
.et_pb_row > .et_pb_column:nth-child(1):nth-last-child(4),
.et_pb_row > .et_pb_column:nth-child(2):nth-last-child(3),
.et_pb_row > .et_pb_column:nth-child(3):nth-last-child(2),
.et_pb_row > .et_pb_column:nth-child(4):nth-last-child(1) {
  flex: 1 1 calc(25% - 18px);
  min-width: 180px;
}

/* On tablet: collapse to 2-col, mobile to 1-col */
@media (max-width: 980px) {
  .et_pb_row > .et_pb_column:nth-child(1):nth-last-child(n+3),
  .et_pb_row > .et_pb_column:nth-child(2):nth-last-child(n+2),
  .et_pb_row > .et_pb_column:nth-child(n+3) {
    flex: 1 1 calc(50% - 12px) !important;
  }
}
@media (max-width: 640px) {
  .et_pb_row > .et_pb_column { flex: 1 1 100% !important; }
}

.et_pb_section {
  padding: var(--vdf-section-pad) 24px !important;
  background-color: var(--vdf-black);
}
@media (max-width: 980px) { .et_pb_section { padding: var(--vdf-section-pad-tablet) 24px !important; } }
@media (max-width: 640px) { .et_pb_section { padding: var(--vdf-section-pad-mobile) 16px !important; } }

.et_pb_row {
  max-width: var(--vdf-container-max) !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.et_pb_button,
.et_pb_button_module_wrapper .et_pb_button,
a.et_pb_more_button {
  font-family: var(--vdf-font-body) !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase !important;
  padding: 0.85em 1.5em !important;
  line-height: 1.2em !important;
  border-radius: var(--vdf-radius-sm) !important;
  border: 1px solid transparent !important;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}
.et_pb_button:hover,
a.et_pb_more_button:hover { padding: 0.85em 1.5em !important; transform: translateY(-1px); }

/* Primary (yellow) */
.et_pb_button.et_pb_button_one,
.et_pb_button_module_wrapper .et_pb_button.vdf-primary,
.vdf-btn-primary {
  background-color: var(--vdf-yellow) !important;
  color: var(--vdf-black) !important;
  border-color: var(--vdf-yellow) !important;
}
.et_pb_button.et_pb_button_one:hover,
.vdf-btn-primary:hover {
  background-color: var(--vdf-yellow-light) !important;
  border-color: var(--vdf-yellow-light) !important;
  box-shadow: var(--vdf-shadow-yellow) !important;
}
/* Secondary / outline */
.et_pb_button.et_pb_button_two,
.et_pb_button_module_wrapper .et_pb_button.vdf-secondary,
.vdf-btn-secondary {
  background-color: transparent !important;
  color: var(--vdf-white) !important;
  border-color: var(--vdf-white-10) !important;
}
.et_pb_button.et_pb_button_two:hover,
.vdf-btn-secondary:hover {
  background-color: var(--vdf-white-05) !important;
  border-color: var(--vdf-yellow) !important;
  color: var(--vdf-yellow) !important;
}
/* Divi default pseudo-arrow weg */
.et_pb_button::after,
.et_pb_button::before { display: none !important; }

/* ============================================================
   6. EYEBROW — Yellow-divider + uppercase small text
   ============================================================ */
.vdf-eyebrow,
.et_pb_fullwidth_header_subhead,
.et_pb_heading.vdf-eyebrow h1.et_pb_module_header,
.et_pb_heading.vdf-eyebrow h2.et_pb_module_header,
.et_pb_heading.vdf-eyebrow h3.et_pb_module_header {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  color: var(--vdf-yellow) !important;
  font-family: var(--vdf-font-body) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.2em !important;
  line-height: 1em !important;
  margin-bottom: 1.5rem !important;
  padding-left: 0 !important;
}
.vdf-eyebrow::before,
.et_pb_fullwidth_header_subhead::before,
.et_pb_heading.vdf-eyebrow h1.et_pb_module_header::before,
.et_pb_heading.vdf-eyebrow h2.et_pb_module_header::before {
  content: '';
  display: inline-block;
  width: 2.5rem;
  height: 2px;
  background: var(--vdf-yellow);
  flex-shrink: 0;
}
.vdf-eyebrow-line {
  display: inline-block;
  width: 2.5rem;
  height: 2px;
  background: var(--vdf-yellow);
}

/* ============================================================
   7. HERO (fullwidth-header)
   ============================================================ */
.et_pb_fullwidth_header {
  min-height: 90vh;
  display: flex !important;
  align-items: center !important;
  position: relative;
  overflow: hidden;
  background-color: var(--vdf-black) !important;
}
.et_pb_fullwidth_header .et_pb_fullwidth_header_container {
  max-width: var(--vdf-container-max) !important;
  margin: 0 auto !important;
  padding: 0 24px;
}
.et_pb_fullwidth_header h1.et_pb_module_header {
  color: var(--vdf-white) !important;
  font-size: clamp(2.5rem, 6vw, 5.5rem) !important;
  font-family: var(--vdf-font-heading) !important;
  text-transform: uppercase !important;
  line-height: 1em !important;
  letter-spacing: -0.02em;
}
.et_pb_fullwidth_header h1.et_pb_module_header em,
.et_pb_fullwidth_header h1.et_pb_module_header .yellow { color: var(--vdf-yellow) !important; font-style: normal; }
.et_pb_fullwidth_header .et_pb_header_content_wrapper p {
  color: var(--vdf-white-70);
  font-size: 1.125rem;
  line-height: 1.6em;
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.et_pb_fullwidth_header .et_pb_header_button_wrapper {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
/* Optional decorative yellow glow */
.et_pb_fullwidth_header::before {
  content: '';
  position: absolute;
  width: 560px; height: 560px;
  top: 20%; left: -10%;
  background: var(--vdf-yellow);
  opacity: 0.04;
  filter: blur(128px);
  border-radius: 50%;
  pointer-events: none;
}

/* ============================================================
   8. SECTION-STYLES
   ============================================================ */
.vdf-section-dark { background: var(--vdf-dark) !important; }
.vdf-section-darker { background: var(--vdf-dark-2) !important; }
.vdf-section-black { background: var(--vdf-black) !important; }

/* ============================================================
   9. CARDS
   ============================================================ */
.vdf-card,
.et_pb_column.vdf-card {
  background: var(--vdf-dark) !important;
  border: 1px solid var(--vdf-white-10) !important;
  border-radius: var(--vdf-radius-md) !important;
  padding: 24px !important;
  transition: all 0.2s ease;
}
.vdf-card:hover,
.et_pb_column.vdf-card:hover {
  border-color: var(--vdf-yellow-dim-30) !important;
  transform: translateY(-2px);
  box-shadow: var(--vdf-shadow-md);
}

/* Stats — big yellow numbers */
.vdf-stat-card {
  background: var(--vdf-black) !important;
  border: 1px solid var(--vdf-white-10) !important;
  border-radius: var(--vdf-radius-md) !important;
  padding: 32px 24px !important;
}
.vdf-stat-card h1,
.vdf-stat-card h2,
.vdf-stat-card h3 {
  color: var(--vdf-yellow) !important;
  font-family: var(--vdf-font-heading) !important;
  font-size: clamp(2.5rem, 4vw, 3.5rem) !important;
  line-height: 1em !important;
  margin-bottom: 0.25rem !important;
}
.vdf-stat-card .et_pb_text,
.vdf-stat-card p {
  color: var(--vdf-white-60) !important;
  font-size: 0.875rem !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.3em;
}

/* Mitgliedsbühne Card */
.vdf-member-card {
  background: var(--vdf-dark) !important;
  border: 1px solid var(--vdf-white-10) !important;
  border-radius: var(--vdf-radius-md) !important;
  padding: 32px 24px !important;
  transition: all 0.2s ease;
}
.vdf-member-card:hover {
  border-color: var(--vdf-yellow) !important;
  transform: translateY(-3px);
  box-shadow: var(--vdf-shadow-md);
}
.vdf-member-card h3 {
  color: var(--vdf-white) !important;
  font-size: 1.25rem !important;
  margin-bottom: 0.5rem;
}
.vdf-member-card p {
  color: var(--vdf-white-60) !important;
  font-size: 0.95rem;
  margin: 0;
}

/* Förderung item number badge */
.vdf-forderung-num {
  display: inline-block;
  font-family: var(--vdf-font-heading);
  font-size: 2.5rem;
  color: var(--vdf-yellow);
  line-height: 1em;
  margin-bottom: 1rem;
}

/* Quote banner */
.vdf-quote {
  text-align: center;
  padding: 96px 24px;
  background: var(--vdf-dark);
}
.vdf-quote h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--vdf-yellow);
  margin-bottom: 0.5rem;
}
.vdf-quote p { color: var(--vdf-white-60); font-size: 1.125rem; margin: 0; }

/* ============================================================
   10. TEMPLATE CLEANUP
   ============================================================ */
body.page-template-blank #sidebar,
body.page-template-blank aside,
body.et_right_sidebar.page-template-blank #sidebar { display: none !important; }
body.page-template-blank #left-area {
  width: 100% !important; padding: 0 !important; float: none !important;
}
body.page-template-blank #content-area {
  width: 100% !important; float: none !important;
}
body.page-template-blank #main-content .container {
  width: 100% !important; max-width: 100% !important; padding: 0 !important;
}
body.page-template-blank #main-content .container::before { display: none !important; }
body.page-template-blank #page-container { padding-top: 0 !important; }

/* ============================================================
   11. FORMS
   ============================================================ */
input[type="text"], input[type="email"], textarea {
  background: var(--vdf-dark) !important;
  border: 1px solid var(--vdf-white-10) !important;
  border-radius: var(--vdf-radius-sm) !important;
  color: var(--vdf-white) !important;
  padding: 0.85em 1em !important;
  font-family: var(--vdf-font-body) !important;
}
input:focus, textarea:focus {
  border-color: var(--vdf-yellow) !important;
  outline: none !important;
}

/* ============================================================
   13. STICKY HEADER (custom)
   ============================================================ */
.vdf-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: transparent;
  transition: background 0.3s, backdrop-filter 0.3s;
  padding: 16px 24px;
}
.vdf-header.vdf-scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.vdf-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.vdf-header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  color: var(--vdf-white) !important;
}
.vdf-brand-mono {
  font-family: var(--vdf-font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  text-transform: uppercase;
}
.vdf-brand-yellow { color: var(--vdf-yellow); }
.vdf-brand-sub {
  font-family: var(--vdf-font-body);
  font-size: 0.7rem;
  color: var(--vdf-white-60);
  line-height: 1.2em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-left: 1px solid var(--vdf-white-10);
  padding-left: 12px;
}
.vdf-header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.vdf-header-nav a {
  color: var(--vdf-white-70) !important;
  font-family: var(--vdf-font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.15s;
  text-transform: none;
  letter-spacing: 0.02em;
}
.vdf-header-nav a:hover { color: var(--vdf-yellow) !important; background: rgba(255,255,255,0.05); }
.vdf-header-nav a.vdf-nav-active { color: var(--vdf-yellow) !important; }
.vdf-header-nav a.vdf-nav-cta {
  background: var(--vdf-yellow) !important;
  color: var(--vdf-black) !important;
  font-weight: 600;
  margin-left: 12px;
  padding: 10px 18px;
}
.vdf-header-nav a.vdf-nav-cta:hover {
  background: var(--vdf-yellow-light) !important;
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .vdf-brand-sub { display: none; }
  .vdf-header-nav { gap: 0; }
  .vdf-header-nav a:not(.vdf-nav-cta) { padding: 8px 8px; font-size: 0.8rem; }
}
@media (max-width: 560px) {
  .vdf-header-nav a:not(.vdf-nav-cta) { display: none; }
}
/* Add top-padding to content to clear fixed header */
body.page-template-blank .et_pb_section:first-of-type,
body.page-template-blank .et_pb_fullwidth_header { padding-top: 0 !important; }

/* ============================================================
   14. UTILITY
   ============================================================ */
.vdf-text-center { text-align: center !important; }
.vdf-text-yellow { color: var(--vdf-yellow) !important; }
.vdf-muted { color: var(--vdf-white-60) !important; }
.vdf-container-narrow .et_pb_row { max-width: var(--vdf-container-narrow) !important; }

/* Focus ring */
a:focus-visible, button:focus-visible, .et_pb_button:focus-visible {
  outline: 2px solid var(--vdf-yellow) !important;
  outline-offset: 2px;
}

/* Admin bar gap */
html[style*="margin-top"] body.logged-in.admin-bar #page-container {
  padding-top: 32px !important;
}

/* ============================================================
   13. IMAGE MODULES — keep aspect, constrain
   ============================================================ */
.et_pb_image {
  display: block !important;
  width: 100% !important;
  margin-bottom: 1.5rem;
}
.et_pb_image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--vdf-radius-md);
}

/* Round-corner large content images (willkommen, wer-wir-sind etc.) */
.vdf-round-img .et_pb_image,
.vdf-round-img img { border-radius: var(--vdf-radius-lg); }

/* Member logos: uniform max-height, centered, invert/contrast ok */
.vdf-member-card .et_pb_image {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.vdf-member-card .et_pb_image img {
  max-height: 80px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1); /* logos white on dark */
  opacity: 0.85;
  transition: opacity 0.2s, filter 0.2s;
}
.vdf-member-card:hover .et_pb_image img { opacity: 1; filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(15deg); }

/* Kurse cards: fixed aspect images */
.vdf-kurs-card .et_pb_image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border-radius: var(--vdf-radius-md);
  display: block !important;
}
.vdf-kurs-card .et_pb_image img,
.vdf-kurs-card .et_pb_image .et_pb_image_wrap,
.vdf-kurs-card .et_pb_image_wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
.vdf-kurs-card { align-items: stretch; }

/* Section with 2-col image+text (willkommen, about): force image wrapper width */
.vdf-willkommen .et_pb_image,
.vdf-about .et_pb_image {
  width: 100%;
  min-height: 400px;
  border-radius: var(--vdf-radius-lg);
  overflow: hidden;
}
.vdf-willkommen .et_pb_image img,
.vdf-about .et_pb_image img {
  width: 100% !important;
  height: 100% !important;
  min-height: 400px;
  object-fit: cover !important;
}

/* VDF Verband logo center */
.vdf-verband-logo .et_pb_image { text-align: center; margin-top: 2rem; }
.vdf-verband-logo img { max-width: 200px; margin: 0 auto; filter: brightness(0) invert(1); opacity: 0.6; }

/* Footer logo */
.vdf-footer-logo .et_pb_image img { max-width: 200px; }

/* Hero specific fixes */
.vdf-hero .et_pb_fullwidth_header_container { position: relative; z-index: 2; }
.vdf-hero .et_pb_fullwidth_header_overlay {
  background: linear-gradient(
    to bottom right,
    rgba(10,10,10,0.85) 0%,
    rgba(10,10,10,0.6) 50%,
    rgba(10,10,10,0.85) 100%
  ) !important;
}

/* Stats-section below hero: yellow-tinted border */
.vdf-stats-section .et_pb_row {
  gap: 0 !important;
}
.vdf-stats-section .et_pb_column {
  border-right: 1px solid var(--vdf-white-10);
  padding: 32px 24px;
  text-align: center;
}
.vdf-stats-section .et_pb_column:last-child { border-right: none; }
.vdf-stats-section h1 {
  color: var(--vdf-yellow) !important;
  font-size: clamp(2rem, 3.5vw, 3rem) !important;
  line-height: 1em !important;
  margin-bottom: 0.25rem !important;
}
.vdf-stats-section .et_pb_text p {
  color: var(--vdf-white-60);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

/* Förderung numbers big yellow dim */
.vdf-forderung-card > .et_pb_heading:first-child h1 {
  color: var(--vdf-yellow) !important;
  font-size: 4rem !important;
  line-height: 1em !important;
  margin-bottom: 1rem !important;
  opacity: 0.25;
  font-weight: 400 !important;
}
.vdf-forderung-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--vdf-white-10);
  border-radius: var(--vdf-radius-md);
  padding: 32px 24px;
}
.vdf-forderung-card .et_pb_heading:nth-child(2) h1 {
  font-size: 1.5rem !important;
  line-height: 1.1em !important;
  margin-bottom: 1rem !important;
}

/* Quote section */
.vdf-quote { text-align: center; }
.vdf-quote .vdf-quote-headline h1 {
  color: var(--vdf-yellow) !important;
  font-size: clamp(2rem, 5vw, 4rem) !important;
}
.vdf-quote-sub { text-align: center; color: var(--vdf-white-60); font-size: 1.125rem; }

/* CTA banner (yellow) */
.vdf-cta { text-align: center; }
.vdf-cta h1 {
  color: var(--vdf-black) !important;
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
}
.vdf-cta-sub {
  color: rgba(10,10,10,0.7) !important;
  font-size: 1.125rem;
  text-align: center;
  max-width: 600px;
  margin: 1rem auto 2rem;
}
.vdf-cta .vdf-cta-button a {
  background: var(--vdf-black) !important;
  color: var(--vdf-yellow) !important;
  padding: 1em 2em;
  display: inline-block;
  border-radius: var(--vdf-radius-sm);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Footer section */
.vdf-footer { background: var(--vdf-dark-2) !important; }
.vdf-footer-heading h1 {
  color: var(--vdf-yellow) !important;
  font-size: 1rem !important;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.vdf-footer-meta, .vdf-footer-contact { color: var(--vdf-white-60); font-size: 0.95rem; }
.vdf-footer-list { list-style: none; padding: 0; }
.vdf-footer-list li { padding: 0.25em 0; }
.vdf-footer-list a { color: var(--vdf-white); }
.vdf-footer-list a:hover { color: var(--vdf-yellow); }
.vdf-footer-copy { border-top: 1px solid var(--vdf-white-10); padding-top: 1rem; }

/* Download cards */
.vdf-download-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--vdf-white-10);
  border-left: 3px solid var(--vdf-yellow);
  border-radius: var(--vdf-radius-sm);
  padding: 24px;
}
.vdf-download-pending {
  opacity: 0.5;
  border-left-color: var(--vdf-gray-500);
}
.vdf-download-title h1 { font-size: 1.25rem !important; }

/* Willkommen section: image + text side-by-side, equal height */
.vdf-willkommen .et_pb_row,
.vdf-about .et_pb_row {
  align-items: center;
}

/* Mitglieder cards text-align center */
.vdf-mitglieder .et_pb_column { text-align: center; padding: 32px 24px; }
.vdf-mitglieder h1 {
  font-size: 1rem !important;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem !important;
  color: var(--vdf-white) !important;
}
.vdf-mitglieder .et_pb_text p { font-size: 0.875rem; color: var(--vdf-white-60); }

/* Schulungen cards */
.vdf-kurs-card { padding: 0; background: transparent; }
.vdf-kurs-card h1 {
  font-size: 1.5rem !important;
  margin-bottom: 0.5rem !important;
}
.vdf-schulungen .et_pb_row { gap: 32px; }
