:root {
  /* Brand colors derived from your logo */
  --navy: #000030;
  /* deep navy */
  --blue: #0050c0;
  /* bright blue */
  --orange: #f09010;
  /* handshake orange */
  --red: #c03040;
  /* ring/text red accent */
  --ink: #0b1220;
  /* near-black text */
  --bg: #f6f8ff;
  /* soft background */
  --card: #ffffff;
  --muted: #5b667a;
  --line: #e5e7ef;

  --radius: 18px;
  --shadow: 0 12px 28px rgba(2, 6, 23, 0.10);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Aleo", serif;
  background: var(--bg);
  color: var(--ink);
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

/* ===== Header ===== */
.site-header {
  position: relative;
  /* was sticky */
  top: auto;
  /* no need to track scroll */
  padding: 18px 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

/* === HEADER SIZE TWEAK === */

/* ===== HERO (Trophy Showcase) ===== */
.hero {
  position: relative;
  margin-top: 12px;
  /* keeps it snug under header */
  overflow: hidden;
  border-radius: 18px;
}

.hero-media {
  position: relative;
  height: clamp(320px, 52vh, 560px);
  border-radius: 18px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.05);
  animation: heroZoom 1.1s ease-out both;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 20% 40%, rgba(0, 0, 0, .35), transparent 60%),
    linear-gradient(to bottom, rgba(0, 0, 0, .10), rgba(0, 0, 0, .55));
}

.hero-content {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  padding: 26px 16px;
  z-index: 2;
}

.hero-card {
  max-width: 740px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 18px 18px 16px;
  color: #fff;
  transform: translateY(10px);
  opacity: 0;
  animation: heroRise 0.9s ease-out 0.2s both;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .25);
}

.hero-badge {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .3px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .28);
  border: 1px solid rgba(255, 255, 255, .16);
  margin-bottom: 12px;
}

.hero-card h1 {
  margin: 0 0 8px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
}

.hero-card p {
  margin: 0 0 14px;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, .92);
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Buttons (safe, won’t break your existing ones) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  background: rgba(0, 0, 0, .22);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, .30);
}

.btn.primary {
  background: rgba(132, 0, 18, .82);
  /* dark red vibe */
  border-color: rgba(255, 255, 255, .22);
}

.btn.primary:hover {
  background: rgba(132, 0, 18, .92);
}

/* Premium shine sweep */
.hero-shine {
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, .22) 48%, transparent 60%);
  transform: translateX(-40%) rotate(0deg);
  animation: heroShine 3.8s ease-in-out 1.2s infinite;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: .55;
}

/* Slight parallax float (subtle, looks pro) */
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 320px at 80% 30%, rgba(255, 255, 255, .08), transparent 60%);
  animation: heroFloat 6s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes heroZoom {
  from {
    transform: scale(1.14);
    opacity: 0;
  }

  to {
    transform: scale(1.06);
    opacity: 1;
  }
}

