/* Friends of Adaklu — purple atmosphere + green accents */
:root {
  /* Purple scale */
  --purple-950: #0f061c;
  --purple-900: #1a0f2e;
  --purple-800: #261547;
  --purple-700: #3d2666;
  --purple-600: #5c3d8a;
  --purple-500: #7c5cbf;
  --purple-400: #9b7ee0;
  --purple-100: #f0e8ff;
  --purple-50: #faf7ff;

  /* Green accents */
  --green-900: #0d3d2e;
  --green-800: #146b52;
  --green-600: #1fa87a;
  --green-500: #2ecc9a;
  --green-400: #5ee4b8;
  --green-glow: rgba(46, 204, 154, 0.45);

  /* Legacy token names → mapped for fewer HTML edits */
  --forest: var(--green-800);
  --forest-2: var(--green-600);
  --accent: var(--green-500);
  --accent-dark: var(--green-800);
  --surface: #ebe4fb;
  --surface-2: #faf8ff;
  --ink: #1c1530;
  --radius-xl: 1.25rem;
  --header-h: 4.25rem;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

/* Page: deep purple with soft aurora layers */
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background-color: var(--purple-900);
  background-image:
    radial-gradient(ellipse 100% 60% at 50% -15%, rgba(155, 126, 224, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 40%, rgba(94, 228, 184, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 45% at 0% 80%, rgba(124, 92, 191, 0.2), transparent 45%),
    linear-gradient(168deg, var(--purple-950) 0%, var(--purple-900) 28%, #1a1235 55%, var(--purple-900) 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='98' viewBox='0 0 28 49'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.04'%3E%3Cpath d='M28 0v17L0 49'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 520px 520px;
}

body > * {
  position: relative;
  z-index: 1;
}

.min-vh-50 {
  min-height: 50vh;
}

.py-lg-6 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

@media (min-width: 992px) {
  .py-lg-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
}

.letter-space {
  letter-spacing: 0.12em;
}

.text-accent {
  color: var(--green-400) !important;
  text-shadow: 0 0 28px var(--green-glow);
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.88) !important;
}

.w-fit {
  width: fit-content;
}

/* Badges: purple vs green */
.text-bg-accent-subtle {
  background: rgba(124, 92, 191, 0.22) !important;
  color: #3d2666 !important;
  border: 1px solid rgba(124, 92, 191, 0.2);
}

.text-bg-warm-subtle {
  background: rgba(46, 204, 154, 0.15) !important;
  color: var(--green-900) !important;
  border: 1px solid rgba(46, 204, 154, 0.25);
}

/* Header */
.site-header .navbar {
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.25s ease;
}

.site-header.is-scrolled .navbar {
  background: rgba(26, 15, 46, 0.88);
  backdrop-filter: blur(14px);
  box-shadow:
    0 0.35rem 0 rgba(46, 204, 154, 0.12),
    0 0.75rem 2rem rgba(0, 0, 0, 0.35);
  padding-top: 0.65rem !important;
  padding-bottom: 0.65rem !important;
}

.navbar-brand .brand-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: #f5f0ff;
}

.navbar-brand strong {
  color: var(--green-400);
  font-weight: 700;
}

.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.55rem;
  background: linear-gradient(135deg, var(--purple-500) 0%, var(--purple-700) 42%, var(--green-600) 100%);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.12),
    0 0 20px rgba(94, 228, 184, 0.35);
}

.brand-mark--sm {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.4rem;
}

.nav-link {
  font-weight: 500;
  position: relative;
  color: rgba(255, 255, 255, 0.82) !important;
}

.nav-link:hover {
  color: #fff !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.35rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green-500), var(--green-400));
  box-shadow: 0 0 12px var(--green-glow);
  transition: width 0.25s ease, left 0.25s ease;
}

@media (min-width: 992px) {
  .nav-link:hover::after,
  .nav-link.active::after {
    width: 60%;
    left: 20%;
  }

  .nav-item.dropdown .nav-link.dropdown-toggle::after {
    display: none;
  }
}

