/* =============================================================
   1. HERO
   ------------------------------------------------------------
   All hero pieces live here together. Structure on the page:
     <div class="align-center">
        <img class="hero-logo" ...>
        <div class="hero-eyebrow">Save the Date</div>
        <div class="hero-date">March 14–16, 2027</div>
        <div class="hero-location">New venue: ...</div>
        <div class="hero-status">Registration coming soon</div>  (optional)
     </div>
   ============================================================= */

/* Hero logo — controls size site-visible. To resize, change max-width only.
   Do NOT add width/height attributes on the <img> — this class handles it. */
.hero-logo {
  display: block;
  width: 100%;
  max-width: 700px;      /* desktop — a little larger than your 650 */
  height: auto;
  margin: 0 auto 1.5rem;
}
@media (max-width: 768px) {
  .hero-logo {
    max-width: 480px;    /* mobile — raised from 260px */
  }
}

/* Eyebrow — small label above the date ("SAVE THE DATE") */
.hero-eyebrow {
  color: #B8860B;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .hero-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
  }
}

/* Date — the big italic date line, with gold underline accent */
.hero-date {
  color: #1C58A6;
  font-size: 2.2em;
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 30px;
  font-style: italic;
  text-align: center;
  line-height: 1em;
}
.hero-date::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #FFD700, #B8860B);
  margin: 15px auto 0;
}
@media (max-width: 768px) {
  .hero-date {
    font-size: 1.4em;
    margin-top: 10px;
  }
}

/* Location — venue/city line under the date */
.hero-location {
  color: #666666;
  font-size: 1.2em;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}

/* Status — small navy line for registration state ("Registration coming soon") */
.hero-status {
  color: #1C58A6;
  font-weight: 700;
  text-align: center;
  margin: 0.5rem 0 0;
}

/* OPTIONAL hero bottom border.
   Adds a solid navy 4px line across the bottom of the hero block to
   separate it from the content below. USE ONLY when there is no blue
   page-banner under the hero (the banner already provides separation).
   Wrap the hero in <div class="bc-hero align-center"> to activate. */
.bc-hero {
  position: relative;
  padding: 1rem 1rem 2.5rem;
  margin-bottom: 2rem;
}
.bc-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: #1C58A6;
}

/* City sub-label (small italic under a name/heading, e.g. venue) */
.city-title {
  font-size: 0.7em;
  font-style: italic;
  font-weight: 400;
}


/* =============================================================
   2. KEYNOTE SPEAKER
   ============================================================= */
.bc-keynote-container {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 3rem 2rem 0 2rem;
}
.bc-keynote-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;   /* 67/33 split */
  gap: 3rem;
  align-items: start;
}
.bc-keynote-content {
  text-align: left;
  margin-top: 2.5rem;
}
.bc-keynote-name {
  font-size: 2rem;
  font-weight: 700;
  color: #1C58A6;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}
.bc-keynote-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #B8860B;
  margin: 0 0 1.5rem 0;
  font-style: italic;
}
.bc-keynote-image {
  width: 265px;
  height: 265px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.4);
  border: 5px solid #B8860B;
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
  justify-self: end;
}
.bc-keynote-image:hover {
  transform: rotate(0deg) scale(1.03);
}
.bc-keynote-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 968px) {
  .bc-keynote-container {
    padding: 2rem 2rem 0 2rem;
  }
  .bc-keynote-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .bc-keynote-image {
    width: 250px;
    height: 250px;
    justify-self: center;
    margin: 0 auto;
    order: -1;
  }
  .bc-keynote-content {
    text-align: center;
    margin-top: 0;
  }
  .bc-keynote-name {
    font-size: 1.5rem;
    text-align: center;
  }
  .bc-keynote-title {
    font-size: 1.1rem;
    text-align: center;
  }
}


/* =============================================================
   3. GRID PHOTOS
   ------------------------------------------------------------
   Reusable image box for two-column grids (What to Expect, Venue).
   Put class on the <img> itself. Both grid images use this so they
   render as identical sibling boxes. object-fit crops to fill.
   ============================================================= */
.grid-photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .grid-photo {
    height: 300px;
  }
}