@keyframes heroRise {
  from {
    transform: translateY(18px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes heroShine {
  0% {
    transform: translateX(-45%) rotate(0deg);
  }

  55% {
    transform: translateX(45%) rotate(0deg);
  }

  100% {
    transform: translateX(45%) rotate(0deg);
  }
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* Mobile spacing */
@media (max-width: 600px) {
  .hero-content {
    padding: 18px 12px;
  }

  .hero-card {
    padding: 16px;
  }
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce) {

  .hero-img,
  .hero-card,
  .hero-shine,
  .hero-media::after {
    animation: none !important;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  min-width: 240px;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.25));
}

.brand .title {
  line-height: 1.1;
}

.brand .title strong {
  font-size: 18px;
  letter-spacing: .2px;
}

.brand .title span {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  opacity: .85;
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 14px;
  padding: 9px 10px;
  border-radius: 12px;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.join-btn {
  background: linear-gradient(90deg, var(--orange), #ffb24a);
  color: #1b1202;
  font-weight: 900;
  padding: 10px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.join-btn:hover {
  transform: translateY(-1px);
}

/* ===== Page ===== */
.page {
  padding: 26px 0 10px;
}

.hero {
  padding: 26px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: 34px;
}

.hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 16px;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 14px;
  font-weight: 900;
  border: 1px solid var(--line);
}

.btn.primary {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.btn.secondary {
  background: #fff;
  color: var(--navy);
}

.media-box {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 2px dashed #c7d4ff;
  background: linear-gradient(180deg, #ffffff, #f7f9ff);
  color: var(--muted);
  min-height: 240px;
  text-align: center;
  padding: 14px;
}

.section {
  padding: 18px 0 28px;
}

.section h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.kpi {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.kpi strong {
  font-size: 22px;
  color: var(--navy);
}

.kpi span {
  color: var(--muted);
  font-weight: 700;
}

/* Team cards */
.person {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 80, 192, .12), rgba(240, 144, 16, .12));
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--navy);
}

.role {
  display: inline-block;
  margin-top: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: rgba(0, 80, 192, .10);
  color: var(--blue);
  border: 1px solid rgba(0, 80, 192, .18);
}

/* Achievements timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event {
  border-left: 4px solid rgba(240, 144, 16, .9);
  padding-left: 12px;
}

.event .when {
  font-weight: 900;
  color: var(--navy);
}

.event .what {
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.55;
}

/* ===== Footer ===== */
.site-footer {
  margin-top: 24px;

  border-top: 3px solid rgba(192, 48, 64, 0.85);
  /* red accent like logo ring */
  background: #6b0f1a;
  /* dark red / maroon */
  color: rgba(255, 255, 255, 0.9);
}

.footer-inner {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}

.site-footer h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
}

/* Responsive */
@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .brand {
    min-width: auto;
  }
}

/* ===== Home page extras (animations + gallery) ===== */

.hero-anim {
  position: relative;
  overflow: hidden;
}

.floating-ball {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: radial-gradient(circle at 30% 30%, #fff, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.08));
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
  animation: floaty 6.5s ease-in-out infinite;
  opacity: 0.95;
}

.floating-ball::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 2px dashed rgba(240, 144, 16, 0.75);
  /* orange accent */
}

.floating-ball.b1 {
  top: 18px;
  left: 18px;
  animation-duration: 7.2s;
}

.floating-ball.b2 {
  bottom: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  animation-duration: 6.1s;
}

.floating-ball.b3 {
  top: 54%;
  left: 10%;
  width: 38px;
  height: 38px;
  animation-duration: 5.4s;
}

@keyframes floaty {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(10px, -12px) rotate(8deg);
  }
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 86px;
  background: linear-gradient(90deg, rgba(240, 144, 16, 0.22), rgba(0, 80, 192, 0.22));
  clip-path: polygon(0 60%, 10% 55%, 20% 62%, 30% 52%, 40% 60%, 50% 50%, 60% 58%, 70% 48%, 80% 56%, 90% 50%, 100% 58%, 100% 100%, 0 100%);
  opacity: 0.9;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature {
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 80, 192, 0.18), transparent 60%);
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  background: rgba(0, 80, 192, 0.10);
  border: 1px solid rgba(0, 80, 192, 0.18);
  color: var(--blue);
}

.gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 14px;
}

.gallery .shot {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 170px;
  position: relative;
}

.gallery .shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery .shot .cap {
  position: absolute;
  left: 12px;
  bottom: 12px;
  right: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  backdrop-filter: blur(6px);
}

.pulse-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(192, 48, 64, 0.95);
  box-shadow: 0 0 0 0 rgba(192, 48, 64, 0.55);
  animation: pulse 1.8s infinite;
  margin-right: 8px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(192, 48, 64, 0.55);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(192, 48, 64, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(192, 48, 64, 0);
  }
}

@media (max-width: 920px) {
  .feature-strip {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
  }
}

/* ===== Achievements: big image left, title+text right ===== */

.ach-wrap {
  padding: 18px 0 28px;
}

.ach-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* One row */
.ach-row {
  display: grid;
  grid-template-columns: 2.6fr 1.2fr;
  /* image bigger than text */
  gap: 28px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

/* Left side: big image box */
.ach-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, rgba(0, 80, 192, 0.10), rgba(240, 144, 16, 0.10));
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.ach-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right side: big title + optional lines */
.ach-text h2 {
  margin: 0 0 10px;
  font-size: 30px;
  color: var(--ink);
  line-height: 1.25;
}

