/* Component-specific styles for Ecoprism Website */

/* Hero Section Styles */
.hero {
  background: linear-gradient(135deg, var(--ecoprism-primary) 0%, var(--ecoprism-secondary) 50%, var(--ecoprism-accent) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 4rem;
}

.hero-content {
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Challenge Cards */
.challenge-card {
  height: 12rem;
  cursor: pointer;
  perspective: 1000px;
}

.challenge-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.challenge-card-inner.flipped {
  transform: rotateY(180deg);
}

.challenge-card-front,
.challenge-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.challenge-card-front {
  background: white;
  color: var(--ecoprism-dark);
}

.challenge-card-back {
  background: linear-gradient(135deg, var(--ecoprism-primary), var(--ecoprism-secondary));
  color: white;
  transform: rotateY(180deg);
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ecoprism-dark);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 4rem;
  line-height: 1.6;
}

/* Card Styles */
.card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ecoprism-dark);
  margin-bottom: 1rem;
}

.card-text {
  color: #6b7280;
  line-height: 1.6;
}

.card-body {
  text-align: center;
}

/* Button Styles */
.btn-primary {
  background: linear-gradient(135deg, var(--ecoprism-primary), var(--ecoprism-secondary));
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--ecoprism-secondary), var(--ecoprism-accent));
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(64, 119, 117, 0.3);
}

.btn-secondary {
  background: var(--ecoprism-yellow);
  color: var(--ecoprism-dark);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-secondary:hover {
  background: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(251, 191, 36, 0.3);
}

.btn-outline {
  background: transparent;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid white;
  cursor: pointer;
}

.btn-outline:hover {
  background: white;
  color: var(--ecoprism-primary);
  transform: translateY(-2px);
}

/* Video Container */
.video-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.video-play-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Partner Cards */
.partner-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.partner-card img {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .challenge-card {
    height: 10rem;
  }

  .card {
    padding: 1.5rem;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2rem;
  }

  .challenge-card {
    height: 8rem;
  }

  .challenge-card-front,
  .challenge-card-back {
    padding: 1rem;
  }
}

/* Animation Keyframes */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, var(--ecoprism-primary), var(--ecoprism-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--ecoprism-primary), var(--ecoprism-secondary));
}

.bg-gradient-accent {
  background: linear-gradient(135deg, var(--ecoprism-secondary), var(--ecoprism-accent));
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid var(--ecoprism-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   v3 site header — visual clone of the Sandbox theme header (about-us.html)
   Reference: assets/css/style.css (Manrope, .navbar classic) + colors/leaf.css
   ========================================================================== */

/* ── Header state classes added by Alpine ─────────────────────────────────
   site-header--transparent-light  = over a DARK hero  (≙ theme navbar-dark transparent)
   site-header--transparent-dark   = over a LIGHT hero (≙ theme navbar-light transparent)
   site-header--scrolled           = white bg          (≙ theme navbar-stick)
   ──────────────────────────────────────────────────────────────────────── */

/* ── Header background states (theme: transparent / navbar-stick) ──────── */
#header-container > header {
  padding-top: 4px;
  box-sizing: border-box;
}

header.site-header--transparent-light,
header.site-header--transparent-dark {
  background: transparent;
  box-shadow: none;
}
header.site-header--scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 0 25px rgba(30, 34, 40, 0.06);
}

/* NOTE: the theme uses a 20px root font size, so its rem values are
   converted here to px (1rem theme = 20px). */

/* ── Container — same widths/gutters as the theme's Bootstrap .container ── */
.site-header-container {
  width: 100%;
  padding-left: 13px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) {
  .site-header-container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .site-header-container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .site-header-container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .site-header-container {
    max-width: 1140px;
  }
}
@media (min-width: 1250px) {
  .site-header-container {
    max-width: 1230px;
  }
}
@media (min-width: 1300px) {
  .site-header-container {
    max-width: 1280px;
  }
}
@media (min-width: 1400px) {
  .site-header-container {
    max-width: 1360px;
  }
}

/* ── Desktop nav layout (theme: .navbar-nav) ────────────────────────────── */
.site-header-nav-wrap {
  min-width: 0;
}
.site-header-nav {
  display: flex;
  align-items: stretch;
}
.site-header-other {
  flex-shrink: 0;
  margin-left: 20px; /* theme: .navbar-other.ms-lg-4 */
}
.site-header-item {
  position: relative;
  display: flex;
  align-items: stretch;
}

