/* ============================================
   LC-ERI Static Site Stylesheet
   Brand colors: Navy #1e3a5f  |  Orange #f0833a
   Edit me in Notepad++
   ============================================ */

:root {
  --primary: #1e3a5f;
  --primary-dark: #16294a;
  --accent: #f0833a;
  --accent-dark: #d96d24;
  --text: #1f2937;
  --muted: #64748b;
  --surface: #f5f7fb;
  --border: #e5e7eb;
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  margin: 0;
  background: #fff;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  color: var(--primary);
}

a { color: var(--primary); }

/* ----- Navbar ----- */
.navbar-brand-text { line-height: 1.1; }
.navbar-brand-text .brand-name { font-family: 'Poppins'; font-weight: 700; color: var(--primary); font-size: 1.05rem; }
.navbar-brand-text .brand-tag  { font-size: 0.7rem; color: var(--muted); }

.navbar { box-shadow: 0 1px 0 var(--border); }
.navbar .nav-link { font-weight: 600; color: var(--text) !important; padding: 0.6rem 1rem !important; }
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--accent) !important; }

.btn-accent {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
}
.btn-accent:hover { background: var(--accent-dark); color: #fff; }

.btn-outline-light-accent {
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  font-weight: 600;
  background: transparent;
}
.btn-outline-light-accent:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* ----- Hero ----- */
.hero-gradient {
  background:
    radial-gradient(circle at 20% 20%, rgba(240,131,58,0.25), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(30,58,95,0.35), transparent 50%),
    linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #2c4d7d 100%);
  color: #fff;
}
.hero-gradient h1, .hero-gradient h2, .hero-gradient h3 { color: #fff; }

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

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.25rem 0.75rem; border-radius: 999px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
}

.logo-badge {
  width: 280px; height: 280px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  border: 4px solid rgba(240,131,58,0.4);
}
.logo-badge img { width: 100%; height: 100%; object-fit: contain; }

/* ----- Carousel overrides ----- */
.carousel-indicators [data-bs-target] {
  width: 10px; height: 10px; border-radius: 50%;
  background-color: rgba(255,255,255,0.4); border: 0;
}
.carousel-indicators .active { background-color: var(--accent); width: 28px; border-radius: 5px; }

/* ----- Sections ----- */
.section-pad { padding: 5rem 0; }
.bg-surface { background: var(--surface); }
.eyebrow { color: var(--accent); font-weight: 600; letter-spacing: 0.15em; font-size: 0.75rem; text-transform: uppercase; }

/* ----- Cards ----- */
.feature-card {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 2rem; height: 100%;
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,0.07); }

.icon-box {
  width: 56px; height: 56px; border-radius: 10px;
  background: rgba(240,131,58,0.1); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}

.check-card {
  display: flex; gap: 0.75rem;
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  padding: 1rem 1.25rem;
}
.check-card:hover { border-color: var(--accent); }
.check-card .check { color: var(--accent); font-weight: 700; }

/* ----- Team ----- */
.team-card {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,0.08); }
.team-photo {
  aspect-ratio: 3 / 4;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.team-photo img {
  width: 100%; height: 100%; object-fit: contain;
  image-orientation: from-image;
}
.team-body { padding: 1rem; border-top: 4px solid var(--accent); }
.team-body h3 { font-size: 1rem; margin: 0; color: var(--primary); }
.team-body p  { font-size: 0.85rem; color: var(--muted); margin: 0.25rem 0 0; }

.group-title { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.group-title h2 { margin: 0; color: var(--primary); }
.group-title .line { flex: 1; height: 1px; background: var(--border); }

/* ----- Services ----- */
.service-block {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden;
  display: grid; grid-template-columns: 280px 1fr;
}
@media (max-width: 768px) { .service-block { grid-template-columns: 1fr; } }
.service-side {
  padding: 2rem;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(240,131,58,0.25), transparent 50%),
    linear-gradient(135deg, var(--primary-dark), var(--primary));
}
.service-side .num { font-size: 0.85rem; opacity: 0.7; margin-top: 1rem; }
.service-side h2 { color: #fff; margin: 0.25rem 0 0; }
.service-side .icon-circle {
  width: 56px; height: 56px; border-radius: 10px;
  background: var(--accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.service-body { padding: 2rem; }
.service-body h3 { color: var(--primary); margin-top: 1.5rem; font-size: 1.1rem; }
.service-body ul { list-style: none; padding: 0; }
.service-body ul li { padding: 0.25rem 0; }
.service-body ul li::before { content: "▸ "; color: var(--accent); font-weight: 700; }

/* ----- Journals ----- */
.journal-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 2rem;
  display: grid; grid-template-columns: 200px 1fr; gap: 2rem;
}
@media (max-width: 768px) { .journal-card { grid-template-columns: 1fr; } }
.journal-logo {
  background: var(--surface); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem; min-height: 180px;
}
.journal-logo img { max-height: 160px; max-width: 100%; object-fit: contain; }
.pill {
  display: inline-flex; align-items: center;
  padding: 0.25rem 0.75rem; border-radius: 999px;
  background: rgba(30,58,95,0.06); color: var(--primary);
  font-size: 0.75rem; font-weight: 600; margin-right: 0.5rem;
}

/* ----- Footer ----- */
.site-footer { background: var(--primary); color: rgba(255,255,255,0.85); padding: 3.5rem 0 0; margin-top: 5rem; }
.site-footer h4 { color: var(--accent); font-size: 1rem; margin-bottom: 1rem; }
.site-footer a { color: rgba(255,255,255,0.85); text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.site-footer ul { list-style: none; padding: 0; }
.site-footer ul li { padding: 0.25rem 0; font-size: 0.9rem; }
.footer-tags span {
  display: inline-block; padding: 0.25rem 0.75rem; border-radius: 999px;
  background: rgba(240,131,58,0.2); color: var(--accent);
  font-size: 0.75rem; margin-right: 0.5rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2.5rem; padding: 1.25rem 0;
  font-size: 0.8rem; color: rgba(255,255,255,0.6); text-align: center;
}

/* ----- Page hero (small) ----- */
.page-hero { padding: 4rem 0; text-align: center; color: #fff; }
.page-hero h1 { color: #fff; font-size: 2.5rem; }
.page-hero p { color: rgba(255,255,255,0.85); font-style: italic; }
