/* ========================================
   ILUMA 2026 DESIGN SYSTEM
   Applied globally — replaces old overrides.css
   ======================================== */

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* --- Design tokens --- */
:root {
  --orange: #D18C02;
  --orange-light: #FEF0E2;
  --blue: #34A9CC;
  --teal: #046C84;
  --dark: #484848;
  --dark-deep: #2A2A2A;
  --warm-white: #FAFAF7;
  --warm-gray: #F3F2EE;
  --mid-gray: #9A9A9A;
  --light-border: #E8E6E1;
  --font-display: 'Barlow Semi Condensed', sans-serif;
  --font-body: 'Lora', Georgia, serif;
  --max-width: 1200px;
}

/* ========================================
   GLOBAL BASE STYLES
   ======================================== */
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display) !important;
  font-weight: 600;
}

p,
li {
  font-family: var(--font-body) !important;
}

a {
  font-family: inherit !important;
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--orange);
}

img {
  max-width: 100%;
  display: block;
}

/* ========================================
   REMOVE NAV SPACER
   ======================================== */

.sizer:has(.hero) {
  padding: 0 !important;
}

[class*=col-] {
    padding: 0px !important;
}

/* ========================================
   NAV
   ======================================== */

.header .dropdown__trigger {
  font-family: var(--font-display) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff !important;
}

.header .dropdown__icon {
  font-size: 10px;
  margin-left: 4px;
  color: inherit;
}

.header .dropdown__menu {
  background: var(--warm-white) !important;
  border: 1px solid var(--light-border);
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.header .dropdown__item a {
  font-family: var(--font-display) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--dark) !important;
  padding: 10px 24px;
}

.header .dropdown__item a:hover {
  color: var(--teal) !important;
  background-color: var(--warm-gray) !important;
}

.header--overlay .dropdown__trigger {
  color: rgba(255, 255, 255, 0.85) !important;
}

.header--overlay .dropdown__trigger:hover {
  color: #fff !important;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0px !important;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--teal);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}

.btn-outline:hover {
  background: var(--teal);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   SECTION UTILITIES
   ======================================== */
.section {
  padding: var(--section-pad) var(--side-pad);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark-deep);
  margin-bottom: 24px;
}

/* ========================================
   HERO (shared — homepage 100vh, inner 65vh)
   ======================================== */
.hero {
  min-height: 65vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--dark-deep);
  padding: 0;
}

.hero--full {
  min-height: 100vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(42, 42, 42, 0.92) 0%,
    rgba(42, 42, 42, 0.78) 35%,
    rgba(42, 42, 42, 0.35) 60%,
    rgba(42, 42, 42, 0.1) 80%,
    transparent 100%);
}

.hero .section-inner {
  position: relative;
  z-index: 2;
  padding: 0 var(--side-pad);
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-content {
  max-width: 580px;
  padding: 140px 0 100px;
}

.hero--full .hero-content {
  padding: 160px 0 120px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  color: #fff !important;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.hero-headline em {
  font-style: normal;
  color: var(--orange);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero .section-label {
  color: var(--orange);
}

/* ========================================
   BRIDGE (centered intro text)
   ======================================== */
.bridge {
  background: var(--warm-white);
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: 0;
}

.bridge--padded {
  padding-bottom: clamp(60px, 8vw, 100px);
}

.bridge-text {
  font-family: var(--font-body);
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.7;
  color: var(--dark);
  max-width: 680px;
  text-align: center;
  margin: 0 auto;
}

/* ========================================
   BOTTOM CTA (shared across all pages)
   ======================================== */
.bottom-cta {
  background: var(--dark-deep);
  text-align: center;
}

.bottom-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.bottom-cta .btn-primary {
  font-size: 16px;
  padding: 18px 48px;
}

/* ========================================
   SOCIAL PROOF (shared)
   ======================================== */
.proof {
  background: var(--warm-white);
  border-top: 1px solid var(--light-border);
}

.proof--gray {
  background: var(--warm-gray);
}

.proof-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 5vw, 64px);
  flex-wrap: wrap;
}

.proof-logos--bottom {
  margin-top: 64px;
}

.proof-logos--top {
  margin-bottom: 64px;
}

.proof-logo {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid-gray);
  opacity: 0.6;
}