/* Nav links — theme: Manrope 0.8rem / 700 / lh 1.7, padding 1.2rem 1rem
   (16px / padding 24px 20px at the theme's 20px root) */
header .site-header-bar .nav-link {
  display: inline-flex;
  align-items: center;
  padding: 24px 20px !important;
  font-family: "Manrope", "Inter", sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.7;
  letter-spacing: -0.2px;
  white-space: nowrap;
  background: none;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
/* Kill the yellow underline animation from main.css */
header .site-header-bar .nav-link::after {
  display: none !important;
}

/* Theme squeezes link padding to .6rem (12px) between 992 and 1200px */
@media (min-width: 992px) and (max-width: 1199.98px) {
  header .site-header-bar .nav-link {
    padding-left: 12px !important;
    padding-right: 12px !important;
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}

/* Caret — theme: Unicons glyph ≈12px wide with .05rem (1px) gap */
header .site-header-bar .chevron-icon {
  width: 12px !important;
  height: 12px !important;
  min-width: 12px;
  min-height: 12px;
  margin-left: 1px;
  color: inherit;
}
header .site-header-bar .chevron-icon path {
  stroke-width: 2.5 !important;
}

/* Over dark hero → white links, 70% white on hover (theme navbar-dark) */
header.site-header--transparent-light .nav-link {
  color: #ffffff !important;
}
header.site-header--transparent-light .site-header-item:hover > .nav-link,
header.site-header--transparent-light .nav-link:hover {
  color: rgba(255, 255, 255, 0.7) !important;
}
header.site-header--transparent-light .site-header-bar .chevron-icon {
  color: inherit;
}
/* Target ONLY the hamburger toggle, NOT the mobile drawer buttons */
header.site-header--transparent-light .mobile-toggle {
  color: #ffffff !important;
}

/* Over light hero or scrolled → #343f52 links, leaf green on hover
   (theme navbar-light + leaf.css) */
header.site-header--transparent-dark .nav-link,
header.site-header--scrolled .nav-link {
  color: #343f52 !important;
}
header.site-header--transparent-dark .site-header-item:hover > .nav-link,
header.site-header--transparent-dark .nav-link:hover,
header.site-header--scrolled .site-header-item:hover > .nav-link,
header.site-header--scrolled .nav-link:hover {
  color: #407775 !important;
}
header.site-header--transparent-dark .site-header-bar .chevron-icon,
header.site-header--scrolled .site-header-bar .chevron-icon {
  color: inherit;
}
header.site-header--transparent-dark .mobile-toggle,
header.site-header--scrolled .mobile-toggle {
  color: #343f52 !important;
}

/* ── Dropdowns (theme: .dropdown-menu) ──────────────────────────────────── */
.site-header-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 50;
  min-width: 200px;
  padding: 20px 0;
  background-color: #fff;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(30, 34, 40, 0.06);
}

/* Two-column products menu (theme: .dropdown-lg) */
.site-header-dropdown-lg {
  display: flex;
  flex-direction: row;
  width: max-content;
  max-width: calc(100vw - 2rem);
  padding: 32px 5px 26px 5px;
}
.site-header-dropdown-lg .site-header-dropdown-col + .site-header-dropdown-col {
  border-left: 1px solid rgba(164, 174, 198, 0.2);
}

/* Dropdown items — theme: Manrope 0.75rem / 700, padding 0.2rem 1.5rem,
   no hover background, text turns leaf green (leaf.css) */
header .site-header-dropdown .dropdown-item {
  display: block;
  padding: 4px 30px;
  font-family: "Manrope", "Inter", sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.7;
  letter-spacing: -0.2px;
  white-space: nowrap;
  color: #343f52 !important;
  background-color: transparent !important;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
header .site-header-dropdown .dropdown-item:hover,
header .site-header-dropdown .dropdown-item:focus,
header .site-header-dropdown .dropdown-item.active {
  color: #407775 !important;
  background-color: transparent !important;
}

/* ── Mobile nav drawer — clone of the theme's dark .offcanvas-nav ─────────
   Panel: 300px wide, #1e2228 bg, 30px paddings, white Manrope links. */
.mobile-nav-drawer {
  width: 300px;
  max-width: 85vw;
  background-color: #1e2228;
}
.mobile-nav-header {
  padding: 30px;
}
.mobile-nav-logo {
  height: 40px;
  width: auto;
  display: block;
}
header .mobile-nav-drawer .mobile-nav-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: #ffffff !important;
}
.mobile-nav-body {
  padding: 0 30px 30px 30px;
}
/* Top-level links — theme: Manrope 16px/700 white, padding 6px 0 */
header .mobile-nav-drawer .mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 6px 0;
  font-family: "Manrope", "Inter", sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.7;
  letter-spacing: -0.2px;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  color: #ffffff !important;
  transition: color 0.2s ease-in-out;
}
header .mobile-nav-drawer .mobile-nav-link:hover {
  color: rgba(255, 255, 255, 0.7) !important;
}
/* Submenu links — theme: 15px/700 white, padding 6px 30px 6px 20px */
header .mobile-nav-drawer .mobile-nav-sublink {
  display: block;
  padding: 6px 30px 6px 20px;
  font-family: "Manrope", "Inter", sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.7;
  letter-spacing: -0.2px;
  text-decoration: none;
  color: #ffffff !important;
  transition: color 0.2s ease-in-out;
}
header .mobile-nav-drawer .mobile-nav-sublink:hover {
  color: rgba(255, 255, 255, 0.7) !important;
}
header .mobile-nav-drawer svg {
  color: inherit;
}
/* Footer — theme offcanvas-footer: email + social icons */
.mobile-nav-footer {
  margin-top: auto;
  padding: 30px;
}
header .mobile-nav-drawer .mobile-nav-mail {
  font-family: "Manrope", "Inter", sans-serif !important;
  font-size: 15px !important;
  font-weight: 500;
  color: #ffffff !important;
  text-decoration: none;
}
header .mobile-nav-drawer .mobile-nav-mail:hover {
  color: rgba(255, 255, 255, 0.7) !important;
}
.mobile-nav-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
header .mobile-nav-drawer .mobile-nav-social a {
  color: #ffffff !important;
}
header .mobile-nav-drawer .mobile-nav-social a:hover {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Header container — sticky wrapper; must be transparent so the
   inner <header>'s bg-transparent actually shows the hero behind it */
#header-container {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: transparent;
  padding-top: 0 !important;
  margin-top: 0;
}

