/* Import your existing site styling so header/footer/buttons match */
@import url("style.css");

/* ===== ABOUT PAGE OVERRIDES (scoped) ===== */
.about-page{
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(37,99,235,.22), transparent 60%),
    radial-gradient(900px 600px at 85% 35%, rgba(236,72,153,.14), transparent 55%),
    linear-gradient(180deg, #0a152b 0%, #081223 50%, #07101f 100%);
  min-height: 100vh;
}

/* Keep content readable on “dark theme” */
.about-main{
  padding-top: 10px;
}

/* Shared wrap width */
.about-wrap{
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

/* Hero */
.about-hero{
  padding: 34px 0 18px;
}

.about-kicker{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 8px 12px;
  border-radius: 999px;
  margin: 0 0 14px;
}

.about-hero h1{
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.about-lead{
  margin: 0;
  color: rgba(255,255,255,0.86);
  font-size: 16px;
  line-height: 1.65;
  max-width: 70ch;
}

/* Facts strip */
.facts{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}

.fact{
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 12px 14px;
  position: relative;
}

.fact::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  bottom:10px;
  width:4px;
  border-radius: 6px;
  background: #b80f2e; /* red accent */
}

.fact-label{
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,0.78);
  text-transform: uppercase;
  letter-spacing: .35px;
  margin-left: 10px;
}

.fact-value{
  margin-top: 4px;
  font-size: 14px;
  color: rgba(255,255,255,0.92);
  font-weight: 700;
  line-height: 1.35;
  margin-left: 10px;
}

/* Content area */
.about-content{
  padding: 18px 0 40px;
}

.about-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}

/* Cards (dark themed to match site) */
.about-card{
  background: rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 20px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 40px rgba(0,0,0,0.30);
  transition: all 0.3s ease;
}

.about-card:hover{
  transform: translateY(-2px);
  border-color: rgba(37,99,235,0.35);
  box-shadow: 0 12px 48px rgba(0,0,0,0.40), 0 0 20px rgba(37,99,235,0.15);
  background: rgba(255,255,255,0.08);
}

.about-card h2{
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: #eaf2ff;
  font-weight: 700;
}

.about-card p{
  margin: 0;
  color: rgba(234,242,255,0.85);
  line-height: 1.65;
  font-size: 14px;
}

.about-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(234,242,255,0.85);
  line-height: 1.75;
  font-size: 14px;
}

.about-list li{
  margin: 6px 0;
}

/* FAQ */
.about-faq{
  margin-top: 18px;
  background: rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 20px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 40px rgba(0,0,0,0.30);
}

.about-faq h2{
  margin: 0 0 12px;
  font-size: 18px;
  color: #eaf2ff;
  font-weight: 700;
}

.about-faq details{
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 12px 0;
}

.about-faq details:first-of-type{
  border-top: none;
}

.about-faq summary{
  cursor: pointer;
  font-weight: 700;
  color: rgba(234,242,255,0.92);
  transition: color 0.2s ease;
}

.about-faq summary:hover{
  color: rgba(37,99,235,0.85);
}

.about-faq p{
  margin: 10px 0 0;
  color: rgba(234,242,255,0.80);
  line-height: 1.65;
  font-size: 14px;
}

/* CTA */
.about-cta{
  margin-top: 18px;
  border-radius: 18px;
  padding: 16px;
  background: rgba(0, 38, 84, 0.65);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.about-cta-text h3{
  margin: 0 0 6px;
  color: #fff;
  font-size: 16px;
}

.about-cta-text p{
  margin: 0;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  font-size: 14px;
  max-width: 70ch;
}

.about-cta-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Buttons: re-use your home button classes if they exist; otherwise safe fallback */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary{
  background: #1e4fa8; /* RAF-ish blue */
  color: #fff;
  border-color: rgba(255,255,255,0.12);
}

.btn-primary:hover{
  filter: brightness(1.07);
}

.btn-ghost{
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.18);
}

.btn-ghost:hover{
  background: rgb(255, 0, 0);
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .facts{
    grid-template-columns: 1fr;
  }
  .about-grid{
    grid-template-columns: 1fr;
  }
  .about-cta{
    flex-direction: column;
    align-items: stretch;
  }
  .about-cta-actions{
    justify-content: flex-start;
  }
}
 

/* MEET THE STAFF SECTION */
.staff-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.staff-card {
  text-align: center;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s;
}

.staff-card:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-4px);
}

.staff-photo {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(37, 99, 235, 0.5);
}

.staff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-name {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 4px;
}

.staff-rank {
  font-size: 0.9rem;
  color: #60a5fa;
  font-weight: 600;
  margin-bottom: 4px;
}

.staff-role {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .staff-photo {
    width: 120px;
    height: 120px;
  }
}