/* Elegant, professional, colorful theme */
:root{
  --accent:#ffb703;
  --accent-2:#06d6a0;
  --primary:#0d47a1;
  --gradient-1: linear-gradient(135deg,#1e3c72,#2a5298);
  --gradient-2: linear-gradient(135deg,#11998e,#38ef7d);
  --gradient-3: linear-gradient(135deg,#f7971e,#ffd200);
}

*{ font-family: 'Poppins', sans-serif; }

.bg-gradient-primary{
  background: linear-gradient(90deg, #0d47a1, #1b74e4);
}

.bg-nyeri{
  background: linear-gradient(90deg, #8e2de2, #4a00e0);
}

.hero-section{
  background: url('../img/nbhs-hero.jpg') center/cover, linear-gradient(90deg,#102a43,#243b53);
  min-height: 60vh;
}

.text-accent{ color: var(--accent); }

.hero-card{ border: 2px solid rgba(255,255,255,.5); }

.gradient-1{ background: var(--gradient-1); }
.gradient-2{ background: var(--gradient-2); }
.gradient-3{ background: var(--gradient-3); }

.border-left-accent{
  border-left: 6px solid var(--accent);
}
.border-left-accent-2{
  border-left: 6px solid var(--accent-2);
}

.shadow-inner{
  box-shadow: inset 0 8px 14px rgba(0,0,0,.15);
}

.table thead th{
  letter-spacing: .02em;
}

footer a:hover{ text-decoration: underline; }