/* Inner shells stay flush — top offset lives on #header-container > header only */
#header-container .site-header-container,
#header-container .site-header-bar,
#header-container .site-header-nav-wrap,
#header-container .site-header-other {
  padding-top: 0 !important;
}

/* Header bar — theme classic navbar: links (24px padding + 16px×1.7 text)
   give ≈75px; the 45px logo is centered inside it. */
.site-header-bar {
  min-height: 75px;
  padding: 24px 0; /* theme mobile: .navbar-brand padding 1.2rem = 24px */
}
@media (min-width: 992px) {
  .site-header-bar {
    /* theme desktop bar measures 77.9px (caret glyph expands the line box) */
    min-height: 78px;
    padding: 0;
  }
}

/* Logo — theme renders both logos at height 45px */
.site-header-logo-link {
  display: flex;
  align-items: center;
}

.site-header-logo {
  height: 45px;
  margin-top: 5px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Logo src is pre-set in loadSiteHeader() before Alpine.initTree() runs.
   Alpine's :src binding then drives all subsequent state changes. */

/* Contact CTA — theme: .btn.btn-sm.rounded-pill (0.4rem 1rem, 0.7rem/700,
   2px border, lift + shadow on hover). a.site-header-cta beats main.css's
   a[href*="contact"] Poppins override. */
a.site-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  flex-shrink: 0;
  margin-left: 0;
  padding: 8px 20px;
  border-radius: 50rem;
  font-family: "Manrope", "Inter", sans-serif !important;
  font-size: 16px !important; /* theme: .navbar .btn-sm { font-size: .8rem } */
  font-weight: 700 !important;
  line-height: 1.7;
  letter-spacing: -0.2px;
  text-decoration: none !important;
  white-space: nowrap;
  transform: translateY(0);
  transition: all 0.2s ease-in-out;
  background-color: #407775 !important;
  color: #ffffff !important;
  border: 2px solid #407775;
  box-shadow: none;
}

