/* ==========================================================================
GDC CROWN JEWEL MASTER UI FRAMEWORK
Target: Senior Demographic (High Contrast, 18px Min Text, 48px Touch)
========================================================================== */

/* ==========================================================================
GDC MASTER BRANDING VARIABLES
========================================================================== */
:root {
  --gdc-navy: #222e3c;
  --gdc-sky-blue: #38BDF8; /* PURGED TEAL: Replaced #30667A with clean, high-contrast GDC Sky Blue */
  --gdc-link-blue: #2563EB;
  --fortress-gray: #F3F4F6;
  --text-muted: #6B7280;
  --guardian-crimson: #4B072A;
  --pure-white: #FFFFFF;
}

.accordion-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--gdc-navy);
  background-color: var(--fortress-gray);
  border-bottom: 2px solid var(--gdc-sky-blue); /* PURGED TEAL */
  padding: 15px;
}

/* ==========================================================================
DROPDOWN MENU ACCESSIBILITY FIX
========================================================================== */
.header-nav ul.sub-menu,
.nav-dropdown {
  background-color: #1a1a1a !important; /* Matches the dark charcoal header */
}

.header-nav ul.sub-menu > li > a,
.nav-dropdown > li > a {
  color: #ffffff !important; /* Pure white text for high contrast */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.header-nav ul.sub-menu a:hover,
.nav-dropdown a:hover {
  background-color: rgba(255, 255, 255, 0.05) !important;
  color: var(--gdc-sky-blue) !important; /* PURGED TEAL */
}

/* --- 1. GLOBAL BACKGROUND & TYPOGRAPHY --- */
body {
  background: url('https://gdc-consulting.io/wp-content/uploads/2026/05/GDC-background-wallpaper-7-scaled.png') center center / cover no-repeat fixed !important;
}

#wrapper, #main, #content { 
  background: transparent !important; 
  box-shadow: none !important; 
  border: none !important; 
}

/* Force readable labels globally */
.acf-form-reveal, .frontend-admin-form label, .acf-label label, form label, #gdc-login-form label {
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 16px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8) !important;
  display: block !important;
  margin-bottom: 8px !important;
}

.acf-description, .acf-notice, p.description { 
  color: #cbd5e1 !important; 
  font-weight: 600 !important; 
  font-size: 14px !important; 
}


