@import url("Common/styles.css");

/* ============================================================
   GLOBAL
   ============================================================ */

body {
  margin: 0;
  font-family: "Montserrat", system-ui;
  background: var(--bg-color);
  color: var(--text-color);
}

h1,
h2,
h3 {
  font-family: "Poppins", sans-serif;
}

section {
  width: 100%;
}

/* ============================================================
   HERO
   ============================================================ */

#hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    160deg,
    rgba(46, 18, 84, 0.88) 0%,
    rgba(102, 36, 133, 0.75) 50%,
    rgba(30, 10, 60, 0.92) 100%
  );
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 0 20px;
  overflow: hidden;
}

#hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/relay_for_life.jpeg");
  background-size: cover;
  background-position: center;
  filter: blur(5px);
  transform: scale(1.05);
  z-index: -1;
}

/* Grain texture overlay */
#hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
  z-index: 1;
}

.hero-eyebrow {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-family: "Montserrat", system-ui;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 1s ease 0.1s both;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 780px;
  animation: fadeUp 1.2s ease 0.2s both;
}

.hero-title {
  font-size: clamp(72px, 12vw, 140px);
  font-weight: 600;
  line-height: 0.92;
  margin: 0 0 32px;
  color: white;
  letter-spacing: -2px;
}

.hero-title-line {
  display: block;
}
.hero-title-line.italic {
  font-style: italic;
  color: rgba(215, 182, 234, 0.95);
}

.hero-subtitle {
  font-size: 17px;
  font-weight: 300;
  opacity: 0.82;
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: all 0.25s cubic-bezier(0.22, 0.9, 0.23, 1);
  font-family: "Montserrat", system-ui;
}

.hero-btn.primary {
  background: white;
  color: var(--main-color);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.hero-btn.primary:hover {
  background: var(--tert-accent-color, #e8d5f5);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.hero-btn.secondary {
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: white;
}

.hero-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-3px);
}

/* Ribbon decoration */
.hero-ribbon {
  position: absolute;
  z-index: 2;
  right: 8vw;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  opacity: 0.35;
  animation: fadeUp 1.5s ease 0.6s both;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, var(--bg-color, #f5eeff), transparent);
  pointer-events: none;
  z-index: 3;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   STATS STRIP
   ============================================================ */

.stats-strip {
  background: var(--bg-color);
  padding: 0;
  margin-top: -1px;
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 40px 24px;
  border-bottom: 1px solid rgba(102, 36, 133, 0.1);
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.stat-val {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-color, #662485);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-desc {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sec-accent-color, #9b59b6);
  opacity: 0.7;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(102, 36, 133, 0.15);
  flex-shrink: 0;
}

/* ============================================================
   SECTION FADE
   ============================================================ */

.section-fade {
  position: relative;
  height: 60px;
  margin-top: -60px;
  pointer-events: none;
  z-index: 2;
}

/* ============================================================
   COUNTDOWN
   ============================================================ */

#countdown-section {
  padding: 100px 20px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 80% 70% at 50% -5%,
      rgba(185, 143, 214, 0.28) 0%,
      transparent 65%
    ),
    var(--bg-color);
}

#countdown-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(102, 36, 133, 0.08) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

#countdown-section > * {
  position: relative;
  z-index: 1;
}

.countdown-title {
  font-family: "Poppins", sans-serif;
  font-size: 38px;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 52px;
  color: var(--main-color);
  letter-spacing: -0.5px;
}

#countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.time-box {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(185, 143, 214, 0.25);
  padding: 32px 40px;
  border-radius: 24px;
  min-width: 120px;
  box-shadow:
    0 2px 4px rgba(70, 40, 110, 0.04),
    0 10px 30px rgba(70, 40, 110, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.time-box:hover {
  transform: translateY(-6px);
  box-shadow:
    0 6px 12px rgba(70, 40, 110, 0.06),
    0 20px 50px rgba(70, 40, 110, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.time-box span {
  font-family: "Poppins", sans-serif;
  font-size: 60px;
  font-weight: 700;
  display: block;
  color: var(--accent-color, #662485);
  letter-spacing: -3px;
  line-height: 1;
}

.time-box p {
  margin: 10px 0 0;
  font-size: 10px;
  color: var(--sec-accent-color, #9b59b6);
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.flip {
  animation: flipAnim 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes flipAnim {
  0% {
    transform: rotateX(90deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0);
    opacity: 1;
  }
}

.final-glow {
  animation: pulseGlow 1.5s infinite alternate;
}

@keyframes pulseGlow {
  from {
    box-shadow:
      0 2px 4px rgba(70, 40, 110, 0.04),
      0 8px 24px rgba(70, 40, 110, 0.09),
      inset 0 1px 0 rgba(255, 255, 255, 0.95);
  }
  to {
    box-shadow:
      0 4px 8px rgba(102, 36, 133, 0.1),
      0 12px 36px rgba(102, 36, 133, 0.22),
      0 0 0 4px rgba(185, 143, 214, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 1);
  }
}

.live-container {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.live-fade-in {
  opacity: 1;
}
.countdown-fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* ============================================================
   UPDATES
   ============================================================ */

#updates-section,
.updates-dark {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  padding: 80px 0 100px;
  box-sizing: border-box;
  background: var(--bg-color);
  font-family: "Montserrat", system-ui;
}

#updates-section .countdown-title {
  padding: 0 20px;
}

.updates-viewport {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0 64px;
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.nav-btn {
  width: 44px;
  height: 44px;
  background: white;
  border: 1.5px solid rgba(102, 36, 133, 0.15);
  color: var(--accent-color);
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
  box-shadow: 0 4px 14px rgba(70, 40, 110, 0.1);
  transition: all 0.2s ease;
  pointer-events: auto;
}

.nav-btn:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-52%);
  box-shadow: 0 6px 20px rgba(102, 36, 133, 0.25);
}

.nav-btn.left {
  left: 12px;
}
.nav-btn.right {
  right: 12px;
}

.updates-mask {
  overflow: hidden;
  flex: 1;
  padding: 40px 0 50px;
  position: relative;
  box-sizing: border-box;
}

.updates-track {
  display: flex;
  gap: 20px;
  align-items: center;
  transition: transform 600ms cubic-bezier(0.22, 0.9, 0.23, 1);
  will-change: transform;
  padding: 8px 0 12px;
  box-sizing: border-box;
}

.update-card {
  flex: 0 0 360px;
  height: 440px;
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(185, 143, 214, 0.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-sizing: border-box;
  box-shadow:
    0 4px 16px rgba(70, 40, 110, 0.06),
    0 1px 3px rgba(70, 40, 110, 0.04);
  transition:
    transform 300ms cubic-bezier(0.22, 0.9, 0.23, 1),
    box-shadow 300ms;
}

.update-card .thumb {
  height: 50%;
  overflow: hidden;
  background-color: var(--tert-accent-color, #e8d5f5);
  border-radius: 20px 20px 0 0;
}

.update-card .thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.update-card:hover .thumb img {
  transform: scale(1.05);
}

.update-card .meta {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.update-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--main-color);
  font-family: "Poppins", sans-serif;
}

.update-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #6b7280;
  flex: 1;
}

.update-card time {
  font-size: 11px;
  color: var(--sec-accent-color, #9b59b6);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.importance-1 {
  border-top: 3px solid var(--tert-accent-color, #e8d5f5);
}
.importance-2 {
  border-top: 3px solid var(--sec-accent-color, #9b59b6);
}
.importance-3 {
  border-top: 3px solid var(--accent-color, #662485);
}

.update-card.center {
  transform: scale(1.03) translateY(-12px);
  z-index: 60;
  box-shadow:
    0 24px 60px rgba(70, 40, 110, 0.15),
    0 4px 12px rgba(70, 40, 110, 0.08);
}

@media (max-width: 1200px) {
  .update-card {
    flex: 0 0 calc((100vw - 60px - 120px) / 3);
    height: 420px;
  }
}
@media (max-width: 900px) {
  .update-card {
    flex: 0 0 300px;
    height: 400px;
  }
}
@media (max-width: 700px) {
  .update-card {
    flex: 0 0 88vw;
    height: 400px;
  }
  .updates-viewport {
    padding: 0 12px;
  }
  .nav-btn {
    display: none;
  }
}

/* ============================================================
   ABOUT
   ============================================================ */

#about-section {
  background: var(--bg-color);
  padding: 0;
}

.about-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 80px;
  justify-content: center;
  padding: 100px 40px;
}

.about-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-color, #662485);
  font-weight: 500;
  margin: 0 0 12px;
  font-family: "Montserrat", system-ui;
}

.about-text h2 {
  font-family: "Poppins", sans-serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 24px;
  color: var(--main-color);
}

.about-text h2 em {
  font-style: italic;
  color: var(--accent-color, #662485);
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin: 0 0 16px;
  max-width: 480px;
  font-weight: 300;
}

.about-image img {
  width: 440px;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(70, 40, 110, 0.14);
  display: block;
}

@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    gap: 40px;
  }
  .about-image img {
    width: 100%;
    max-width: 440px;
  }
}

/* ============================================================
   REVIEWS
   ============================================================ */

#reviews-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-color) 0%, #ede3f5 100%);
  text-align: center;
  overflow: hidden;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 600;
  font-style: italic;
  color: var(--main-color);
  margin-bottom: 8px;
}

.lazy-scrolling-container {
  width: 100%;
  overflow: hidden;
  margin-top: 48px;
}

/* ============================================================
   NAVBAR
   ============================================================ */

#navbarcontainer {
  margin: 0;
  padding: 0;
}
nav {
  margin: 0;
}
#hero-section {
  margin-top: -10px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 600px) {
  .hero-title {
    font-size: 64px;
  }
  .stats-inner {
    flex-wrap: wrap;
    gap: 20px;
  }
  .stat-divider {
    display: none;
  }
  .time-box {
    padding: 22px 28px;
    min-width: 90px;
  }
  .time-box span {
    font-size: 44px;
  }
}

p {
    font-family: 'Montserrat';
}

h1, h2, h3 {
    font-family: 'Poppins';
}

/* ════════════════════════════════════════
   OAKRIDGE BRAND COLOR SYSTEM
   Source: BRAND_COLOURS Oakridge PPTX

   PRIMARY (main visual weight):
     Teal     #2FCCD5  — big fills, CTAs, hero panels
     Navy     #1B3A66  — dark sections, body text, headings
     Yellow   #FDB813  — bold accent, headings on dark bg

   SUPPORTING:
     Light blue  #B4EBF5  — soft card fills, hover tints
     Peach       #EFB19F  — warm decorative detail
     Red         #FE3650  — urgency / importance markers

   PURPLE — accent/detail only (NOT backgrounds or primary fills)
════════════════════════════════════════ */

:root {
    --bg-color:          #f0fbfc;          /* near-white with teal hint */
    --main-color:        #1b3a66;          /* navy */
    --accent-color:      #2fccd5;          /* teal — primary brand */
    --sec-accent-color:  #fdb813;          /* yellow — bold pop on dark */
    --tert-accent-color: #b4ebf5;          /* light blue — soft fills */
    --support-peach:     #efb19f;          /* peach — warm detail */
    --support-red:       #fe3650;          /* red — urgency */
    --text-color:        #1b3a66;

    /* Purple — use sparingly as detail/accent only */
    --purple-accent:     #662485;
    --purple-light:      #d7b6ea;
}

body {
    margin: 0;
    font-family: 'Montserrat', system-ui;
    background: var(--bg-color);
    color: var(--text-color);
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--main-color);
}

section {
    width: 100%;
}

/* ════════════════════════════════════════
   SECTION DIVIDER
════════════════════════════════════════ */
.section-fade {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--tert-accent-color), transparent);
    opacity: 0.6;
}

