/* ----------------------------------------------------
   ISO 50001 Specific Styles - Energy Management Theme
   Overrides blue colors with orange for energy focus
   Header/footer colors are preserved
---------------------------------------------------- */

:root {
  --brand-50001-primary: #a04200;   /* muted burnt orange */
  --brand-50001-secondary: #722f00; /* darker for hover states */
  --brand-50001-accent: #bf5510;    /* medium amber for accents */
  --brand-50001-light: #d97835;     /* muted light orange for secondary buttons */
}

/* Hero section headings */
.hero h1,
.hero h2,
.hero-title {
  color: var(--brand-50001-primary) !important;
}

/* Section headings */
.section h2 {
  color: var(--brand-50001-primary) !important;
}

/* Card headings */
.card h3 {
  color: var(--brand-50001-primary) !important;
}

/* Price styling */
.price {
  color: var(--brand-50001-primary) !important;
}

/* Primary buttons */
.btn-primary {
  background: var(--brand-50001-primary) !important;
  color: var(--bg-white) !important;
}

.btn-primary:hover {
  background: var(--brand-50001-accent) !important;
  color: var(--bg-white) !important;
  text-decoration: underline !important;
}

/* Secondary buttons - light teal fill, white text */
.btn-secondary {
  background: var(--brand-50001-light) !important;
  border-color: var(--brand-50001-light) !important;
  color: var(--bg-white) !important;
}

.btn-secondary:hover {
  background: var(--brand-50001-accent) !important;
  color: var(--bg-white) !important;
  text-decoration: underline !important;
}

/* Author section heading */
.author-bio h3 {
  color: var(--brand-50001-primary) !important;
}

/* Form focus states */
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brand-50001-primary) !important;
}

/* Submit button */
.submit-btn {
  background: var(--brand-50001-primary) !important;
}

.submit-btn:hover {
  background: var(--brand-50001-secondary) !important;
}

/* Link colors within 50001 content */
.section a:not(.btn-primary):not(.btn-secondary):not(.btn-pdf):not(.btn-paypal):not(.btn-9001):not(.card):not(.iso-tile) {
  color: var(--brand-50001-primary) !important;
}

.section a:not(.btn-primary):not(.btn-secondary):not(.btn-pdf):not(.btn-paypal):not(.btn-9001):not(.card):not(.iso-tile):hover {
  color: var(--brand-50001-secondary) !important;
}
