/* ----------------------------------------------------
   ISO 22000 Specific Styles - Food Safety Gold/Amber Theme
   Overrides blue colors with gold/amber for food safety focus
   Header/footer colors are preserved
---------------------------------------------------- */

:root {
  --brand-22000-primary: #b07d00;   /* gold/amber */
  --brand-22000-secondary: #7d5900; /* darker for hover states */
  --brand-22000-accent: #c99200;    /* medium amber for accents */
  --brand-22000-light: #d4a824;     /* lighter amber for secondary buttons */
}

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

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

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

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

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

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

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

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

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

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

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

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

/* Link colors within 22000 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-22000-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-22000-secondary) !important;
}
