:root {
  --blue: #2563eb;
  --blue-dark: #1e40af;
  --gold: #fbbf24;
  --bg: #0b1226;
}

/* =======================
   Header / Navbar
   ======================= */
.site-header .navbar {
  background: linear-gradient(90deg, #0b1226 0%, #101b3a 100%);
}
.navbar .navbar-brand .brand-title {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #fff;
}
@media (max-width: 768px) {
  .navbar .navbar-brand .brand-title { font-size: 1.3rem; }
}

.navbar .nav-btn {
  padding: .4rem .8rem;
  border-radius: .5rem;
  font-weight: 600;
  transition: all .2s ease;
}
.btn-primary {
  background-color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-primary {
  color: var(--blue);
  border-color: rgba(255,255,255,0.1);
}
.btn-outline-primary:hover { 
  background: var(--blue); 
  color:#fff; 
}

/* Link hover underline in gold */
.navbar .btn.nav-btn {
  position: relative;
}
.navbar .btn.nav-btn:hover::after,
.navbar .btn.nav-btn.btn-primary::after {
  content:"";
  position:absolute; left:12px; right:12px; bottom:4px;
  height:3px; background: var(--gold);
  border-radius:3px;
}

/* =======================
   Hero
   ======================= */
.hero {
  /* background: radial-gradient(1200px 400px at 30% -30%, rgba(251,191,36,.20), transparent 70%),
              linear-gradient(180deg, #0b1226 0%, #0f1630 60%, #0b1226 100%); */
/* background: radial-gradient(1200px 400px at 30% -30%, rgba(59,130,246,.25), transparent 70%),
            linear-gradient(180deg, #0f766e 0%, #115e59 60%, #134e4a 100%); */

/* background: radial-gradient(1200px 400px at 30% -30%, rgba(182,140,66,.25), transparent 70%),
            linear-gradient(180deg, #1e3a8a 0%, #1e40af 60%, #1e3a8a 100%); */

/* background: radial-gradient(1200px 400px at 30% -30%, rgba(37,99,235,.15), transparent 70%),
            linear-gradient(180deg, #dbeafe 0%, #bfdbfe 60%, #dbeafe 100%); */

/* background: linear-gradient(
                135deg, 
                #e7c46e 0%, 
                #102a61 50%, 
                #e7c46e 100%
              ); */
			  
background: radial-gradient(
                1000px 600px at 50% 0%, 
                rgba(231, 196, 110, 0.55), /* stronger gold glow */
                transparent 80%
              ),
              linear-gradient(
                180deg, 
                #102a61 0%, 
                #1e3a8a 60%, 
                #102a61 100%
              );

  color:#fff;
  padding: 2rem 0;
}
.hero .display-5 { font-weight:800; }
.hero .lead { color:#c8d2ff; }



/* Hero illustration */
.hero-illustration {
  max-height: 400px;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.35));
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .hero-illustration {
    max-height: 220px;
  }
}

/* Hero Buttons */
.hero-btns {
  margin-top: 20px;       /* spacing from image */
}
.hero-btns .btn {
  min-width: 200px;       /* consistent button size */
  font-weight: 600;
}
@media (max-width: 768px) {
  .hero-btns {
    justify-content: center !important; /* center buttons on small screens */
  }
  .hero-btns .btn {
    min-width: auto;
  }
}

/* Buttons */
.btn-gold {
  background-color: var(--gold);
  border-color: var(--gold);
  color: #111827;
  font-weight: 600;
}
.btn-gold:hover {
  background-color: #eab308;
  border-color: #eab308;
  color: #000;
}
.btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
}
.btn-outline-light:hover {
  background-color: #fff;
  color: var(--blue-dark);
}

/* =======================
   Sections
   ======================= */
.section-title {
  font-weight:800;
  color:#0b1226;
  position:relative;
  display:inline-block;
  margin-bottom:1.25rem;
}
.section-title::after {
  content:"";
  display:block; height:4px; width:80px;
  background: var(--gold);
  margin-top:.4rem; border-radius:3px;
}

/* Cards / Accents */
.card-accent {
  border-left:6px solid var(--gold);
  box-shadow: 0 10px 24px rgba(16,27,58,0.08);
}

/* =======================
   Footer
   ======================= */
.footer {
  background:#0f1630;
  color:#cdd2ff;
}
.text-gold { color: var(--gold); }
.bg-deep-blue { background:#0b1226; }

/* =======================
   Notices list
   ======================= */
.notice-card h5 { 
  color: var(--blue); 
  font-weight:700; 
}

/* =======================
   Utilities
   ======================= */
a.link-light:hover { color:#fff; }

/* Dropdowns */
.dropdown-menu { 
  border-radius:.6rem; 
  overflow:hidden; 
}

/* Backgrounds */
.bg-light { background-color: #f8fafc !important; }

/* Navbar Buttons */
.navbar .nav-btn {
  background: transparent;
  color: #f8fafc;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.2s ease;
}
.navbar .nav-btn:hover {
  background: var(--gold);
  color: #111827;
  border-color: var(--gold);
}
.navbar .nav-btn.active {
  background: var(--gold);
  color: #111827;
  border-color: var(--gold);
}
