@font-face {
  font-family: BruumFY-Bold;
  src: url("../fonts/BruumFY-Bold.otf");
}
@font-face {
  font-family: BruumFY-Regular;
  src: url("../fonts/BruumFY-Regular.otf");
}
@font-face {
  font-family: BruumFY-Light;
  src: url("../fonts/BruumFY-Light.otf");
}

:root {
  --brand: #821314;
  --brand-dark: #5c0d0e;
  --ink: #1b1210;
  --charcoal: #201819;
  --cream: #faf7f4;
  --paper: #f4efe9;
  --gold: #b08d57;
  --font-display: "BruumFY-Light", serif;
  --font-body: "BruumFY-Light", sans-serif;
}

* {
  box-sizing: border-box;
}

img {
  background: white;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--ink);
}

a {
  text-decoration: none;
}
.text-accent {
  color: var(--brand);
}

.btn-accent {
  background: var(--brand);
  border: 1px solid var(--brand);
  color: #fff;
  border-radius: 10px;
  padding: 0.65rem 1.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-accent:hover {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

/* Small red rule used throughout */
.mini-rule {
  display: inline-block;
  width: 52px;
  height: 2px;
  background: var(--brand);
  vertical-align: middle;
}
.mini-rule-light {
  background: var(--brand);
}

/* ================= HEADER TOP (logo + event info) ================= */
.header-top {
  background: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
}
.logo-img {
  max-height: auto;
  width: 100%;
  background-color: transparent;
}
.logo-fallback {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.logo-marks {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 0.8;
  background: linear-gradient(
    180deg,
    #1b1210 0%,
    #1b1210 55%,
    var(--brand) 55%,
    var(--brand) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -6px;
  transform: skewX(-8deg);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.05;
}
.logo-text small {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--brand);
  font-weight: 600;
}

.event-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.35;
  margin: 0;
}
.event-title .mini-rule {
  margin-bottom: 6px;
  width: 60px;
}
.event-date {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--brand);
  font-size: 0.92rem;
}

/* ================= MAIN NAV (red links) ================= */
.main-nav {
  background: #fff;
  padding: 10px 0;
}
.main-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.15rem 1.25rem;
}
.main-links .nav-link {
  color: var(--brand);
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.4;
  letter-spacing: 0.01em;
  padding: 0.25rem 0 !important;
}
.main-links .nav-link:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}
.main-links .sep {
  color: var(--brand);
  opacity: 0.45;
  font-size: 1.05rem;
  line-height: 1.4;
}

/* ================= SUB NAV (black bar) ================= */
.sub-nav {
  background: var(--ink);
  color: #fff;
  padding: 12px 0;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}
.sub-nav .list-inline-item {
  margin-right: 0.75rem;
}
.sub-nav .list-inline-item.sep {
  margin-right: 0.75rem;
}
.sub-nav .list-inline-item:last-child {
  margin-right: 0;
}
.sub-nav a {
  color: #fff;
}
.sub-nav a:hover {
  color: var(--gold);
}
.sub-nav .sep {
  color: #fff;
  opacity: 0.55;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 585px;
  color: #fff;
  overflow: hidden;
  margin: auto;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10, 6, 5, 0.72) 30%,
    rgba(10, 6, 5, 0.35) 55%,
    rgba(10, 6, 5, 0) 75%
  );
  z-index: 1;
}
.hero .container {
  z-index: 2;
  padding: 3.5rem 1rem;
  padding-top: 8rem;
}

.hero-title {
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  font-weight: 700;
  line-height: 1.28;
  margin-top: 0.9rem;
  margin-bottom: 0;
  color: white;
}

/* ================= ESTABLISHED BAR ================= */
.established-bar {
  background: var(--ink);
  color: #fff;
  padding: 1rem 0;
}
.established-text {
  font-size: 0.88rem;
  color: #e9e0dd;
}
.counter {
  font-size: 0.88rem;
  color: #e9e0dd;
  margin-left: 0.35rem;
}

/* ================= STATS STRIP ================= */
.stats-strip {
  background: #fff;
  padding: 3rem 0 2.5rem;
}
.stats-strip img {
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
  margin: auto 0;
  background-color: white;
  margin: 0 auto;
  height: 28px;
  object-fit: contain;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand);
}
.stat-label {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #6d6260;
  margin-top: 0.1rem;
}

