* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
}

a{
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
  color: inherit;
  text-decoration: underline;
}

html {
  width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  min-width: 320px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #18181b;
  background-color: #ffffff;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================
   Header Navbar
========================= */

.navbar {
  min-height: 72px;
  border-bottom: 1px solid #f4f4f5;
  display: flex;
  align-items: center;
  background-color: #ffffff;
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo-icon {
  background: url('/LogoSmall.svg') center/cover no-repeat;
  width: 100px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  color: #3b0764;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: clamp(14px, 2.5vw, 28px);
  flex: 1 1 auto;
  min-width: 0;
}

.nav-links li {
  min-width: 0;
}

.nav-links a {
  position: relative;
  display: inline-block;
  color: #4b5563;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    font-weight 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: #7c3aed;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #111827;
  font-weight: 600;
  height: 14px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}


/* =========================================================
   NAV ACTIONS
========================================================= */

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex: 0 0 auto;
  min-width: 0;
}

.btn-link {
  font-size: 14px;
  font-weight: 600;
  color: #18181b;
  text-decoration: none;
  white-space: nowrap;
}

.btn-purple {
  background: linear-gradient(130deg, #7a28ce 20%, #d02881, #f46725 90%);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

/* =========================
   Hero Section
========================= */

.hero-section {
  min-height: 420px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('/img/Section-heroBanner.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 60px 48px;
  color: #ffffff;
}

.hero-content {
  width: 100%;
  max-width: 600px;
}

.breadcrumb {
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  opacity: 0.8;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.9;
}

/* =========================
   Mission Section
========================= */

.mission-section {
  padding: 80px 0;
  background-color: #fdf6f0;
}

.vision-section {
  padding: 32px 20px;
  background-color: #fff;
}

.mission-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.badge {
  display: inline-block;
  background-color: #2e4a38;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
  color: #09090b;
  margin-bottom: 24px;
}

.paragraph {
  font-size: 14px;
  line-height: 1.6;
  color: #52525b;
  margin-bottom: 16px;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-top: 32px;
  border-top: 1px solid #e4e4e7;
  padding-top: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: #212121;
}

.stat-label {
  font-weight: 700;
  color: #232323;
}

.mission-image {
  width: 100%;
  height: 420px;
  border-radius: 16px;
  margin: 0;
  overflow: hidden;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1000&q=80')
    center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wall-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 12px;
  background: #fff8;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}

.logo-icon.lg {
  font-size: 24px;
  border-radius: 12px;
  flex-shrink: 0;
}

/* =========================
   Team Section
========================= */

.team-section {
  padding: 80px 0;
}

.sub-heading {
  font-size: 11px;
  font-weight: 700;
  color: #71717a;
  letter-spacing: 0.5px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin-bottom: 16px;
  background-color: #f4f4f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-logo {
  border: 1px solid #e4e4e7;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
}

.mil-icon {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.logo-icon.sm {
    width: 94px;
    height: 100px;
    font-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 76px 61px;
    border-radius: 100%;
    border: 2px solid blue;
    background-color: #fff;
}

.logo-icon {
  width: 100px;
  height: 40px;
  background-repeat: no-repeat;
  background-image: url('/img/Avatars/LogoSmall.svg');
}

.avatar-img {
  background-size: cover;
  background-position: center;
}

.placeholder-1 {
  background-image: url('/img/Avatars/samuel.jpg');
}

.placeholder-2 {
  background-image: url('/img/Avatars/penuel.png');
}

.placeholder-3 {
  background-image: url('/img/Avatars/faith.jpg');
}

.placeholder-4 {
  background-image: url('/img/Avatars/Border-3.png');
}

.placeholder-5 {
  background-image: url('/img/Avatars/Avatar.png');
}

.placeholder-6 {
  background-image: url('/img/Avatars/Container-2.png');
}

.placeholder-7 {
  background-image: url('/img/Avatars/Container.png');
}

.placeholder-8 {
  background-image: url('/img/Avatars/joshua.jpg');
}

.member-name {
  font-size: 15px;
  font-weight: 700;
  color: #09090b;
  margin-bottom: 4px;
}

.member-role {
  font-size: 10px;
  font-weight: 700;
  color: #71717a;
}

.view-link {
  font-size: 11px;
  color: #6d28d9;
  text-decoration: none;
  font-weight: 600;
}

/* =========================
   CTA Section
========================= */

.cta-section {
  background-color: #db2777;
  padding: 64px 0;
  color: #ffffff;
}

.cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-title {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
}

.btn-white {
  background-color: #ffffff;
  color: #18181b;
  padding: 12px 28px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

/* =========================
   Footer
========================= */

.footer-section {
  background-color: #ff6b00;
  color: #ffffff;
  padding: 64px 0 24px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 64px;
}

.footer-brand {
  max-width: 300px;
  flex-shrink: 0;
}

.logo-icon.light {
  background-color: transparent;
}

.footer-desc {
  font-size: 12px;
  line-height: 1.6;
  margin-top: 16px;
  opacity: 0.9;
}

.footer-columns {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 100px;
}

.footer-heading {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.footer-col a {
  color: #ffffff;
  font-size: 13px;
  text-decoration: none;
  opacity: 0.85;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  font-size: 12px;
  opacity: 0.9;
}

/* =========================================================
   LARGE TABLETS / SMALL LAPTOPS
   1024px and below
========================================================= */

@media (max-width: 1024px) {

  .container,
  .nav-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-actions {
    gap: 12px;
  }

  .hero-section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .mission-container {
    gap: 40px;
  }

  .mission-image {
    height: 380px;
  }

  .team-grid {
    gap: 24px;
  }

  .footer-container {
    gap: 40px;
  }

  .footer-columns {
    gap: 40px;
  }
}

/* =========================================================
   TABLETS
   768px and below
========================================================= */

@media (max-width: 768px) {

  .container,
  .nav-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Navbar */

  .navbar {
    min-height: 68px;
  }

  .nav-container {
    gap: 16px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .nav-actions {
    gap: 10px;
  }

  .btn-link {
    font-size: 13px;
  }

  .btn-purple {
    padding: 9px 16px;
    font-size: 13px;
  }

  /* Hero */

  .hero-section {
    min-height: 380px;
    padding: 56px 32px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  /* Mission */

  .mission-section {
    padding: 64px 0;
  }

  .mission-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .mission-image {
    height: 400px;
  }

  /* Team */

  .team-section {
    padding: 64px 0;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 24px;
  }

  /* CTA */

  .cta-section {
    padding: 56px 0;
  }

  .cta-container {
    gap: 24px;
  }

  .cta-title {
    font-size: 28px;
  }

  /* Footer */

  .footer-section {
    padding: 56px 0 24px;
  }

  .footer-container {
    flex-direction: column;
    gap: 48px;
    margin-bottom: 48px;
  }

  .footer-brand {
    max-width: 420px;
  }

  .footer-columns {
    gap: 48px;
  }
}

/* =========================================================
   MOBILE
   600px and below
========================================================= */

@media (max-width: 600px) {

  .container,
  .nav-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Navbar */

  .navbar {
    min-height: 64px;
  }

  .nav-container {
    flex-wrap: wrap;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .logo-icon {
    width: 90px;
    height: 36px;
  }

  .logo-text {
    font-size: 18px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 20px;
    padding-top: 8px;
    overflow-x: auto;
  }

  .nav-links a {
    font-size: 12px;
  }

  .nav-actions {
    margin-left: auto;
  }

  .btn-link {
    font-size: 12px;
  }

  .btn-purple {
    padding: 8px 13px;
    font-size: 12px;
  }

  /* Hero */

  .hero-section {
    min-height: 350px;
    padding: 48px 20px;
  }

  .hero-content {
    max-width: 100%;
  }

  .breadcrumb {
    font-size: 10px;
    margin-bottom: 10px;
  }

  .hero-title {
    font-size: 34px;
    margin-bottom: 14px;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.55;
  }

  /* Mission */

  .mission-section {
    padding: 56px 0;
  }

  .mission-container {
    gap: 40px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .paragraph {
    font-size: 13px;
  }

  .stats-row {
    gap: 24px;
    margin-top: 28px;
    padding-top: 20px;
  }

  .stat-number {
    font-size: 25px;
  }

  .stat-label {
    font-size: 13px;
  }

  .mission-image {
    height: 320px;
    border-radius: 14px;
  }

  .wall-logo {
    gap: 8px;
    padding: 12px 18px;
  }

  .logo-icon.lg {
    width: 38px;
    height: 38px;
  }

  .logo-text.lg {
    font-size: 26px;
  }

  /* Team */

  .team-section {
    padding: 56px 0;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 16px;
    margin-top: 32px;
  }

  .avatar {
    width: 88px;
    height: 88px;
  }

  .member-name {
    font-size: 14px;
  }

  .member-role {
    font-size: 9px;
  }

  .view-link {
    font-size: 10px;
  }

  /* CTA */

  .cta-section {
    padding: 48px 0;
  }

  .cta-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .cta-title {
    font-size: 27px;
  }

  .btn-white {
    padding: 11px 24px;
    font-size: 13px;
  }

  /* Footer */

  .footer-section {
    padding: 48px 0 20px;
  }

  .footer-container {
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 20px;
  }
}

/* =========================================================
   SMALL MOBILE
   400px and below
========================================================= */

@media (max-width: 400px) {

  .container,
  .nav-container {
    padding-left: 14px;
    padding-right: 14px;
  }

  /* Navbar */

  .logo-icon {
    width: 80px;
    height: 34px;
  }

  .nav-actions {
    gap: 7px;
  }

  .btn-link {
    font-size: 11px;
  }

  .btn-purple {
    padding: 8px 11px;
    font-size: 11px;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 11px;
  }

  /* Hero */

  .hero-section {
    min-height: 320px;
    padding: 42px 16px;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  /* Mission */

  .section-title {
    font-size: 25px;
  }

  .stats-row {
    gap: 18px;
  }

  .stat-number {
    font-size: 23px;
  }

  .stat-label {
    font-size: 12px;
  }

  .mission-image {
    height: 280px;
  }

  .wall-logo {
    padding: 10px 14px;
  }

  .logo-icon.lg {
    width: 34px;
    height: 34px;
  }

  .logo-text.lg {
    font-size: 22px;
  }

  /* Team */

  .team-grid {
    gap: 32px 10px;
  }

  .avatar {
    width: 80px;
    height: 80px;
  }

  .member-name {
    font-size: 13px;
  }

  /* CTA */

  .cta-title {
    font-size: 24px;
  }

  /* Footer */

  .footer-columns {
    gap: 28px 16px;
  }

  .footer-col a {
    font-size: 12px;
  }
}