/* ════════════════════════════════════════
   COUNTDOWN SECTION
   Light bg — teal numbers, navy labels
════════════════════════════════════════ */
#countdown-section {
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(180,235,245,0.50) 0%, transparent 70%),
        linear-gradient(170deg, #e8f9fb 0%, #f0fbfc 55%, #fffef5 100%);
    padding: 80px 20px;
    text-align: center;
}

.countdown-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 40px;
    letter-spacing: -0.3px;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.time-box {
    background: white;
    border: 2px solid var(--tert-accent-color);
    border-radius: 20px;
    padding: 28px 36px 20px;
    min-width: 110px;
    box-shadow:
        0 4px 24px rgba(47, 204, 213, 0.12),
        0 1px 4px rgba(27, 58, 102, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.time-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(47, 204, 213, 0.25);
}

.time-box span {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: var(--accent-color);
    display: block;
    line-height: 1;
}

.time-box p {
    margin: 8px 0 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--main-color);
    opacity: 0.55;
}

/* Final-day glow — yellow, not purple */
#countdown.final-glow .time-box {
    border-color: var(--sec-accent-color);
    box-shadow: 0 0 24px rgba(253, 184, 19, 0.40);
}

/* Flip animation */
@keyframes flip {
    0%   { transform: scaleY(1); }
    50%  { transform: scaleY(0.6); opacity: 0.5; }
    100% { transform: scaleY(1); }
}
.flip { animation: flip 0.35s ease; }