.proof-quotes {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.proof-quote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.proof-quote blockquote {
  font-family: var(--font-body);
  font-size: clamp(20px, 2.5vw, 24px);
  font-style: italic;
  line-height: 1.7;
  color: var(--dark-deep);
  margin-bottom: 24px;
  position: relative;
}

.proof-quote blockquote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--orange);
  opacity: 0.3;
  position: absolute;
  top: -40px;
  left: -20px;
  line-height: 1;
}

.proof-quote cite {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mid-gray);
}

/* ========================================
   FOOTER OVERRIDE
   ======================================== */
.footer {
  background-color: var(--dark-deep) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px var(--side-pad);
}

.footer__container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer a.link-list__link {
  font-family: var(--font-display) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45) !important;
}

.footer a.link-list__link:hover {
  color: var(--orange) !important;
}

.footer .copyright {
  font-family: var(--font-display) !important;
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.25) !important;
  letter-spacing: 0.5px;
}

/* ========================================
   RESPONSIVE — SHARED
   ======================================== */
@media (max-width: 960px) {
  .hero-content {
    max-width: 100%;
  }

  .hero-bg img {
    object-position: 65% center;
  }

  .hero-bg::after {
    background: linear-gradient(to right,
      rgba(42, 42, 42, 0.93) 0%,
      rgba(42, 42, 42, 0.82) 50%,
      rgba(42, 42, 42, 0.5) 100%);
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 55vh;
  }

  .hero--full {
    min-height: 85vh;
  }

  .hero-content {
    padding: 120px 0 80px;
  }

  .hero-headline {
    font-size: 32px;
  }

  .proof-quote blockquote::before {
    left: 0;
  }

  .footer__container {
    flex-direction: column;
    align-items: flex-start;
  }
}
```

### Step 2: Append preserved styles from old overrides.css

After the new design system CSS above, add these classes preserved from the original `overrides.css` (everything else from the old file is removed):

```css
/* ========================================
   PRESERVED FROM ORIGINAL OVERRIDES.CSS
   Blog, icon, and Kajabi-fix styles
   ======================================== */

/* --- Blog styles --- */
.blog-listing__content {
    margin: 0px 0px 10px 0px;
}

.blog-post-body__date {
    margin-bottom:0px;
}

.blog-author {
    display:flex;
    flex-flow:row nowrap;
    justify-content: flex-start;
    align-items:center;
    margin:10px 0px;
}

.blog-author img {
    width:40px;
    height:40px;
    border-radius:50%;
    display:inline-block;
    margin-right:10px;
}

.blog-author span {
    font-weight:normal;
    font-style:italic;
}

/* --- Font Awesome icon overrides --- */
.icon-reg::before {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}

.file-pdf::before {
  content: '\f1c1';
}

.file-audio::before {
  content: '\f1c7';
}

/* --- Kajabi global fixes --- */
iframe { border: none; }

/* --- Block-specific overrides (kept as safety net — remove once confirmed unused) --- */
#block-1742689122707_0 .block { padding: 0px !important; }

#block-1742690579682_0 { background-color: #fff !important; }

#block-1743728614125_0 form,
#block-1743731374393_0 form,
#block-1743729260794_0 form,
#block-1743731138917_0 form,
#block-1743730649441_0 form {
    max-width: 450px;
    margin: 0px auto;
}
```

**What was removed from the old overrides.css:**
- All SPARK-specific styles (`.spark-subtitle`, `.spark-details`, `.bullet-box`, `.spark-pop`, etc.)
- All FORGE-specific styles (`.forge` variants)
- All BLAZE-specific styles (`.blaze-subtitle`, `.blaze-value`, `.meet-amy-blaze`, etc.)
- All coaching page styles (`.coaching-programs-portals`, `.coaching-portal`, `.coaching-program-box`, etc.)
- All L.I. Online styles (`.long-term-impact-container`, `.topic-bubble`, `.li-online-*`, etc.)
- Owl Carousel styles (will be re-added if testimonial carousel is needed)
- Old Barlow font import and global font-family override
- Old CSS variable block (on `*`)
- Old flex grid utilities (`.flex-row`, `.flex-item-*`)
- All hero/ribbon/swoosh styles for old pages

---

## Task 2: Kajabi Header/Nav Override

**Files:**
- Add to: `overrides.css` (within the 2026 design system section)

### Approach: Restyle Encore Header via CSS (Option A)

The Encore header uses these key classes:
- `.header` — main header element
- `.header--overlay` — transparent/overlay mode
- `.header--fixed` — sticky scroll state
- `.header__wrap` — content wrapper
- `.header__content--desktop` — desktop content area
- `.header__container` — inner container
- `.header__block--logo` — logo block
- `.header__block--menu` — menu block
- `a.link-list__link` — nav links
- `.hamburger` — mobile toggle
- `.user__login` — login link

### CSS to add to overrides.css:

```css
/* ========================================
   HEADER/NAV OVERRIDE (Encore theme)
   ======================================== */