/* =============================================================
   4. GRID TITLE / SECTION HEADINGS
   ============================================================= */
.grid-title {
  font-weight: 800;
  color: #1C58A6;
  text-transform: uppercase;
  font-size: 1.8em;
  margin-bottom: 15px;
  line-height: 1.3;
  border-top: 3px solid #B8860B;   /* gold line above the text */
  padding-top: 10px;
  display: inline-block;           /* border matches text width */
  text-align: center;
}
@media (max-width: 800px) {
  .grid-title {
    font-size: 1.4em;
    margin-bottom: 12px;
  }
}


/* =============================================================
   5. TESTIMONIALS
   ============================================================= */
.testimonial-section {
  max-width: 1100px;
  margin: 20px auto 50px;
  padding: 0 20px;
}
.testimonial-section h2 {
  color: #003d7a;
  text-align: center;
  font-size: 2em;
  margin-bottom: 40px;
}
.testimonial-stacked {
  background: #f8f9fa;
  padding: 28px 35px;
  border-radius: 4px;
  border-left: 5px solid #003d7a;
  margin-bottom: 25px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.testimonial-stacked:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 16px rgba(0, 61, 122, 0.12);
}
.testimonial-stacked p {
  font-size: 1.05em;
  font-style: italic;
  color: #333;
  margin: 0 0 15px 0;
  line-height: 1.7;
}
.testimonial-stacked cite {
  display: block;
  font-style: normal;
  font-size: 0.9em;
  color: #003d7a;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .testimonial-stacked {
    padding: 25px 20px;
  }
  .testimonial-stacked p {
    font-size: 1.05em;
  }
  .testimonial-section h2 {
    font-size: 1.6em;
  }
}
@media screen and (max-width: 480px) {
  .testimonial-stacked {
    padding: 20px 15px;
    border-left-width: 4px;
  }
}


/* =============================================================
   6. REGISTRATION + RATES + PAYMENT   — DORMANT (opens October)
   ------------------------------------------------------------
   Kept for when registration opens. Not used on the current
   save-the-date page.
   ============================================================= */