.countdown-fade-out {
    animation: fadeOut 0.6s ease forwards;
}
@keyframes fadeOut {
    to { opacity: 0; transform: translateY(-12px); }
}

.live-container {
    padding: 20px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.live-container.live-fade-in {
    opacity: 1;
    transform: translateY(0);
}
.live-container h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 12px;
}
.live-container p {
    color: var(--main-color);
    font-size: 1.1rem;
    margin-bottom: 28px;
}
.live-login-btn {
    display: inline-block;
    padding: 14px 36px;
    background: var(--accent-color);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 20px rgba(47, 204, 213, 0.40);
    transition: all 0.25s;
}
.live-login-btn:hover {
    background: var(--main-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(27, 58, 102, 0.30);
}

/* ════════════════════════════════════════
   UPDATES SECTION
   Dark navy bg — brand's signature dark slide look
   White text, teal card borders, yellow time stamp
════════════════════════════════════════ */
#updates-section {
    background:
        radial-gradient(ellipse 90% 60% at 50% 100%, rgba(47,204,213,0.08) 0%, transparent 65%),
        linear-gradient(160deg, #1b3a66 0%, #112b50 60%, #0d2240 100%);
    padding: 80px 0 100px;
    overflow: hidden;
}

#updates-section .countdown-title {
    color: white;
    text-shadow: 0 2px 12px rgba(0,0,0,0.20);
    margin-bottom: 48px;
}

#updates-section .countdown-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    background: var(--sec-accent-color);
    border-radius: 2px;
    margin: 10px auto 0;
}

.updates-viewport {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 32px;
}

.updates-mask {
    flex: 1;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.updates-track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    padding: 16px 0 24px;
    cursor: grab;
    user-select: none;
}
.updates-track:active { cursor: grabbing; }

.update-card {
    flex-shrink: 0;
    width: 300px;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(180,235,245,0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s, background 0.4s, border-color 0.4s;
    backdrop-filter: blur(8px);
    opacity: 0.70;
    scale: 0.95;
}

.update-card.center {
    opacity: 1;
    scale: 1;
    background: rgba(255,255,255,0.11);
    border-color: rgba(47,204,213,0.50);
    box-shadow: 0 12px 48px rgba(0,0,0,0.35), 0 0 0 1px rgba(47,204,213,0.20);
}

.update-card .thumb {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: rgba(180,235,245,0.06);
}
.update-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.update-card.center .thumb img { transform: scale(1.04); }

.update-card .meta {
    padding: 18px 20px 20px;
}
.update-card .meta h3 {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin: 0 0 8px;
    line-height: 1.35;
}
.update-card .meta p {
    font-size: 13px;
    color: rgba(255,255,255,0.68);
    margin: 0 0 12px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.update-card .meta time {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--sec-accent-color);
    opacity: 0.9;
}

/* Importance color top-border tags — uses brand red/yellow/teal */
.update-card.importance-1 { border-top: 3px solid var(--support-red); }
.update-card.importance-2 { border-top: 3px solid var(--sec-accent-color); }
.update-card.importance-3 { border-top: 3px solid var(--accent-color); }

.nav-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(180,235,245,0.25);
    background: rgba(255,255,255,0.07);
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    backdrop-filter: blur(6px);
}
.nav-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.1);
}