.ach-text .meta {
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 14px;
}

.ach-text p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

/* Mobile */
@media (max-width: 900px) {
  .ach-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ach-text h2 {
    font-size: 22px;
  }

  .ach-media {
    min-height: 220px;
  }
}

/* ===== Achievements: EXACT screenshot style ===== */

.achievement-row {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 40px;
  align-items: center;
  margin: 60px 0;
}

.achievement-row img {
  width: 100%;
  height: auto;
  display: block;
}

.achievement-title {
  font-family: "Aleo", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
}

/* Mobile */
@media (max-width: 900px) {
  .achievement-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .achievement-title {
    font-size: 22px;
  }
}

/* ===== Programs: title + image row + description ===== */

.program-section {
  margin-bottom: 60px;
}

.program-section h2 {
  margin: 0 0 16px;
  font-size: 26px;
  color: var(--navy);
}

.program-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

.program-img {
  min-height: 180px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(135deg,
      rgba(0, 80, 192, 0.15),
      rgba(240, 144, 16, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.program-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-section p {
  margin: 0;
  max-width: 900px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

/* 2-image variant */
.program-gallery.two {
  grid-template-columns: repeat(2, 1fr);
}

/* Mobile */
@media (max-width: 900px) {

  .program-gallery,
  .program-gallery.two {
    grid-template-columns: 1fr;
  }

  .program-section h2 {
    font-size: 22px;
  }
}

/* === GLOBAL TYPOGRAPHY SCALE === */
html {
  font-size: 18px;
  /* default is usually 16px */
}

body {
  font-family: "Aleo", serif;
  line-height: 1.65;
}

.admin-nav {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: 12px;
}

.admin-btn {
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  color: #111;
}

.admin-btn:hover {
  opacity: 0.9;
}

.admin-btn.primary {
  border: none;
}

/* ===== DCA Feature Icons Row (like screenshot #1) ===== */
.dca-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 10px;
}

.dca-feature {
  text-align: center;
  padding: 22px 16px;
}

.dca-feature-icon {
  width: 92px;
  height: 92px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  background: rgba(0, 128, 96, 0.10);
  /* soft mint */
  color: rgba(0, 128, 96, 1);
}

.dca-feature-icon svg {
  width: 36px;
  height: 36px;
}

.dca-feature h3 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.2px;
}

.dca-feature p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 1024px) {
  .dca-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .dca-feature-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== DCA About + Stats (like screenshot #2) ===== */
.dca-about-wrap {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 28px;
  align-items: start;
}

.dca-about-text p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 18px;
}

.dca-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 8px;
}

/* ===== FIXED STATS LAYOUT ===== */
.dca-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  /* 👈 important spacing */
  margin-top: 20px;
}

.dca-stat {
  text-align: center;
  min-width: 160px;
  /* 👈 prevents number collision */
}

.dca-stat .num {
  font-size: 64px;
  font-weight: 900;
  color: #0a7f5a;
  /* your green */
  line-height: 1.1;
  white-space: nowrap;
  /* 👈 keeps “50+” intact */
}

.dca-stat .label {
  margin-top: 12px;
  font-size: 14px;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-transform: uppercase;
}

.dca-stat .num {
  font-size: 66px;
  font-weight: 900;
  line-height: 1;
  color: rgba(0, 128, 96, 1);
  /* same teal as icons */
}

.dca-stat .label {
  margin-top: 10px;
  letter-spacing: 1.6px;
  font-size: 14px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .dca-about-wrap {
    grid-template-columns: 1fr;
  }

  .dca-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .dca-stats {
    grid-template-columns: 1fr;
  }

  .dca-stat .num {
    font-size: 56px;
  }
}

/* ===== TOP HEADER FONT SIZE INCREASE ===== */

/* Club name in header */
.site-header .title strong {
  font-size: 24px;
  /* was smaller */
}

/* Subtitle under club name */
.site-header .title span {
  font-size: 14px;
}

/* Navigation links */
.site-header .nav a {
  font-size: 17px;
  font-weight: 500;
}

/* Join Us button text */
.site-header .join-btn {
  font-size: 16px;
}

/* ===== NVAA Award Spotlight (DCA) ===== */
.dca-award {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(0, 80, 192, 0.12), rgba(240, 144, 16, 0.10));
  padding: 26px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: center;
}