.site-header .dropdown-menu-nav {
  margin-top: 0.5rem;
  padding: 0.5rem;
  min-width: 14rem;
  background: rgba(26, 15, 46, 0.97);
  border: 1px solid rgba(124, 92, 191, 0.35);
  border-radius: 0.75rem;
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.site-header .dropdown-menu-nav .dropdown-item {
  color: rgba(255, 255, 255, 0.88);
  border-radius: 0.45rem;
  font-size: 0.9rem;
  padding: 0.45rem 0.75rem;
}

.site-header .dropdown-menu-nav .dropdown-item:hover,
.site-header .dropdown-menu-nav .dropdown-item:focus,
.site-header .dropdown-menu-nav .dropdown-item.active {
  background: rgba(124, 92, 191, 0.35);
  color: #fff;
}

.site-header .dropdown-menu-nav .dropdown-divider {
  border-color: rgba(124, 92, 191, 0.25);
  margin: 0.35rem 0;
}

@media (max-width: 991.98px) {
  .site-header .dropdown-menu-nav {
    background: transparent;
    border: none;
    box-shadow: none;
    padding-left: 0.75rem;
    margin-top: 0;
  }

  .site-header .dropdown-menu-nav .dropdown-item {
    padding-left: 0.5rem;
  }
}

.btn-accent {
  --bs-btn-color: #041510;
  --bs-btn-bg: var(--green-600);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #f4fffb;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 46, 204, 154;
  font-weight: 600;
  background-color: transparent;
  background-image: linear-gradient(135deg, var(--green-500) 0%, var(--green-600) 100%);
  border: none;
  box-shadow:
    0 0.15rem 0 rgba(13, 61, 46, 0.35),
    0 0.5rem 1.25rem rgba(46, 204, 154, 0.28);
}

.btn-accent:hover {
  --bs-btn-hover-bg: var(--green-800);
  background-image: linear-gradient(135deg, var(--green-600) 0%, var(--green-800) 100%);
  transform: translateY(-1px);
  box-shadow:
    0 0.2rem 0 rgba(13, 61, 46, 0.4),
    0 0.65rem 1.5rem rgba(46, 204, 154, 0.35);
}

.btn-accent:active {
  transform: translateY(0);
}

/* Hero banner */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: clamp(34rem, 88vh, 52rem);
  padding-top: var(--header-h);
  background: linear-gradient(155deg, #241036 0%, var(--purple-800) 38%, var(--purple-900) 72%, #12081f 100%);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-slideshow__slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.85s ease, visibility 0.85s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition-duration: 0.01ms;
  }
}

.hero-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.02);
  display: block;
}

.hero-media__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(100deg, rgba(15, 6, 28, 0.94) 0%, rgba(15, 6, 28, 0.78) 32%, rgba(26, 15, 46, 0.45) 58%, rgba(15, 6, 28, 0.35) 100%),
    linear-gradient(0deg, rgba(15, 6, 28, 0.65) 0%, transparent 48%);
}

.hero-slideshow__chrome {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.hero-slideshow__arrow {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  line-height: 1;
  color: #fff;
  background: rgba(15, 6, 28, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-slideshow__arrow:hover {
  background: rgba(46, 204, 154, 0.35);
  box-shadow: 0 0 20px rgba(46, 204, 154, 0.25);
}

.hero-slideshow__arrow:focus-visible {
  outline: 2px solid var(--green-400);
  outline-offset: 3px;
}

.hero-slideshow__arrow--prev {
  left: clamp(0.75rem, 3vw, 1.5rem);
}

.hero-slideshow__arrow--next {
  right: clamp(0.75rem, 3vw, 1.5rem);
}

.hero-slideshow__dots {
  pointer-events: auto;
  position: absolute;
  left: 50%;
  bottom: clamp(5.5rem, 14vh, 7.5rem);
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  padding: 0.35rem 0.65rem;
  border-radius: 2rem;
  background: rgba(15, 6, 28, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.hero-slideshow__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, width 0.25s ease;
}

.hero-slideshow__dot:hover {
  background: rgba(255, 255, 255, 0.65);
}

.hero-slideshow__dot.is-active {
  background: var(--green-400);
  width: 1.35rem;
  border-radius: 999px;
  box-shadow: 0 0 12px var(--green-glow);
}

.hero-slideshow__dot:focus-visible {
  outline: 2px solid var(--green-400);
  outline-offset: 2px;
}

#heroSlideshow:focus-visible {
  outline: 2px solid var(--green-400);
  outline-offset: 4px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 55% at 85% 15%, rgba(155, 126, 224, 0.38), transparent 58%),
    radial-gradient(ellipse 50% 40% at 15% 85%, rgba(46, 204, 154, 0.14), transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(61, 38, 102, 0.45), transparent 42%);
}

.hero__content {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
  padding-top: clamp(2rem, 5vh, 3.25rem);
  padding-bottom: clamp(4.5rem, 9vh, 6.5rem);
}

.hero__copy {
  max-width: 38rem;
}

.hero__actions .btn {
  min-width: 9.5rem;
}

.hero-wave {
  position: relative;
  z-index: 6;
  flex-shrink: 0;
  line-height: 0;
  margin-top: -1px;
}

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
  }

  .hero__content {
    padding-top: 2rem;
    padding-bottom: 5rem;
  }

  .hero__copy {
    text-align: center;
    max-width: none;
    margin-inline: auto;
  }

  .hero__copy .pe-lg-3 {
    padding-right: 0 !important;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__followup {
    text-align: center;
  }

  .hero-card {
    max-width: 22rem;
    margin-inline: auto;
  }
}

@media (max-width: 767.98px) {
  .hero-slideshow__dots {
    bottom: 1.25rem;
  }

  .hero-slideshow__arrow {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.4rem;
  }

  .hero-slideshow__arrow--prev {
    left: 0.4rem;
  }

  .hero-slideshow__arrow--next {
    right: 0.4rem;
  }

  .hero__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-title {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }
}

.hero-title {
  font-family: var(--font-display);
  line-height: 1.15;
}

.hero-title em {
  font-style: italic;
  font-weight: 600;
}

.hero-card {
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97) 0%, var(--surface-2) 100%);
  border: 1px solid rgba(124, 92, 191, 0.15) !important;
  box-shadow:
    0 1rem 2.5rem rgba(26, 15, 46, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset !important;
}