/* ════════════════════════════════════════
   ABOUT SECTION
   White/light-teal bg — navy heading, yellow underline
════════════════════════════════════════ */
#about-section {
    background:
        radial-gradient(ellipse 60% 50% at 95% 50%, rgba(180,235,245,0.45) 0%, transparent 65%),
        linear-gradient(135deg, #ffffff 0%, #f0fbfc 100%);
    padding: 100px 40px;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 280px;
}

.about-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--main-color);
    margin: 0 0 24px;
}

/* Yellow brand underline — exactly as in the PPTX slides */
.about-text h2::after {
    content: '';
    display: block;
    width: 52px;
    height: 4px;
    background: var(--sec-accent-color);
    border-radius: 2px;
    margin-top: 12px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(27, 58, 102, 0.72);
    margin: 0 0 16px;
}

.about-image {
    flex: 1;
    min-width: 260px;
    max-width: 500px;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow:
        0 24px 64px rgba(27, 58, 102, 0.14),
        0 4px 16px rgba(47, 204, 213, 0.10);
    display: block;
}

/* ════════════════════════════════════════
   CONTACT SECTION
   Dark navy — matching brand dark slides
   Yellow CTA button, teal focus rings
════════════════════════════════════════ */
#contact-section {
    padding: 100px 20px;
    background:
        radial-gradient(ellipse 70% 80% at 50% 110%, rgba(47,204,213,0.10) 0%, transparent 65%),
        linear-gradient(160deg, #1b3a66 0%, #112b50 60%, #0d2240 100%);
    color: white;
    text-align: center;
}

#contact-section .countdown-title {
    color: white;
    text-shadow: 0 2px 12px rgba(0,0,0,0.20);
}

#contact-section .countdown-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    background: var(--sec-accent-color);
    border-radius: 2px;
    margin: 10px auto 0;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 72px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.contact-info {
    max-width: 280px;
    text-align: left;
}

.contact-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--tert-accent-color);
}

.contact-info p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.78);
    margin: 0 0 6px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 340px;
}

.contact-form input,
.contact-form textarea {
    padding: 13px 16px;
    border: 1.5px solid rgba(180,235,245,0.22);
    background: rgba(255,255,255,0.07);
    border-radius: 12px;
    font-family: 'Montserrat', system-ui;
    font-size: 14px;
    color: white;
    backdrop-filter: blur(6px);
    transition: border-color 0.2s, background 0.2s;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.42);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-color);
    background: rgba(47,204,213,0.08);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Yellow submit button — on-brand for dark sections */
.contact-form button {
    padding: 14px;
    border: none;
    background: var(--sec-accent-color);
    color: var(--main-color);
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    font-family: 'Montserrat', system-ui;
    transition: all .25s;
    box-shadow: 0 4px 16px rgba(253,184,19,0.30);
}

