/* PROOF: UPDATED 2026-01-27 */

:root{
  --cj-red: #b31b1b;
  --cj-red-deep: #7f0f12;
  --cj-ink: #0f0f14;
  --cj-bg: #0b0b10;
  --cj-card: #12121a;
  --cj-border: rgba(255,255,255,.10);
}

/* =========================
   BASE
   ========================= */

html, body { height: 100%; }

body{
  background: #0a0a0f;
  color: #eaeaf1;
}

a { text-decoration: none; }
a:hover { text-decoration: underline; }

/* =========================
   HEADER (single red bar)
   Requires header.html using:
   <nav class="navbar ... cj-navbar">
   <div class="container cj-nav-wrap">
   <a class="navbar-brand cj-brand"> ... <img class="brand-logo">
   ========================= */
   
  .hero-image{
  width: min(534px, 100%);
  height: auto;
  object-fit: contain;   /* use cover if you want it to crop/fill */
  display: block;
}

.media-image{
  width: min(534px, 100%);
  height: auto;
  display: block;
  object-fit: contain; /* use cover if you prefer it fills the frame */
  border-radius: 1rem; /* match .media-frame rounding */
}

.cj-navbar{
  background: linear-gradient(90deg, var(--cj-red-deep), var(--cj-red));
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding-top: 10px;
  padding-bottom: 10px;
}

.cj-nav-wrap{
  display: flex;
  align-items: center;
}

.cj-brand{
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

/* Logo size (desktop) */
.brand-logo{
  height: 96px;        /* adjust: 80–120px usually feels right */
  width: auto;
  display: block;
  max-height: 96px;
}

/* Nav links */
.navbar .nav-link{
  color: rgba(255,255,255,.90);
  font-weight: 600;
}

.navbar .nav-link:hover{
  color: #fff;
}

.navbar .nav-link.active{
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* Keep nav vertically centered */
.navbar-nav{
  align-items: center;
}

/* Toggler alignment on mobile */
.navbar-toggler{
  border-color: rgba(255,255,255,.35);
}

/* Responsive logo sizing */
@media (max-width: 992px){
  .brand-logo{ height: 72px; max-height: 72px; }
}

@media (max-width: 576px){
  .brand-logo{ height: 56px; max-height: 56px; }
}

/* =========================
   OPTIONAL: legacy brand text styles
   (safe to keep even if you’re not using them)
   ========================= */

.brand-mark{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: .5px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  padding: .35rem .65rem;
  line-height: 1;
}

.brand-sub{
  font-weight: 600;
  opacity: .95;
}

.brand-mark--small{ padding: .25rem .55rem; font-size: .95rem; background-color: #b31b1b;}
.brand-sub--small{ font-size: .95rem; }

/* =========================
   HERO
   ========================= */

.hero{
  position: relative;
  background:
    radial-gradient(1200px 500px at 30% 20%, rgba(179,27,27,.35), transparent 60%),
    radial-gradient(900px 500px at 70% 30%, rgba(255,255,255,.08), transparent 60%),
    linear-gradient(180deg, #0d0d14 0%, #090911 100%);
  border-bottom: 1px solid rgba(255,255,255,.10);
  overflow: hidden;
}

.hero .badge{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
}

/* =========================
   SECTIONS / CARDS
   ========================= */

.section{
  padding: 4rem 0;
}

.card{
  background: rgba(255,255,255,.04);
  border: 1px solid var(--cj-border);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

/* Buttons */
.btn-primary{
  background: var(--cj-red);
  border-color: var(--cj-red);
}

.btn-primary:hover{
  background: var(--cj-red-deep);
  border-color: var(--cj-red-deep);
}

/* Typography helpers */
.kicker{
  color: rgba(255,255,255,.65);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .8rem;
}

.feature-list li{
  margin-bottom: .5rem;
  color: rgba(255,255,255,.80);
}

.media-frame{
  border-radius: 1rem;
  border: 1px solid var(--cj-border);
  background: rgba(0,0,0,.25);
  aspect-ratio: 16/10;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.60);
  font-weight: 600;
}

/* =========================
   FOOTER
   ========================= */

.site-footer{
  background: linear-gradient(180deg, #0b0b10 0%, #07070b 100%);
  border-top: 1px solid rgba(255,255,255,.10);
}

.footer-links a,
.footer-meta a{
  color: rgba(255,255,255,.75);
}

.footer-links a:hover,
.footer-meta a:hover{
  color: #fff;
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}

/* =========================
   FORMS
   ========================= */

.form-control,
.form-select{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
}

.form-control:focus,
.form-select:focus{
  background: rgba(255,255,255,.06);
  border-color: rgba(179,27,27,.75);
  box-shadow: 0 0 0 .25rem rgba(179,27,27,.20);
  color: #fff;
}

/* =========================
   UTILITY
   ========================= */

.divider{
  height: 1px;
  background: rgba(255,255,255,.10);
}