/* ================= FEATURE ICONS ================= */
.feature-icons {
  margin: 1rem 0 3.4rem;
  background: #fff;
}
.feature-icons img {
  height: 78px;
  object-fit: contain;
  padding-left: 10px;
  margin-bottom: 1rem;
}
.feature-col {
  border-left: 1px solid var(--brand);
}
.feature-col:first-child {
  border-left: none;
}
@media (max-width: 767.98px) {
  .feature-col {
    border-left: none;
  }
}

.feature-icons p {
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 0;
}

/* ================= CELEBRATING ================= */
/* .celebrating-text {
  background: radial-gradient(
    120% 140% at 0% 0%,
    #241a18 0%,
    #120b0a 60%,
    #0d0908 100%
  );
}
.celebrating-text .section-title {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  margin: 0.8rem 0 1.1rem;
}
.celebrating-img {
  object-fit: cover;
  min-height: 380px;
} */
.celebrating {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.celebrating-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Dark gradient overlay so text stays readable over the image */
.celebrating-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #0d0908 0%,
    rgba(13, 9, 8, 0.85) 35%,
    rgba(13, 9, 8, 0.3) 65%,
    rgba(13, 9, 8, 0) 100%
  );
  z-index: 1;
}

.celebrating-text {
  position: relative;
  z-index: 2;
}

.celebrating .section-title {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  margin: 0.8rem 0 1.1rem;
}

/* ================= SECTION HEADING ================= */
.section-heading {
  margin-bottom: 2rem;
}
.section-heading h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.flanked-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}

.eyebrow-flanked {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.showcase-heading {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ================= DAYS SECTION ================= */
.days-section {
  padding: 5rem 0;
  background: #fff;
}
.day-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 2px;
  overflow: hidden;
  height: 100%;
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.day-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}
.day-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.day-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.day-card-body {
  padding: 1.4rem 2.4rem;
}
.day-label {
  display: inline-block;
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.4rem;
}
.day-card-body h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-size: 1.2rem;
}
.day-card-body p {
  font-size: 0.85rem;
  color: #6d6260;
  margin: 0;
}

/* ================= BANNER STRIP ================= */
.banner-strip {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 0.8rem 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: 1.1rem;
}

.banner-title {
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1.2;
  max-width: 760px;
  color: #fff;
}
.banner-copy {
  max-width: 560px;
  color: #dfe2ea;
  font-size: 1rem;
}