.contact-form button:hover {
    background: white;
    color: var(--main-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

/* ════════════════════════════════════════
   SHARED BUTTON STYLES
════════════════════════════════════════ */
.hero-btn {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all .25s;
    letter-spacing: 0.3px;
    display: inline-block;
}

/* Primary = teal (core brand color) */
.hero-btn.primary {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 4px 20px rgba(47, 204, 213, 0.40);
}

.hero-btn.primary:hover {
    background: var(--main-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(27, 58, 102, 0.30);
}

/* Secondary = outlined navy */
.hero-btn.secondary {
    background: transparent;
    color: var(--main-color);
    border: 2px solid var(--main-color);
}

.hero-btn.secondary:hover {
    background: var(--main-color);
    color: white;
    transform: translateY(-3px);
}

/* ============================================================
   OAKRIDGE BRAND COLOR SYSTEM
   Teal #2FCCD5 — primary (CTAs, highlights, numbers)
   Navy #1B3A66 — dark sections, headings, body text
   Yellow #FDB813 — bold accent on dark backgrounds
   Light blue #B4EBF5 — soft fills, card tints
   Peach #EFB19F — warm decorative detail
   Red #FE3650 — urgency / importance markers
   Purple — accent/detail ONLY (never backgrounds)
   ============================================================ */

@import url("Common/styles.css");

:root {
  --bg-color:          #f0fbfc;
  --main-color:        #1b3a66;
  --accent-color:      #2fccd5;
  --sec-accent-color:  #fdb813;
  --tert-accent-color: #b4ebf5;
  --support-peach:     #efb19f;
  --support-red:       #fe3650;
  --text-color:        #1b3a66;
  --purple-accent:     #662485;
  --purple-light:      #d7b6ea;
}

/* ============================================================
   GLOBAL RESET
   ============================================================ */

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Montserrat", system-ui;
  background: var(--bg-color);
  color: var(--text-color);
}

h1, h2, h3 {
  font-family: "Poppins", sans-serif;
  color: var(--main-color);
}

p { font-family: "Montserrat", system-ui; }
section { width: 100%; }

/* ============================================================
   NAVBAR
   ============================================================ */

#navbarcontainer { margin: 0; padding: 0; position: relative; z-index: 100; }
nav { margin: 0; }

/* ============================================================
   HERO SECTION
   Full-screen with brand navy/teal overlay instead of purple
   ============================================================ */

#hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  overflow: hidden;
  margin-top: -20px;
}

/* Blurred background image */
#hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/relay_for_life.jpeg") center / cover no-repeat;
  filter: blur(4px);
  transform: scale(1.05);
  z-index: -2;
  
}

/* Navy overlay — replaces old purple gradient */
#hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 26, 54, 0.84) 0%,
    rgba(27, 58, 102, 0.74) 50%,
    rgba(6, 18, 40, 0.90) 100%
  );
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 780px;
  animation: fadeUp 1.2s ease 0.2s both;
}


.hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.7;
  color: white;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, var(--bg-color), transparent);
  pointer-events: none;
  z-index: 3;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.hero-btn {
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.03em;
  transition: all 0.25s cubic-bezier(0.22, 0.9, 0.23, 1);
  font-family: "Montserrat", system-ui;
  display: inline-block;
}

/* On hero (dark bg): teal fill */
.hero-btn.primary {
  background: var(--accent-color);
  color: white;
  box-shadow: 0 4px 24px rgba(47, 204, 213, 0.45);
}
.hero-btn.primary:hover {
  background: white;
  color: var(--main-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(47, 204, 213, 0.30);
}

/* On hero (dark bg): outlined white */
.hero-btn.secondary {
  border: 1.5px solid rgba(255,255,255,0.5);
  color: white;
  background: transparent;
}
.hero-btn.secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.85);
  transform: translateY(-3px);
}

/* ============================================================
   STATS STRIP
   White bar below hero, teal numbers, navy labels
   ============================================================ */

.stats-strip {
  background: white;
  border-bottom: 1px solid rgba(180,235,245,0.6);
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 24px;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.stat-val {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-desc {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--main-color);
  opacity: 0.55;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: var(--tert-accent-color);
  flex-shrink: 0;
}

/* ============================================================
   SECTION FADE
   ============================================================ */

.section-fade {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tert-accent-color), transparent);
  opacity: 0.8;
  margin: 0;
}

/* ============================================================
   COUNTDOWN SECTION
   ============================================================ */

#countdown-section {
  padding: 100px 20px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(180,235,245,0.55) 0%, transparent 70%),
    linear-gradient(170deg, #e8f9fb 0%, #f0fbfc 55%, #fffef5 100%);
}

#countdown-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(47,204,213,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

#countdown-section > * { position: relative; z-index: 1; }

.countdown-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 52px;
  color: var(--main-color);
  letter-spacing: -0.5px;
}

#countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.time-box {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border: 1.5px solid var(--tert-accent-color);
  padding: 32px 40px;
  border-radius: 24px;
  min-width: 120px;
  box-shadow:
    0 2px 4px rgba(27,58,102,0.04),
    0 10px 30px rgba(47,204,213,0.10),
    inset 0 1px 0 white;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.time-box:hover {
  transform: translateY(-6px);
  box-shadow:
    0 6px 12px rgba(27,58,102,0.06),
    0 20px 50px rgba(47,204,213,0.18),
    inset 0 1px 0 white;
}

.time-box span {
  font-family: "Poppins", sans-serif;
  font-size: clamp(48px, 6vw, 64px);
  font-weight: 700;
  display: block;
  color: var(--accent-color);
  letter-spacing: -3px;
  line-height: 1;
}

.time-box p {
  margin: 10px 0 0;
  font-size: 10px;
  color: var(--main-color);
  opacity: 0.55;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 600;
}

#countdown.final-glow .time-box {
  border-color: var(--sec-accent-color);
  animation: pulseGlow 1.5s infinite alternate;
}

@keyframes pulseGlow {
  from { box-shadow: 0 0 12px rgba(253,184,19,0.25); }
  to   { box-shadow: 0 0 36px rgba(253,184,19,0.50), 0 0 0 4px rgba(253,184,19,0.12); }
}

@keyframes flip {
  0%   { transform: rotateX(90deg); opacity: 0; }
  100% { transform: rotateX(0); opacity: 1; }
}
.flip { animation: flip 0.35s cubic-bezier(0.23, 1, 0.32, 1); }

.countdown-fade-out { opacity: 0; transition: opacity 0.5s ease; }

.live-container {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.live-container.live-fade-in { opacity: 1; transform: translateY(0); }
.live-container h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; color: var(--accent-color); margin-bottom: 12px; }
.live-container p { color: var(--main-color); font-size: 1.1rem; margin-bottom: 28px; }

.live-login-btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--accent-color);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 20px rgba(47,204,213,0.40);
  transition: all 0.25s;
}
.live-login-btn:hover { background: var(--main-color); transform: translateY(-3px); }

/* ============================================================
   UPDATES SECTION
   Navy bg — yellow title underline, teal card accents
   ============================================================ */

#updates-section,
.updates-dark {
  width: 100%;
  padding: 80px 0 100px;
  box-sizing: border-box;
  background:
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(47,204,213,0.07) 0%, transparent 65%),
    linear-gradient(160deg, #1b3a66 0%, #112b50 60%, #0d2240 100%);
  font-family: "Montserrat", system-ui;
  overflow: hidden;
}

#updates-section .countdown-title,
.updates-dark .countdown-title {
  color: white;
  text-shadow: 0 2px 12px rgba(0,0,0,0.20);
  margin-bottom: 48px;
  padding: 0 20px;
}

#updates-section .countdown-title::after,
.updates-dark .countdown-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: var(--sec-accent-color);
  border-radius: 2px;
  margin: 10px auto 0;
}