.bg-reg {
  background: linear-gradient(135deg, #0F3A6E 0%, #1C58A6 50%, #2E7DD1 100%);
  color: #ffffff;
  margin: auto;
  font-size: 1.1em;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.gold-accent-bar {
  height: 6px;
  background: linear-gradient(90deg, #FFD700 0%, #B8860B 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.bg-reg-content {
  text-align: center;
  padding: 55px;
}
.bg-reg h2 {
  color: #ffffff;
  font-size: 1.7em;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.bg-reg h3, .bg-reg h4, .bg-reg h5 {
  color: #FFD700;
  font-size: 1.4em;
  font-style: italic;
  font-weight: 600;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .bg-reg h2 {
    font-size: 1.4em;
  }
  .bg-reg h3, .bg-reg h4, .bg-reg h5 {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.5;
  }
}
.bg-reg a:link, .bg-reg a:visited {
  color: #ffffff !important;
  text-decoration: underline;
}
.bg-reg a:hover {
  color: #CC8800 !important;
  text-decoration: none;
}
.bg-reg a.btn-register, .bg-reg a.btn-register:link, .bg-reg a.btn-register:visited {
  background-color: #ffffff !important;
  color: #0F3A6E !important;
  padding: 10px 25px !important;
  font-size: 1em !important;
  font-weight: bold !important;
  border: none !important;
  border-radius: 5px !important;
  text-decoration: none !important;
  display: inline-block !important;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 25px 0 15px 0;
  line-height: 1.2;
}
.bg-reg a.btn-register:hover {
  background-color: #f0f0f0 !important;
  color: #082447 !important;
  transform: translateY(-2px);
  text-decoration: none !important;
}
.bg-reg a.btn-register:active {
  transform: translateY(0);
}
.registration-combined {
  max-width: 1000px;
  margin: 40px auto;
  padding: 35px 50px;
  background: #ffffff;
}
.registration-combined h3 {
  color: #1C58A6;
  font-size: 1.6em;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}
.deadline-banner {
  background: #FFF9E6;
  border-left: 4px solid #B8860B;
  padding: 12px 20px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
}
.deadline-banner strong {
  color: #B8860B;
}
.reg-rates-compact {
  display: flex;
  justify-content: space-around;
  background: #E8F1FA;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 25px;
  text-align: center;
}
.rate-item {
  flex: 1;
}
.rate-item strong {
  display: block;
  color: #1C58A6;
  font-size: 1.1em;
  margin-bottom: 5px;
}
.rate-item .price {
  font-size: 1.4em;
  color: #1C58A6;
  font-weight: bold;
}
.payment-methods-compact {
  border-top: 2px solid #E0E0E0;
  padding-top: 25px;
}
.payment-methods-compact h4 {
  color: #1C58A6;
  font-size: 1.2em;
  margin-bottom: 15px;
  font-weight: bold;
}
.payment-block-compact {
  padding: 12px 15px;
  background: #f8f9fa;
  border-left: 4px solid #B8860B;
  margin-bottom: 12px;
  line-height: 1.5;
  font-size: 0.95em;
}
.payment-block-compact strong {
  color: #1C58A6;
}
.payment-block-compact a {
  color: #1C58A6;
  font-weight: 600;
}
.payment-block-compact a:hover {
  color: #CC8800;
}
.payment-note-compact {
  background: #FFF9E6;
  border-left: 4px solid #B8860B;
  padding: 10px 15px;
  margin-top: 15px;
  font-style: italic;
  font-size: 0.9em;
}
.payment-note-compact strong {
  color: #B8860B;
}
@media (max-width: 768px) {
  .registration-combined {
    padding: 25px 20px;
  }
  .reg-rates-compact {
    flex-direction: column;
    gap: 15px;
  }
}


/* =============================================================
   7. AGENDA BAND   — DORMANT (opens October)
   ============================================================= */
.program-agenda-section {
  background: #F7F5F2;
  padding: 40px 0;
  margin: 40px 0;
  text-align: center;
}
.program-agenda-section h2 {
  color: #1C58A6;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.program-agenda-section h3 {
  color: #333333;
  font-size: 1.3em;
  font-weight: normal;
  margin-bottom: 20px;
}
.agenda-details {
  padding: 20px 30px;
  max-width: 800px;
  margin: 0 auto;
}
.agenda-details p {
  color: #333333;
  font-size: 1.05em;
  line-height: 1.6;
  margin-bottom: 10px;
}
.agenda-details p:last-child {
  margin-bottom: 0;
}
.agenda-details em {
  color: #666666;
  font-size: 0.95em;
}
.agenda-cta {
  margin-bottom: 10px;
}
.agenda-cta a {
  color: #1C58A6;
  font-weight: 600;
  text-decoration: none !important;
  font-size: 1.1em;
}
.agenda-cta a::after {
  content: " \2192";
  font-size: 1.3em;
  font-weight: bold;
  margin-left: 5px;
}
.agenda-cta a:hover {
  color: #CC8800;
}
@media (max-width: 768px) {
  .program-agenda-section {
    padding: 30px 20px;
  }
  .program-agenda-section h2 {
    font-size: 1.5em;
  }
  .agenda-details {
    padding: 18px 20px;
    max-width: 100%;
  }
}


/* =============================================================
   8. SCHOLARSHIP   — DORMANT (opens October)
   ============================================================= */
.scholarship-logo {
  max-width: 200px;
  margin: 0 auto 2rem;
  display: block;
  border: 1px solid #E0E0E0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
}
.scholarship-inner {
  margin: 5rem auto;
  line-height: 1.6;
  color: #333333;
}
.btn-scholarship {
  background-color: #B8860B;
  color: #ffffff !important;
  padding: 12px 35px;
  font-size: 1.1em;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  text-decoration: none !important;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 1rem;
}
.btn-scholarship:hover {
  background-color: #9B7E00 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  text-decoration: none !important;
}


/* =============================================================
   9. POLICIES / CONTACT / NEUTRAL BAND   — DORMANT (opens October)
   ============================================================= */
.policies-section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 35px 50px;
  background: #f8f9fa;
}
.policies-section h3 {
  color: #1C58A6;
  font-size: 1.5em;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}
.policy-block {
  background: #ffffff;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 4px solid #1C58A6;
}
.policy-block:last-child {
  margin-bottom: 0;
}
.policy-block strong {
  color: #1C58A6;
  display: block;
  margin-bottom: 10px;
  font-size: 1.1em;
}
.policy-block p {
  line-height: 1.6;
  margin: 0;
}
.policy-block a {
  color: #1C58A6;
  font-weight: 600;
}
.policy-block a:hover {
  color: #CC8800;
}
@media (max-width: 768px) {
  .policies-section {
    padding: 25px 20px;
  }
}
.bg-neutral {
  background-color: #FAFAF8;
  padding: 50px 60px;
  margin: auto;
  min-height: 350px;
}
.bg-neutral h2, .bg-neutral h3 {
  color: #B8860B;
}
@media (max-width: 768px) {
  .bg-neutral {
    padding: 30px 20px;
  }
}
.contact-section {
  max-width: 1100px;
  margin: 30px auto 40px;
  padding: 30px 45px;
  background: #ffffff;
  text-align: center;
}
.contact-section h3 {
  color: #1C58A6;
  font-size: 1.5em;
  margin-bottom: 20px;
  font-weight: bold;
}
.contact-section p {
  margin-bottom: 15px;
  line-height: 1.6;
}
.contact-section p:last-child {
  margin-bottom: 0;
}
.contact-section strong {
  color: #1C58A6;
}
.contact-section a {
  color: #1C58A6;
  font-weight: 600;
}
.contact-section a:hover {
  color: #CC8800;
}
@media (max-width: 768px) {
  .contact-section {
    padding: 25px 20px;
    text-align: left;
  }
}

/* Inner grid padding helper (used by dormant sections) */
.inner-grid {
  padding: 3rem 4rem;
  width: 85%;
}
@media (max-width: 768px) {
  .inner-grid {
    width: 100%;
    padding: 2rem 1.5rem;
  }
}


/* =============================================================
   10. MAIN-STYLE OVERRIDES
   ============================================================= */
ul li {
  line-height: 1.4em;
}
ol li {
  line-height: 1.3em;
}
.sf_1col_1_100 a:link {
  color: #1C58A6;
  font-weight: 600 !important;
}
.sf_1col_1_100 a:visited {
  color: #1C58A6;
}
.sf_1col_1_100 a:hover {
  color: #E8A317;
}
p {
  line-height: 1.3em;
}


/* =============================================================
   11. NAV + WRAPPERS  (shared page furniture)
   ============================================================= */
section {
  width: 85%;
  margin: 0 auto;
  padding: 30px 0;
}
section ul {
  list-style: none;
  text-align: center;
  margin: auto;
}
section ul li {
  display: inline-block;
}
section ul li a {
  display: inline-block;
  padding: 15px;
  text-decoration: none;
  color: #022873 !important;
  text-transform: uppercase;
  margin: 0 10px;
  font-weight: 700;
  font-size: 1.2em;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  section ul li a {
    font-size: 1.3em;
  }
}
section ul li a, section ul li a:after, section ul li a:before {
  transition: all .5s;
}
section.stroke ul li a, section.fill ul li a {
  position: relative;
}
section.stroke ul li a:after, section.fill ul li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: '.';
  color: transparent;
  background: #F22727;
  height: 2px;
}
section.stroke ul li a:hover:after {
  width: 100%;
}
section.fill ul li a {
  transition: all 2s;
}
section.fill ul li a:after {
  text-align: left;
  content: '.';
  margin: 0;
  opacity: 0;
}
section.fill ul li a:hover {
  z-index: 1;
}
section.fill ul li a:hover:after {
  z-index: -10;
  animation: fill 1s forwards;
  -webkit-animation: fill 1s forwards;
  -moz-animation: fill 1s forwards;
  opacity: 1;
}

.wrapperA {
  width: 80%;
  margin: auto;
  padding: 20px 10px;
}
.wrapperB {
  width: 90%;
  margin: auto;
  padding-top: 1.6em;
}