/* ==========================================================================
   APCC BRAND STYLESHEET — apcc-brand-style.css
   Reusable variables + section styling for the APCC Annual Conference 2026
   page and any future APCC pages.

   HOW TO LOAD IN WORDPRESS (pick one):
   1. Appearance → Customize → Additional CSS (paste contents), or
   2. Enqueue in the theme:
        wp_enqueue_style('apcc-brand', get_stylesheet_directory_uri()
          . '/css/apcc-brand-style.css', [], '1.0');
   ========================================================================== */

/* ---------- 1. Brand variables (single source of truth) ---------- */
:root{
  --apcc-teal:       var(--accent-cyan, #3ec6e0);
  --apcc-orange:     var(--accent-yellow, #ffc107);
  --apcc-deep-green: var(--primary-dark, #0d3d1a);
  --apcc-green:      var(--primary, #1b8c3b);
  --apcc-charcoal:   var(--text-dark, #1a1a1a);
  --apcc-mint:       var(--primary-light, #eaf6f0);
  --apcc-page-bg:    var(--bg-light, #f8faf9);
  --apcc-white:      #FFFFFF;

  --apcc-font: var(--apcc-font-family);
  --apcc-radius: 16px;
  --apcc-maxw: var(--site-wrapper-width, 1400px);
}

/* ---------- 2. Base ---------- */
.apcc-page{
  font-family: var(--apcc-font);
  color: var(--apcc-charcoal);
  line-height: 1.65;
  font-size: 17px;
  background: var(--apcc-white);
}
.apcc-container{ max-width: var(--apcc-maxw); margin: 0 auto; padding: 0 var(--site-wrapper-gutter, 2rem); }
.apcc-page .apcc-container{ position: relative; z-index: 1; }
.apcc-page section{ padding: 72px 0; }

/* ---------- 3. Buttons ---------- */
.apcc-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease;
}
.apcc-btn:focus-visible{ outline: 3px solid var(--apcc-orange); outline-offset: 3px; }
.apcc-btn:hover{ transform: translateY(-2px); box-shadow: 0 12px 26px rgba(13,61,26,.24); }
.apcc-btn--primary{
  background: linear-gradient(135deg, var(--apcc-green), var(--apcc-deep-green));
  color: var(--apcc-white);
  border: 2px solid rgba(255,255,255,.2);
}
.apcc-btn--secondary{
  background: transparent; color: var(--apcc-white);
  border: 2px solid var(--apcc-white);
}
.apcc-btn--secondary:hover{ background: var(--apcc-white); color: var(--apcc-deep-green); }

/* ---------- 4. Hero ---------- */
.apcc-hero{
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--apcc-deep-green) 0%, var(--apcc-green) 100%);
  color: var(--apcc-white);
  padding: 150px 0 82px;
  text-align: center;
}
.apcc-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(62,198,224,.22), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(255,193,7,.16), transparent 26%),
    url('data:image/svg+xml,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="white" opacity="0.12"/></svg>');
  pointer-events: none;
}
.apcc-hero__eyebrow{
  text-transform: uppercase; letter-spacing: 2px;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.86); margin-bottom: 14px;
}
.apcc-hero h1{
  font-size: clamp(38px, 5.2vw, 62px);
  font-weight: 800; line-height: 1.12; margin-bottom: 10px;
  color: var(--apcc-white);
}
.apcc-hero__rule{
  width: 120px; height: 4px; border: 0;
  background: var(--apcc-orange);
  margin: 18px auto 22px;
}
.apcc-hero__theme{
  font-size: clamp(18px, 2.4vw, 23px); font-weight: 500;
  max-width: 800px; margin: 0 auto 28px; color: rgba(255,255,255,.9);
}
.apcc-hero__meta{
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
  font-weight: 600; font-size: 17px; margin-bottom: 36px;
}
.apcc-hero__meta span{
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  padding: 8px 20px; border-radius: 50px;
}
.apcc-hero__cta{ display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------- 5. Stats row ---------- */
.apcc-stats{ background: var(--apcc-page-bg); padding: 0 !important; }
.apcc-stats__grid{
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; transform: translateY(-42px);
}
.apcc-stat{
  background: var(--apcc-white);
  border: 1px solid rgba(27,140,59,.14);
  border-radius: var(--apcc-radius);
  box-shadow: 0 14px 34px rgba(13,61,26,.12);
  text-align: center; padding: 28px 16px 22px;
}
.apcc-stat__number{
  display: block; font-size: clamp(32px, 4vw, 44px);
  font-weight: 800; color: var(--apcc-green); line-height: 1;
}
.apcc-stat__label{
  display: block; margin-top: 8px;
  text-transform: uppercase; letter-spacing: 2px;
  font-size: 13px; font-weight: 700; color: var(--apcc-deep-green);
}

/* ---------- 6. Content sections ---------- */
.apcc-section{ padding: 72px 0 !important; }
.apcc-section--mint{ background: var(--apcc-mint); }
.apcc-section h2{
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 700; color: var(--apcc-deep-green); margin-bottom: 22px;
}
.apcc-section__rule{
  display: none;
}
.apcc-section p{ max-width: none; margin-bottom: 16px; }

/* ---------- 7. Cards + bullet lists ---------- */
.apcc-cards{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 18px;
}
.apcc-card{
  min-width: 0;
  background: var(--apcc-white);
  border-radius: var(--apcc-radius);
  border: 0;
  padding: 26px 24px;
  box-shadow: none;
}
.apcc-card h3{ color: var(--apcc-deep-green); font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.apcc-card ul, .apcc-list{ list-style: none; padding: 0; margin: 0; }
.apcc-list{ max-width: none; }
.apcc-card li, .apcc-list li{ padding-left: 24px; position: relative; margin-bottom: 8px; }
.apcc-card li::before, .apcc-list li::before{
  content: ""; position: absolute; left: 0; top: 9px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--apcc-orange);
}

/* ---------- 8. Next steps band ---------- */
.apcc-next{
  background: linear-gradient(135deg, var(--apcc-green), var(--apcc-deep-green));
  color: var(--apcc-white); text-align: center; padding: 72px 0 !important;
}
.apcc-next h2{ color: var(--apcc-white); font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 14px; }
.apcc-next p{ max-width: 680px; margin: 0 auto 28px; color: #D8F5F1; }

/* ---------- 8a. WordPress theme integration ---------- */
.page-template-template-conference .site-main{
  padding-bottom: 0;
  margin-bottom: 0;
}
.page-template-template-conference .apcc-page{
  margin-bottom: 0;
}

/* ---------- 9. Footer ---------- */
.apcc-footer{
  background: var(--apcc-deep-green);
  color: var(--apcc-mint);
  padding: 38px 0; font-size: 15px;
}
.apcc-footer__inner{
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.apcc-footer a{ color: var(--apcc-white); text-decoration: none; font-weight: 600; }
.apcc-footer a:hover{ color: var(--apcc-orange); }
.apcc-footer__tags span{ margin-left: 14px; color: #9FD9D2; }

/* ---------- 10. Responsive ---------- */
@media (max-width: 760px){
  .apcc-page section{ padding: 46px 0; }
  .apcc-stats{ padding: 0 !important; }
  .apcc-stats__grid{ grid-template-columns: 1fr; transform: translateY(-30px); gap: 16px; }
  .apcc-hero{ padding: 108px 0 58px; }
  .apcc-hero__eyebrow{ letter-spacing: 1.2px; font-size: 11px; }
  .apcc-hero h1{ font-size: clamp(32px, 11vw, 42px); }
  .apcc-hero__meta{ font-size: 15px; margin-bottom: 28px; }
  .apcc-btn{ width: min(100%, 300px); }
  .apcc-section{ padding: 50px 0 !important; }
  .apcc-cards{ grid-template-columns: 1fr; gap: 16px; }
  .apcc-next{ padding: 54px 0 !important; }
  .apcc-footer__inner{ flex-direction: column; text-align: center; }
  .apcc-footer__tags span{ margin: 0 7px; }
}

/* ---------- 11. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce){
  .apcc-btn{ transition: none; }
  .apcc-btn:hover{ transform: none; }
}