.updates-viewport {
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0 64px;
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.nav-btn {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(180,235,245,0.25);
  color: white;
  font-weight: 700;
  border-radius: 50%;
  cursor: pointer;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(6px);
  transition: all 0.2s ease;
  pointer-events: auto;
}
.nav-btn:hover { background: var(--accent-color); border-color: var(--accent-color); transform: translateY(-52%); }
.nav-btn.left  { left: 12px; }
.nav-btn.right { right: 12px; }

.updates-mask {
  overflow: hidden;
  flex: 1;
  padding: 40px 0 50px;
  position: relative;
  box-sizing: border-box;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.updates-track {
  display: flex;
  gap: 20px;
  align-items: center;
  transition: transform 600ms cubic-bezier(0.22, 0.9, 0.23, 1);
  will-change: transform;
  padding: 8px 0 12px;
  cursor: grab;
  user-select: none;
}
.updates-track:active { cursor: grabbing; }

.update-card {
  flex: 0 0 360px;
  height: 440px;
  background: rgba(255,255,255,0.07);
  border-radius: 20px;
  border: 1px solid rgba(180,235,245,0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: transform 300ms, box-shadow 300ms, opacity 300ms, scale 300ms;
  opacity: 0.72;
  scale: 0.96;
}

.update-card.center {
  opacity: 1;
  scale: 1;
  transform: translateY(-10px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(47,204,213,0.45);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(47,204,213,0.25);
  z-index: 60;
}

.update-card .thumb {
  height: 50%;
  overflow: hidden;
  background: rgba(180,235,245,0.08);
}
.update-card .thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.update-card.center .thumb img { transform: scale(1.05); }

.update-card .meta {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.update-card .meta h3 { margin: 0; font-size: 16px; font-weight: 600; color: white; font-family: "Poppins", sans-serif; line-height: 1.35; }
.update-card .meta p  { margin: 0; font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.65); flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.update-card .meta time { font-size: 11px; color: var(--sec-accent-color); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.9; }

.importance-1 { border-top: 3px solid var(--support-red); }
.importance-2 { border-top: 3px solid var(--sec-accent-color); }
.importance-3 { border-top: 3px solid var(--accent-color); }

@media (max-width: 1200px) { .update-card { flex: 0 0 calc((100vw - 180px) / 3); height: 420px; } }
@media (max-width: 900px)  { .update-card { flex: 0 0 300px; height: 400px; } }
@media (max-width: 700px)  {
  .update-card { flex: 0 0 88vw; height: 400px; }
  .updates-viewport { padding: 0 12px; }
  .nav-btn { display: none; }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */

#about-section {
  background:
    radial-gradient(ellipse 60% 50% at 95% 50%, rgba(180,235,245,0.45) 0%, transparent 65%),
    linear-gradient(135deg, #ffffff 0%, #f0fbfc 100%);
  padding: 0;
}

.about-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 80px;
  justify-content: center;
  padding: 100px 40px;
}

.about-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-color);
  font-weight: 500;
  margin: 0 0 12px;
}

.about-text h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0;
  color: var(--main-color);
}

.about-text h2::after {
  content: '';
  display: block;
  width: 52px;
  height: 4px;
  background: var(--sec-accent-color);
  border-radius: 2px;
  margin: 14px 0 24px;
}

.about-text h2 em { font-style: italic; color: var(--accent-color); }

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(27,58,102,0.68);
  margin: 0 0 16px;
  max-width: 480px;
  font-weight: 300;
}

.about-image img {
  width: 440px;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(27,58,102,0.12), 0 4px 16px rgba(47,204,213,0.08);
  display: block;
}

@media (max-width: 900px) {
  .about-container { flex-direction: column; gap: 40px; }
  .about-image img { width: 100%; max-width: 440px; }
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */

#contact-section {
  padding: 100px 20px;
  background:
    radial-gradient(ellipse 70% 80% at 50% 110%, rgba(47,204,213,0.10) 0%, transparent 65%),
    linear-gradient(160deg, #1b3a66 0%, #112b50 60%, #0d2240 100%);
  color: white;
  text-align: center;
}

#contact-section .countdown-title {
  color: white;
  text-shadow: 0 2px 12px rgba(0,0,0,0.20);
}

#contact-section .countdown-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: var(--sec-accent-color);
  border-radius: 2px;
  margin: 10px auto 0;
}

#contact-section p { color: rgba(255,255,255,0.75); }

.carousel {
  display: flex;
  gap: 24px;
  width: max-content;
  align-items: center; /* cards size to their own content only */
}

.review-card {
  min-width: 300px;
  max-width: 300px;
  height: auto;             /* natural height — no stretching, no clipping */
  background: white;
  padding: 32px 28px;
  border-radius: 20px;
  border: 1px solid rgba(185, 143, 214, 0.18);
  box-shadow: 0 4px 20px rgba(70, 40, 110, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.review-card p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin: 0;
  font-style: italic;
  /* no line-clamp — full quote always visible */
}

.review-card h4 {
  margin: 14px 0 0;
  color: var(--accent-color, #2fccd5);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-family: "Montserrat", system-ui;
  font-style: normal;
}