/* ================= INSPIRES / IMAGE-CAPTION GRID ================= */
.inspires-section {
  background: #fff;
  padding-top: 4.5rem;
}
.inspires-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}
.caption-cell {
  padding-left: 0.5rem;
}
.caption-cell .mini-rule {
  display: block;
  width: 78px;
  height: 3px;
  margin-bottom: 1.6rem;
}
.caption-text {
  font-family: var(--font-display);
  font-size: 0.98rem;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  color: var(--brand);
  font-weight: 700;
}
.caption-text span {
  display: block;
}
.bottom {
  justify-content: end;
  display: flex;
  flex-direction: column;
}
/* ================= VOICES SECTION ================= */
.voices-section {
  padding: 3rem 0;
  background: #e6e5e5;
  margin-top: 1rem;
}
.voice-avatar {
  width: 100%;
  max-width: 190px;
  aspect-ratio: 1/1;
  border-radius: 6px;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.voice-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.voices-section h6 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.03em;
}
.read-more {
  color: var(--brand);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.read-more:hover {
  color: var(--brand-dark);
}

/* ================= SHOWCASE SECTION ================= */
.showcase-section {
  padding: 5rem 0 1rem;
  background: #fff;
}
.showcase-row img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* ================= FOOTER ================= */
.site-footer {
  background: black;
  color: #fff;
}
.footer-top-rule {
  height: 5px;
  background: var(--brand);
}
.footer-heading {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
  display: block;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer ul li {
  font-size: 0.94rem;
  margin-bottom: 0.4rem;
  color: #fff;
  font-weight: 400;
}
.site-footer ul li i {
  color: #fff;
  margin-right: 0.2rem;
  font-size: 0.72rem;
  font-weight: 600;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-logo img {
  background-color: transparent;
  font-size: 2rem;
}
.footer-logo .logo-text {
  color: #fff;
  font-size: 1.6rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid #4a3d3a;
  border-radius: 50%;
  background-color: #fff;
  color: black;
  margin-right: 0.5rem;
  font-size: 1rem;
  transition: all 0.2s ease;
}
.social-icons a:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.subscribe-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: #fff;
  text-transform: none;
}
.subscribe-form {
  max-width: 640px;
}
.subscribe-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  background: inherit;
  /* border: 1px solid #4a3d3a; */
  border-radius: 2px;
  color: #000;
  font-size: 1rem;
  flex-shrink: 0;
}
.subscribe-form .form-control {
  background: #c2c2c2;
  border: 1px solid #4a3d3a;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 2px;
}
.subscribe-form .form-control:focus {
  background: #2a201e;
  color: #fff;
  border-color: var(--brand);
  box-shadow: none;
}

.footer-bottom-rule {
  height: 1px;
  background: #fff;
  margin-top: 1rem;
}
.footer-bottom {
  background: black;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
  .celebrating-img {
    min-height: 260px;
  }
  .event-title {
    font-size: 0.95rem;
  }
}

@media (max-width: 767.98px) {
  .header-top .row {
    text-align: center;
  }
  .header-top .brand {
    display: flex;
    justify-content: center;
  }
  .logo-img {
    max-height: 64px;
  }
  .stat-number {
    font-size: 1.5rem;
  }
  .banner-strip {
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    padding: 0.7rem 1.2rem;
  }
  .inspires-img {
    aspect-ratio: 4/3;
  }
  .caption-cell {
    padding-left: 0;
    margin-bottom: 0.5rem;
  }
}
/* ===== Leadership week banner ===== */
.week-banner {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  margin-top: 64px;
}
.week-banner::before {
  content: "";
  position: absolute;
  inset: 0;
}
.week-banner .container-xl {
  position: relative;
  z-index: 2;
}
.week-banner .logo-img {
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  margin: auto;
}
.week-banner-caption {
  font-size: 1.2rem;
  color: #fff;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
.logo2 {
  flex-direction: column;
  justify-content: center;
}
/* ===== Footer ===== */
footer {
  background: black;
  color: #c7cbd6;
  padding: 60px 0 0;
}
footer h6 {
  color: red;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: "bruumFont", "Poppins", sans-serif;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer ul li {
  margin-bottom: 1px;
  font-size: 1rem;
}
footer ul li i {
  color: #fff;
  margin-right: 8px;
  font-size: 0.7rem;
}
footer a {
  color: #fff;
}
footer a:hover {
  color: white;
}
.subscribe-row {
  margin-top: 15px;
  padding: 10px 0;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.subscribe-icon {
  color: #fff;
}
.subscribe-label {
  font-weight: 700;
  color: #fff;
}
.subscribe-input {
  background: var(--muted2);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  border-radius: 6px;
  padding: 0.6rem 1rem;
  /* width: 100%; */
  min-width: 480px;
}
.subscribe-input::placeholder {
  color: #9aa0b2;
}
.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: black;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}
.copyright-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
  color: #fff;
  margin-top: 10px;
  font-family: "bruumFont", "Poppins", sans-serif;
}
.btn-gold {
  background: red;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.7rem 1.9rem;
  border: none;
  transition: 0.2s;
  display: inline-block;
  font-family: "bruumFont", "Poppins", sans-serif;
}
.btn-gold:hover {
  background: red;
  color: var(--navy);
}

/* Nav spacing/type scale down on smaller screens */
@media (max-width: 991.98px) {
  .main-links {
    gap: 0.15rem 0.9rem;
  }
  .main-links .nav-link {
    font-size: 1.05rem;
  }
  .sub-nav {
    font-size: 0.98rem;
  }
  .sub-nav .list-inline-item,
  .sub-nav .list-inline-item.sep {
    margin-right: 0.5rem;
  }
}
@media (max-width: 575.98px) {
  .main-links {
    gap: 0.1rem 0.6rem;
  }
  .main-links .nav-link {
    font-size: 0.95rem;
  }
  .sub-nav {
    font-size: 0.9rem;
    padding: 10px 0;
  }
  .sub-nav .list-inline-item,
  .sub-nav .list-inline-item.sep {
    margin-right: 0.35rem;
  }
}