a.site-header-cta:hover {
  transform: translateY(-3px); /* theme: -0.15rem at 20px root */
  background-color: #407775 !important;
  border-color: #407775;
  color: #ffffff !important;
  box-shadow: 0 5px 15px rgba(30, 34, 40, 0.15);
}

/* Dark hero at top of page — theme .btn-white: white pill, #343f52 text */
a.site-header-cta.site-header-cta--inverse {
  background-color: #ffffff !important;
  color: #343f52 !important;
  border-color: #ffffff;
}

a.site-header-cta.site-header-cta--inverse:hover {
  background-color: #ffffff !important;
  color: #343f52 !important;
  box-shadow: 0 5px 15px rgba(30, 34, 40, 0.15);
}

.site-header-cta--block {
  display: flex;
  width: 100%;
  margin-left: 0;
  text-align: center;
}

/* Do not let transparent-header nav rules recolor the CTA */
header .site-header-bar .site-header-cta {
  color: #ffffff !important;
}

header .site-header-bar .site-header-cta.site-header-cta--inverse {
  color: #343f52 !important;
}

/* Backward compatibility aliases for old ecogrid-btn class names */
.ecogrid-btn {
  @apply app-btn;
}
.ecogrid-btn-primary {
  @apply app-btn-primary;
}
.ecogrid-btn-outline {
  @apply app-btn-outline;
}
.ecogrid-btn-cta-gold {
  @apply app-btn-gold;
}
.ecogrid-btn-cta-ghost {
  @apply app-btn-ghost;
}
.ecogrid-btn-outline-light {
  /* light variant support */
}

/* ========================================================================
   Button Styles (unified across all pages - Global Names)
   ======================================================================== */

.app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    filter 0.2s ease;
}

.app-btn:hover {
  transform: translateY(-2px);
}

.app-btn:active {
  transform: translateY(0) scale(0.98);
}

.app-btn:focus-visible {
  outline: 2px solid #fab430;
  outline-offset: 3px;
}

/* Primary button — Teal filled */
.app-btn-primary {
  background: #2f7f75;
  color: #fff;
  box-shadow: 0 4px 14px rgba(47, 119, 117, 0.28);
}

.app-btn-primary:hover {
  background: linear-gradient(165deg, #3a7d6e 0%, #2f6f64 55%, #285a50 100%);
  box-shadow: 0 10px 28px rgba(47, 111, 100, 0.42);
}

/* Outline button — Teal border, white fill */
.app-btn-outline {
  background: #ffffff;
  border: 2px solid #2f7f75;
  color: #2f7f75;
  box-shadow: 0 2px 8px rgba(47, 127, 117, 0.1);
  font-weight: 600;
}

.app-btn-outline:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: #2f7f75;
  color: #2f7f75;
  box-shadow: 0 8px 20px rgba(47, 127, 117, 0.18);
}

/* Gold/Yellow CTA button */
.app-btn-gold {
  background: #f4b940;
  color: #0b2e26;
  box-shadow: 0 6px 18px rgba(244, 185, 64, 0.32);
}

.app-btn-gold:hover {
  background: linear-gradient(165deg, #fce089 0%, #f4b940 45%, #e0a32a 100%);
  box-shadow: 0 12px 34px rgba(244, 185, 64, 0.5);
}

/* Ghost button — for dark backgrounds */
.app-btn-ghost {
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.app-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .app-btn:hover,
  .app-btn:active {
    transform: none;
  }
  .app-btn {
    transition:
      background 0.2s ease,
      border-color 0.2s ease,
      box-shadow 0.2s ease;
  }
}

/* ========================================================================
   Pretitle / Label Styles (Global - used throughout all pages)
   ======================================================================== */

.app-pretitle {
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
}

/* Pretitle on light backgrounds */
.app-pretitle--light {
  background: rgba(157, 189, 184, 0.15);
  color: #1f7a63;
}

/* Pretitle on dark backgrounds */
.app-pretitle--dark {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Pretitle with gold/yellow accent */
.app-pretitle--gold {
  background: rgba(244, 185, 64, 0.2);
  color: #f4b940;
}

/* Pretitle with mint/accent */
.app-pretitle--mint {
  background: rgba(61, 220, 151, 0.1);
  color: #1f7a63;
}
