:root {
  --primary-black: #0d0d0d;
  --accent-gold: #D4AF37;
  --text-light: #ffffff;
}

html, body { background-color: #0d0d0d !important; color: #ffffff !important; }
* { background-color: transparent !important; }

body, .site-content, .ast-container, .content-area, main { background-color: #0d0d0d !important; }

/* HEADER - FIXED ALIGNMENT */
header, .ast-header-wrap, .site-header { 
  background-color: #000000 !important; 
  display: flex !important;
  align-items: center !important;
  padding: 15px 40px !important;
  justify-content: space-between !important;
  position: relative !important;
  z-index: 100 !important;
}

.site-title { margin: 0 !important; font-size: 28px !important; font-weight: bold !important; }
.site-title a { color: #D4AF37 !important; text-decoration: none !important; }

nav, .main-navigation { display: flex !important; align-items: center !important; }
nav ul, .main-navigation ul { display: flex !important; list-style: none !important; gap: 25px !important; margin: 0 !important; padding: 0 !important; }
nav a, nav li a, .main-navigation a { 
  color: #ffffff !important; 
  text-decoration: none !important; 
  font-size: 16px !important;
  font-weight: 500 !important;
  transition: color 0.3s !important;
  padding: 10px 0 !important;
}
nav a:hover, nav li a:hover, .main-navigation a:hover { color: #D4AF37 !important; }

.cta-button, .button, .wp-block-button__link { 
  background-color: #D4AF37 !important; 
  color: #0d0d0d !important; 
  padding: 12px 24px !important; 
  border-radius: 5px !important; 
  font-weight: bold !important; 
  border: none !important; 
  cursor: pointer !important;
  transition: all 0.3s !important;
}
.cta-button:hover, .button:hover, .wp-block-button__link:hover { 
  background-color: #E5C158 !important; 
  transform: translateY(-3px) !important; 
}

/* HERO & PAGE HEADERS - FIXED LOGO BACKGROUND - LARGE */
.hero, .page-header, .ast-page-header-wrap, .entry-header { 
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(13,13,13,0.75) 100%), 
              url('https://blacklionprotective.com/wp-content/uploads/2026/06/image2.jpg') center/900px 900px no-repeat !important;
  background-attachment: fixed !important;
  color: #ffffff !important; 
  padding: 150px 20px !important; 
  min-height: 600px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  margin-bottom: 60px !important;
  position: relative !important;
}

.hero h1, .page-header h1, .ast-page-header-wrap h1, .entry-header h1 { 
  color: #ffffff !important; 
  font-size: 52px !important; 
  text-shadow: 2px 2px 4px rgba(0,0,0,0.9) !important;
  margin: 0 !important;
  position: relative !important;
  z-index: 10 !important;
}

.hero p, .page-header p { 
  color: #ffffff !important; 
  font-size: 20px !important;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.9) !important;
  margin-top: 20px !important;
  position: relative !important;
  z-index: 10 !important;
}

/* TEXT COLORS */
h1, h2, h3, h4, h5, h6 { color: #D4AF37 !important; }
p, li, span, div, label { color: #ffffff !important; }
a { color: #D4AF37 !important; text-decoration: none; }
a:hover { color: #E5C158 !important; }

/* SERVICES GRID */
.services-grid { 
  display: grid !important; 
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important; 
  gap: 30px !important; 
  padding: 60px 20px !important; 
  max-width: 1200px !important; 
  margin: 0 auto !important; 
}

.service-card { 
  background: rgba(212,175,55,0.05) !important; 
  border: 2px solid #D4AF37 !important; 
  padding: 40px !important; 
  border-radius: 8px !important; 
  transition: all 0.3s !important;
}

.service-card:hover { 
  background: rgba(212,175,55,0.15) !important;
  transform: translateY(-10px) !important; 
  box-shadow: 0 10px 30px rgba(212,175,55,0.3) !important; 
}

.service-card h3 { color: #D4AF37 !important; }
.service-card p { color: #d0d0d0 !important; }

/* FOOTER */
footer, .site-footer { 
  background-color: #000000 !important; 
  color: #ffffff !important; 
  border-top: 2px solid #D4AF37 !important;
}

footer h4, .site-footer h4 { color: #D4AF37 !important; }
footer a, .site-footer a { color: #D4AF37 !important; }

/* FORMS */
input, textarea, .ast-input-field { 
  background-color: rgba(212,175,55,0.1) !important; 
  border: 1px solid #D4AF37 !important; 
  color: #ffffff !important;
  padding: 12px !important; 
  border-radius: 5px !important;
}

input:focus, textarea:focus, .ast-input-field:focus { 
  background-color: rgba(212,175,55,0.2) !important;
  border-color: #E5C158 !important; 
}

/* RESPONSIVE */
@media (max-width: 768px) {
  header, .ast-header-wrap { flex-direction: column !important; gap: 15px !important; }
  .site-title { font-size: 22px !important; }
  nav ul { gap: 15px !important; }
  nav a { font-size: 14px !important; }
  .hero h1, .page-header h1 { font-size: 36px !important; }
  .hero, .page-header { background-attachment: scroll !important; }
}