.hero-card__photo {
  display: block;
  height: clamp(9rem, 22vw, 11rem);
  object-fit: cover;
  object-position: center;
}

.hero-card .text-secondary {
  color: #5a4d78 !important;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: clamp(3rem, 8vw, 5rem);
}

/* Section panels on purple canvas */
.surface-section {
  background: linear-gradient(180deg, rgba(235, 228, 251, 0.97) 0%, rgba(245, 240, 255, 0.93) 100%);
  border-block: 1px solid rgba(124, 92, 191, 0.12);
  box-shadow: 0 0 80px rgba(61, 38, 102, 0.15) inset;
}

section.bg-light-subtle {
  --bs-bg-opacity: 1;
  background: linear-gradient(165deg, rgba(230, 220, 250, 0.92) 0%, rgba(210, 195, 245, 0.55) 50%, rgba(235, 228, 251, 0.88) 100%) !important;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  background: linear-gradient(120deg, var(--purple-800), var(--purple-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.surface-section .section-title,
.bg-light-subtle .section-title {
  background: linear-gradient(120deg, var(--purple-900), var(--purple-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Info tiles */
.info-tile {
  border-color: rgba(124, 92, 191, 0.12) !important;
  background: linear-gradient(160deg, #fff 0%, var(--surface-2) 100%) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-tile:hover {
  transform: translateY(-5px);
  box-shadow:
    0 1.25rem 2.5rem rgba(61, 38, 102, 0.12),
    0 0 0 1px rgba(46, 204, 154, 0.2) !important;
}

.tile-icon {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--purple-400), var(--green-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Programs */
.program-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(124, 92, 191, 0.1) !important;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0.75rem 2rem rgba(26, 15, 46, 0.08);
}

.program-thumb {
  min-height: 12rem;
  align-self: stretch;
}

.program-thumb__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 12rem;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

@media (min-width: 576px) {
  .program-thumb__img {
    min-height: 100%;
  }
}

.program-card:hover .program-thumb__img {
  transform: scale(1.04);
}

.program-card a.text-accent {
  color: var(--green-800) !important;
  text-shadow: none;
}

.program-card a.text-accent:hover {
  color: var(--green-600) !important;
}

/* Stats — photo + green focal panel */
.stat-stack {
  border: 1px solid rgba(94, 228, 184, 0.25);
  box-shadow: 0 1.25rem 2.5rem rgba(13, 61, 46, 0.2);
}

.stat-stack__photo {
  display: block;
  max-height: 14rem;
  min-height: 10rem;
  object-position: center 25%;
}

.stat-grid {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background:
    linear-gradient(145deg, rgba(20, 107, 82, 0.97) 0%, var(--green-900) 50%, #0a2520 100%);
  box-shadow: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 0 24px rgba(94, 228, 184, 0.35);
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.9;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
  color: #3d3558;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-800));
  box-shadow: 0 0 0 3px rgba(46, 204, 154, 0.28);
}

/* Join / CTA strip */
#involved.bg-dark {
  background: linear-gradient(128deg, var(--purple-950) 0%, #1f1238 42%, #142e28 100%) !important;
  border-block: 1px solid rgba(94, 228, 184, 0.15);
}

#involved .section-title.text-white {
  background-image: linear-gradient(105deg, #fff 0%, #e8e0ff 45%, var(--green-400) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

.cta-glow {
  position: absolute;
  inset: -40% -20%;
  background:
    radial-gradient(circle at 25% 35%, rgba(124, 92, 191, 0.35), transparent 42%),
    radial-gradient(circle at 70% 60%, rgba(46, 204, 154, 0.2), transparent 45%);
  pointer-events: none;
}

.join-panel {
  backdrop-filter: blur(10px);
  border-color: rgba(94, 228, 184, 0.22) !important;
}

.join-panel .text-accent {
  text-shadow: none;
}

.join-ribbon {
  display: block;
  max-height: clamp(10rem, 28vw, 15rem);
  object-position: center 30%;
  opacity: 0.95;
  border-bottom: 1px solid rgba(94, 228, 184, 0.2);
}
.album-item {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(124, 92, 191, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.album-item:hover,
.album-item:focus-visible {
  transform: translateY(-6px);
  box-shadow:
    0 1rem 2rem rgba(61, 38, 102, 0.18),
    0 0 0 2px rgba(46, 204, 154, 0.35) !important;
  outline: none;
}

.album-item__img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.album-item:hover .album-item__img,
.album-item:focus-visible .album-item__img {
  transform: scale(1.05);
}

.album-item__cap {
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: left;
  color: var(--purple-800);
}

#albumModalImg {
  object-fit: cover;
}

/* Reports */
.report-visual {
  position: relative;
  min-height: 17rem;
  border: 1px solid rgba(94, 228, 184, 0.2);
  box-shadow:
    0 1rem 2.5rem rgba(26, 15, 46, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.report-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15, 6, 28, 0.45) 0%, rgba(15, 6, 28, 0.82) 100%);
  pointer-events: none;
}

.report-visual__photo {
  z-index: 0;
}

.report-visual__content {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55);
}

.report-year.bg-dark {
  background: linear-gradient(135deg, var(--purple-700), var(--green-800)) !important;
  border: 1px solid rgba(94, 228, 184, 0.25);
}

/* Contact */
.contact-link {
  color: var(--green-800);
  text-decoration: none;
  font-weight: 600;
}

.contact-link:hover {
  color: var(--purple-600);
}

.contact-icon {
  width: 2rem;
  text-align: center;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--purple-700), var(--purple-800));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(94, 228, 184, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-btn:hover {
  background: linear-gradient(145deg, var(--green-800), var(--green-600));
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0.5rem 1rem rgba(46, 204, 154, 0.35);
}

.contact-email-card {
  background: linear-gradient(180deg, #fff 0%, var(--surface-2) 100%);
  border: 1px solid rgba(124, 92, 191, 0.12) !important;
}

.contact-email-card__address {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--purple-700);
  text-decoration: none;
}

.contact-email-card__address:hover {
  color: var(--green-700);
}

.faq-accordion .accordion-item {
  border-color: rgba(124, 92, 191, 0.12);
  background: #fff;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  color: var(--purple-900);
  background: linear-gradient(180deg, #fff 0%, var(--surface-2) 100%);
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--purple-800);
  background: var(--surface-2);
}

.faq-accordion .accordion-button:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 0.2rem rgba(46, 204, 154, 0.22);
}

.faq-accordion .accordion-body {
  color: var(--text-muted, #5c5470);
}

.faq-accordion .accordion-body a {
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #0a0514 0%, var(--purple-950) 100%);
  border-top: 1px solid rgba(124, 92, 191, 0.2);
  box-shadow: 0 -1rem 3rem rgba(0, 0, 0, 0.25);
}

/* Active nav */
.nav-link.active {
  color: var(--green-400) !important;
}

/* Modals */
.modal-content {
  border: 1px solid rgba(124, 92, 191, 0.12);
}

@media (max-width: 991.98px) {
  .site-header .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-xl);
    background: rgba(15, 6, 28, 0.96);
    border: 1px solid rgba(124, 92, 191, 0.2);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.35);
  }

  .nav-link::after {
    display: none;
  }
}