.header {
  background: rgba(250, 250, 247, 0.95) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-border) !important;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.header__container {
  max-width: var(--max-width) !important;
  margin: 0 auto;
  height: 72px;
  align-items: center;
}

/* Logo — text-based "ILUMA." */
.header .logo__text {
  font-family: var(--font-display) !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase;
  color: var(--teal) !important;
}

/* Nav links */
.header a.link-list__link {
  font-family: var(--font-display) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark) !important;
  position: relative;
}

.header a.link-list__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.header a.link-list__link:hover {
  color: var(--teal) !important;
}

.header a.link-list__link:hover::after {
  width: 100%;
}

/* Login link — dimmed */
.header .user__login a {
  font-family: var(--font-display) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mid-gray) !important;
}

/* Hamburger bars */
.header .hamburger__slice {
  background-color: var(--dark) !important;
}

/* --- Overlay/Transparent mode (hero pages) --- */
.header--overlay {
  background: transparent !important;
  backdrop-filter: none;
  border-bottom-color: transparent !important;
}

.header--overlay a.link-list__link {
  color: rgba(255, 255, 255, 0.85) !important;
}

.header--overlay a.link-list__link:hover {
  color: #fff !important;
}

.header--overlay .logo__text {
  color: #fff !important;
}

.header--overlay .user__login a {
  color: rgba(255, 255, 255, 0.5) !important;
}

.header--overlay .hamburger__slice {
  background-color: #fff !important;
}

/* --- Sticky scroll state (solid bg) --- */
.header.header--fixed {
  background: rgba(250, 250, 247, 0.95) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-border) !important;
}

.header.header--fixed a.link-list__link {
  color: var(--dark) !important;
}

.header.header--fixed .logo__text {
  color: var(--teal) !important;
}

.header.header--fixed .user__login a {
  color: var(--mid-gray) !important;
}

.header.header--fixed .hamburger__slice {
  background-color: var(--dark) !important;
}

/* OWL CAROUSEL STYLES */

.owl-carousel.owl-loaded {
    margin:0px auto;
    text-align:center;
}

#owl-reviews-carousel {
  margin: 5vw auto;
  text-align: center;
}

@media screen and (max-width: 800px) {
  #owl-reviews-carousel {
    width: 90%;
  }
}

#owl-reviews-carousel .owl-nav {
  display: none;
}


#owl-reviews-carousel .owl-dots {
  text-align: center;
}

#owl-reviews-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  backface-visibility: visible;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px;
}

#owl-reviews-carousel .owl-dots .owl-dot.active span {
  background: #60c5bb;
}

#owl-reviews-carousel .owl-nav button.owl-next,
#owl-reviews-carousel .owl-nav button.owl-prev {
  font-size: 2rem !important;
  color: #DDD !important;
}

.google-reviews-wrap {
  width: 100%;
  display: flex;
  flex-flow: column;
}

.review-quotes {
  display: block !important;
  width: 80px !important;
  margin: 20px auto !important;
}

.reviewer-wrap {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  text-align: center;
}

.reviewer-name {
  font-weight: bold;
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  width: 100%;
  font-size: 16px;
}

i.fa-google {
  font-size: 1.75rem;
  color: #4285F4;
}

#owl-reviews-carousel i.fas {
  font-size: 54px;
  color: #C4C4C4;
}

#owl-reviews-carousel .fa-quote-left {
  margin-bottom: 20px;
}

.google-review-stars {
  width: 100%;
  text-align: center
}

.google-review-stars i {
  font-size: .75rem !important;
  margin-right: 2px !important;
  color: #fcb316 !important;
}

.google-review-stars img {
  display:block !important;
  width:125px !important;
  margin: 0px auto !important;
}

.google-review-body {
  width: 100%;
  font-size: 18px;
}

.review-date {
  color: #DDD;
  font-style: italic;
}

#owl-logo-carousel .owl-stage {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}

#owl-logo-carousel .owl-item {
  float: none;
  margin-left: 50px;
  margin-right: 50px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  #owl-logo-carousel .owl-item {
    margin-right: 10px;
    margin-left: 10px;
  }
}