.dca-award-bg {
  position: absolute;
  inset: -120px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22), transparent 55%),
    radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.14), transparent 50%),
    radial-gradient(circle at 40% 90%, rgba(0, 80, 192, 0.12), transparent 55%);
  pointer-events: none;
  animation: dcaGlow 7s ease-in-out infinite;
}

@keyframes dcaGlow {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  50% {
    transform: translateY(10px) scale(1.03);
    opacity: 0.95;
  }
}

.dca-award-left {
  position: relative;
  z-index: 1;
}

.dca-award-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0.4px;
}

.dca-award-chip .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(240, 144, 16, 1);
  box-shadow: 0 0 0 6px rgba(240, 144, 16, 0.18);
}

.dca-award-title {
  margin: 14px 0 10px;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.4px;
  color: var(--navy);
}

.dca-award-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 18px;
  max-width: 720px;
}

.dca-award-badges {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dca-mini-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}

/* Right side */
.dca-award-right {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  align-items: center;
  justify-items: center;
}

.dca-award-media {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.10);
}

.dca-award-media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.dca-media-fallback {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 700;
}

/* Trophy graphic (CSS-only) */
.dca-trophy {
  width: 110px;
  height: 110px;
  position: relative;
  display: grid;
  place-items: center;
  animation: trophyFloat 4.8s ease-in-out infinite;
}

@keyframes trophyFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

.dca-trophy .ring {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  border: 2px dashed rgba(10, 36, 99, 0.22);
}

.dca-trophy .cup {
  width: 54px;
  height: 48px;
  border-radius: 0 0 14px 14px;
  background: linear-gradient(180deg, rgba(240, 144, 16, 0.95), rgba(0, 80, 192, 0.25));
  border: 1px solid rgba(10, 36, 99, 0.18);
  position: relative;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.10);
}

.dca-trophy .cup::before,
.dca-trophy .cup::after {
  content: "";
  position: absolute;
  top: 10px;
  width: 16px;
  height: 20px;
  border: 2px solid rgba(240, 144, 16, 0.75);
  border-left: none;
  border-radius: 0 12px 12px 0;
}

.dca-trophy .cup::before {
  left: -16px;
  transform: scaleX(-1);
}

.dca-trophy .cup::after {
  right: -16px;
}

.dca-trophy .shine {
  position: absolute;
  width: 8px;
  height: 60px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  transform: rotate(18deg);
  left: 46px;
  top: 22px;
  opacity: 0.75;
}

/* Stamp */
.dca-award-stamp {
  text-align: center;
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  width: fit-content;
}

.dca-award-stamp .big {
  font-size: 34px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.dca-award-stamp .small {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 1.8px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 980px) {
  .dca-award {
    grid-template-columns: 1fr;
  }

  .dca-award-right {
    justify-items: start;
  }

  .dca-award-media {
    max-width: 100%;
  }
}

.avatar {
  width: 160px;
  /* control width only */
  height: auto;
  /* ⬅️ key change */
  border-radius: 12px;
  overflow: visible;
  /* allow full image */
  background: #f4f6f8;
  padding: 6px;
  flex-shrink: 0;
}

.avatar-img {
  width: 100%;
  height: auto;
  /* ⬅️ image keeps natural ratio */
  max-height: 220px;
  /* safety cap (optional) */
  object-fit: unset;
  /* ⬅️ remove fit rules */
  display: block;
}

.avatar-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 32px;
  /* bigger fallback letter */
  font-weight: 700;
}

/* ===== Mobile Hamburger Menu ===== */
/* ===== Mobile Hamburger Menu ===== */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
}

/* Desktop nav (default) */
.nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile styles */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    color: #fff;
  }

  .nav {
    display: none;                 /* hidden until hamburger click */
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #000030;          /* dark navy background */
    padding: 10px 0;
    z-index: 999;
  }

  .nav a {
    color: #ffffff;               /* white text */
    padding: 14px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .nav a:hover {
    background: rgba(255, 255, 255, 0.12);
  }

  .nav.active {
    display: flex;                /* show menu */
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
}

 

  .nav a {
    padding: 14px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .nav.active {
    display: flex;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
