/* ══════════════════════════════════════════
   GSAA — Index / Home Page Styles
   Ghana Sociological & Anthropological Association
══════════════════════════════════════════ */



/*  HERO  */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, var(--green-mid) 0%, var(--green-deep) 70%);
}

.hero-carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

.hero-carousel-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7, 21, 38, 0.45); /* dark tint overlay on the background image */
}

.hero-carousel-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.28) 40%,
    rgba(0,0,0,0.08) 65%,
    transparent 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 10rem 4rem 6rem;
  max-width: 720px;
  animation: fadeUp 1s ease 0.3s both;
}
@media (max-width: 768px) {
  .hero-content { padding: 7rem 2rem 4rem; max-width: 100%; }
}
@media (max-width: 560px) {
  .hero-content { padding: 5rem 1rem 2rem; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(229,184,76,0.55);
  border-radius: 20px;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  width: fit-content;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 1.02;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  line-height: 1.5;
  max-width: 480px;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  max-width: 460px;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero-actions { gap: 0.8rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { min-width: auto; flex: 1 1 calc(50% - 0.4rem); }
}
@media (max-width: 560px) {
  .hero-actions { flex-direction: column; gap: 1rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; flex: unset; }
}

/*  HERO CONTAINER & GLASSMORPHIC CARD  */
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 10rem 4rem 6rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 8rem 2rem 4rem;
  }
}

@media (max-width: 560px) {
  .hero-container {
    padding: 7rem 1rem 3rem;
  }
}

.hero-text-side {
  animation: fadeUp 1s ease 0.3s both;
}

.hero-card-side {
  animation: fadeUp 1s ease 0.5s both;
  width: 100%;
}

.hero-conf-card {
  background: rgba(10, 35, 60, 0.45);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(229, 184, 76, 0.25);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: transform 0.3s, border-color 0.3s;
}

.hero-conf-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 184, 76, 0.45);
}

.hero-conf-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: rgba(229, 184, 76, 0.15);
  border: 1px solid var(--gold);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-conf-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-conf-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.hero-conf-theme {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(245, 239, 224, 0.85);
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin: 1.5rem 0;
  letter-spacing: 0.02em;
}

.hero-conf-theme span {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.hero-conf-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-conf-meta-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.hero-conf-meta-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.hero-conf-actions {
  display: flex;
  gap: 1rem;
}

.hero-conf-actions .btn-primary {
  flex: 1;
  text-align: center;
  padding: 0.8rem 1rem;
  font-size: 0.82rem;
}

.hero-conf-actions .btn-outline {
  flex: 1;
  text-align: center;
  padding: 0.8rem 1rem;
  font-size: 0.82rem;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  text-decoration: none;
}

.hero-conf-actions .btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}


/*  STATS STRIP  */
.stats-strip {
  background: var(--green-mid);
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  overflow: hidden;
}

.stat-item {
  display: flex; align-items: center; gap: 1rem;
  flex-shrink: 0;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat-info { line-height: 1.3; }
.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
}
.stat-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
}

.stat-sep {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.3);
}

/*  SECTION COMMON  */
section { padding: 7rem 4rem; }

.section-label {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}

.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--gold);
}

.section-label--center {
  justify-content: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
}

.section-title em {
  font-style: italic;
  color: var(--green-mid);
}

/* Utility: gold text color */
.text-gold { color: var(--gold); }

/*  MISSION  */
.mission {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.mission-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin: 2rem 0;
  font-weight: 300;
}

.mission-pillars {
  display: flex; flex-direction: column; gap: 1rem;
  margin-top: 2rem;
}

.pillar {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  transition: all 0.3s;
}

.pillar:hover {
  transform: translateX(6px);
  box-shadow: 4px 4px 20px rgba(0,0,0,0.06);
}

.pillar-icon {
  font-size: 1.3rem; flex-shrink: 0; margin-top: 2px;
}

.pillar-title {
  font-weight: 600; font-size: 0.88rem;
  color: var(--text-dark); margin-bottom: 0.25rem;
}

.pillar-desc {
  font-size: 0.95rem;
  color: var(--text-light); line-height: 1.6;
}

.mission-visual {
  position: relative;
}

.adinkra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.adinkra-card {
  aspect-ratio: 1;
  background: var(--green-deep);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: visible;
  margin-bottom: 1.5rem;
}

.adinkra-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-mid), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 4px;
}

.adinkra-card:hover::before { opacity: 1; }
.adinkra-card:hover { transform: scale(1.04); }

.adinkra-card:nth-child(2) { background: var(--red-kente); margin-top: 1.5rem; }
.adinkra-card:nth-child(5) { background: var(--green-accent); margin-top: -1.5rem; }

.adinkra-sym { font-size: 2rem; position: relative; z-index: 1; }

.adinkra-sym-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 4px;
  transition: transform 0.3s;
}

.adinkra-name {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0; right: 0;
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  z-index: 1;
}

/*  FOCUS AREAS  */
.focus {
  background: var(--white);
}

.focus-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.focus-card {
  position: relative;
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s;
  background: var(--white);
  cursor: pointer;
}

.focus-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green-mid));
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}

.focus-card:hover::before { transform: scaleX(1); }
.focus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  border-color: transparent;
}

.focus-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(0,59,115,0.08);
  line-height: 1;
  margin-bottom: 1rem;
}

.focus-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-accent));
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.focus-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.focus-text {
  font-size: 0.95rem; line-height: 1.8;
  color: var(--text-light);
}

.focus-read-more {
  color: var(--green-mid);
  font-size: 0.78rem;
  cursor: pointer;
  font-weight: 600;
}

/* btn-outline dark variant (for light backgrounds) */
.btn-outline--dark {
  color: var(--green-mid);
  border-color: var(--green-mid);
}

/* btn-outline light variant (for dark backgrounds) */
.btn-outline--light {
  border-color: rgba(255,255,255,0.45);
  color: var(--white);
}
.btn-outline--light:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/*  EVENTS  */
.events {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}

.events::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 80px solid rgba(229,184,76,0.06);
}

.events .section-label,
.events .section-title .text-gold,
.join .section-label,
.join .section-title .text-gold {
  color: var(--gold);
}

.events .section-label::before,
.join .section-label::before {
  background: var(--gold);
}

.events .section-title { color: var(--cream); }
.events .section-label { margin-bottom: 0.5rem; }

.events-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.events-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5rem;
}

.event-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 2rem;
  transition: all 0.3s;
  cursor: pointer;
}

.event-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(229,184,76,0.45);
  transform: translateY(-4px);
}

.event-card.featured {
  background: linear-gradient(135deg, rgba(229,184,76,0.12), rgba(229,184,76,0.03));
  border-color: rgba(229,184,76,0.35);
  grid-row: span 1;
}

.event-date {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.event-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.event-card.featured .event-title {
  font-size: 1.5rem;
}

.event-desc {
  font-size: 0.95rem; line-height: 1.7;
  color: rgba(245,239,224,0.5);
  margin-bottom: 1.5rem;
}

.event-meta {
  display: flex; align-items: center; gap: 0.75rem;
  flex-wrap: wrap;
}

.event-tag {
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(229,184,76,0.45);
  border-radius: 20px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.event-loc {
  font-size: 0.75rem;
  color: rgba(245,239,224,0.4);
  display: flex; align-items: center; gap: 0.3rem;
}

/*  LEADERSHIP  */
.leadership {
  background: var(--cream);
  text-align: center;
}

.leadership .section-label,
.leadership .section-title {
  justify-content: center;
}

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.leader-card {
  background: var(--white);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s;
  cursor: pointer;
}

.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.leader-card.president {
  background: var(--green-deep);
  border: none;
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 3rem;
  padding: 3rem 4rem;
  text-align: left;
}

.leader-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 900;
  background: var(--green-mid);
  color: var(--gold);
  border: 3px solid rgba(229,184,76,0.35);
  flex-shrink: 0;
  margin: 0 auto 1.5rem;
}

.leader-card.president .leader-avatar {
  width: 110px; height: 110px;
  font-size: 2.2rem;
  background: rgba(229,184,76,0.15);
  border-color: var(--gold);
  margin: 0;
}

/* Leader avatar color variants */
.leader-avatar--red {
  background: rgba(176,58,46,0.1);
  color: var(--red-kente);
  border-color: rgba(176,58,46,0.3);
}

.leader-avatar--green {
  background: rgba(42,123,200,0.1);
  color: var(--green-accent);
  border-color: rgba(42,123,200,0.3);
}

.leader-avatar--gold {
  background: rgba(229,184,76,0.12);
  color: var(--gold);
  border-color: rgba(229,184,76,0.35);
}

.leader-role {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.leader-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.leader-card.president .leader-name {
  font-size: 1.8rem;
  color: var(--cream);
}

.leader-bio {
  font-size: 0.8rem; line-height: 1.7;
  color: var(--text-light);
}

.leader-card.president .leader-bio {
  color: rgba(245,239,224,0.6);
  font-size: 0.9rem;
  max-width: 600px;
}

.president-info { flex: 1; }

/* Leadership subtitle */
.leadership-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Leader photo (for president card) */
.leader-photo-wrap {
  width: 80px; height: 80px;
  border-radius: 50%; overflow: hidden;
  flex-shrink: 0;
  margin: 0 auto 1.5rem;
  position: relative;
  border: 3px solid rgba(229,184,76,0.35);
  background: var(--green-mid);
}
.leader-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.leader-photo-wrap.president-photo {
  width: 120px; height: 120px;
  border-color: var(--gold);
  margin: 0;
}
.leader-photo-fallback {
  display: none;
  width: 100%; height: 100%;
  align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 900;
  color: var(--gold);
  background: var(--green-mid);
}
.president-photo .leader-photo-fallback {
  font-size: 2.4rem;
  background: rgba(229,184,76,0.15);
}

/* ── PROFILE GRID (individual leader cards) ── */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.profile-card {
  background: var(--white);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: rgba(229,184,76,0.25);
}

.profile-photo-wrap {
  width: 90px; height: 90px;
  border-radius: 50%; overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 1.2rem;
  position: relative;
  border: 3px solid rgba(229,184,76,0.3);
  background: var(--green-mid);
}
.profile-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.profile-photo-fallback {
  display: none;
  width: 100%; height: 100%;
  align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 900;
  color: var(--gold);
  background: var(--green-mid);
}

.profile-info { flex: 1; }

.profile-role {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.profile-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.profile-bio {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--text-light);
}

/*  JOIN  */
.join {
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-deep) 60%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.join::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 80px);
}

.join-inner {
  position: relative; z-index: 1;
  max-width: 680px; margin: 0 auto;
}

.join .section-title { color: var(--cream); margin-bottom: 1.5rem; }
.join .section-label { justify-content: center; margin-bottom: 1.5rem; }

.join-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.join-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap;
}

/*  SCROLL REVEAL  */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ADINKRA TOOLTIP */
.adinkra-tooltip {
  position: fixed;
  z-index: 300;
  background: var(--green-deep);
  color: var(--cream);
  padding: 1rem 1.4rem;
  border-radius: 4px;
  border: 1px solid rgba(229,184,76,0.35);
  box-shadow: 0 12px 36px rgba(0,0,0,0.3);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  max-width: 280px;
  font-size: 0.82rem;
  line-height: 1.6;
}
.adinkra-tooltip.show { opacity: 1; }
.adinkra-tooltip-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.adinkra-tooltip-text {
  color: rgba(245,239,224,0.7);
}

/* FLOATING ADINKRA BACKGROUND SYMBOLS */
.floating-adinkra {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.floating-adinkra svg {
  position: absolute;
  opacity: 0.07;
  fill: none;
  stroke: rgba(229,184,76,0.8);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.adinkra-drift {
  animation: adinkraDrift var(--dur, 22s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes adinkraDrift {
  0%, 100% { transform: translateY(0) rotate(var(--rot-start, 0deg)); }
  50%      { transform: translateY(-18px) rotate(var(--rot-end, 6deg)); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .mission { grid-template-columns: 1fr; gap: 3rem; }
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: 1fr; }
  .leaders-grid { grid-template-columns: 1fr 1fr; }
  .leader-card.president { flex-direction: column; text-align: center; padding: 2.5rem; }
  .leader-card.president .leader-avatar { margin: 0 auto 1.5rem; }
  .leader-photo-wrap.president-photo { margin: 0 auto 1.5rem; }
  .profile-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 3rem 1.5rem; }
  .hero-content { padding: 7rem 1.5rem 3rem; max-width: 100%; }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.5) 0%,
      rgba(0,0,0,0.25) 55%,
      rgba(0,0,0,0.1) 100%
    );
  }
  .hero-badge { font-size: 0.75rem; padding: 0.35rem 0.8rem; }
  .hero-title { font-size: clamp(2rem, 5vw, 3.5rem); }
  .hero-subtitle { font-size: 1.2rem; }
  .hero-desc { font-size: 0.95rem; }
  .hero-actions { gap: 0.8rem; }
  .stats-strip { padding: 1.2rem 1.5rem; flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .stat-item { gap: 0.7rem; }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: 0.75rem; }
  .stat-sep { display: none; }
  .mission { gap: 2rem; }
  .mission-text { font-size: 1.1rem; }
  .adinkra-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .adinkra-card { margin-bottom: 1rem; }
  .adinkra-card:nth-child(2) { margin-top: 0; }
  .adinkra-card:nth-child(5) { margin-top: 0; }
  .adinkra-name { font-size: 0.55rem; top: calc(100% + 0.3rem); }
  .focus-grid { grid-template-columns: 1fr; }
  .focus-card { padding: 2rem; }
  .focus-num { font-size: 2.5rem; }
  .events-grid { grid-template-columns: 1fr; }
  .event-card { padding: 1.5rem; }
  .event-title { font-size: 1rem; }
  .event-card.featured .event-title { font-size: 1.2rem; }
  .leaders-grid { grid-template-columns: 1fr; }
  .leader-card { padding: 2rem 1.5rem; }
  .leader-card.president { flex-direction: column; text-align: center; padding: 2rem 1.5rem; gap: 1.5rem; }
  .leader-card.president .leader-avatar { margin: 0 auto; }
  .leader-photo-wrap.president-photo { margin: 0 auto 1.5rem; }
  .profile-grid { grid-template-columns: repeat(2, 1fr); }
  .focus-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .events-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 560px) {
  section { padding: 2rem 1rem; }
  .hero-content { padding: 5rem 1rem 2rem; }
  .hero-title { font-size: clamp(1.5rem, 4vw, 2.5rem); }
  .hero-subtitle { font-size: 1rem; }
  .hero-desc { font-size: 0.9rem; }
  .hero-badge { font-size: 0.65rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary { width: 100%; text-align: center; justify-content: center; }
  .stats-strip { padding: 1rem; }
  .stat-num { font-size: 1.2rem; }
  .stat-label { font-size: 0.65rem; }
  .stat-info { line-height: 1.2; }
  .mission-pillars { gap: 0.8rem; }
  .pillar { padding: 1rem; gap: 0.75rem; }
  .pillar-icon { font-size: 1.1rem; }
  .pillar-title { font-size: 0.8rem; }
  .pillar-desc { font-size: 0.85rem; }
  .adinkra-grid { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
  .adinkra-card { aspect-ratio: 1; margin-bottom: 1.2rem; }
  .adinkra-card:nth-child(2) { margin-top: 0.6rem; }
  .adinkra-card:nth-child(5) { margin-top: -0.6rem; }
  .adinkra-name { font-size: 0.52rem; top: calc(100% + 0.25rem); }
  .focus-card { padding: 1.5rem; }
  .focus-num { font-size: 2rem; }
  .focus-icon { width: 40px; height: 40px; font-size: 1.1rem; }
  .focus-title { font-size: 1rem; }
  .focus-text { font-size: 0.88rem; }
  .event-card { padding: 1.2rem; }
  .event-title { font-size: 0.95rem; }
  .event-desc { font-size: 0.88rem; }
  .event-date { font-size: 0.65rem; }
  .event-tag { font-size: 0.6rem; padding: 0.25rem 0.6rem; }
  .leader-card { padding: 1.5rem 1rem; }
  .leader-avatar { width: 70px; height: 70px; font-size: 1.4rem; }
  .leader-card.president .leader-avatar { width: 90px; height: 90px; font-size: 1.8rem; }
  .leader-name { font-size: 0.95rem; }
  .leader-title { font-size: 0.8rem; }
  .leader-bio { font-size: 0.8rem; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-photo-wrap { width: 75px; height: 75px; }
  .leader-photo-wrap.president-photo { width: 100px; height: 100px; }
}

/*  FOCUS STRIP  */
.focus-strip {
  background: var(--green-deep);
  color: var(--white);
  padding: 2.2rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 5px solid var(--gold);
}

.focus-strip-item {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  text-transform: uppercase;
}

.focus-strip-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

@media (max-width: 768px) {
  .focus-strip {
    gap: 1.5rem;
    padding: 1.8rem 1rem;
    flex-direction: column;
  }
  .focus-strip-dot {
    display: none;
  }
  .focus-strip-item {
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
  }
}

/*  MOBILE CONFERENCE CARD  */
.mobile-conf-section {
  padding: 3rem 1.5rem;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.mobile-conf-container {
  max-width: 600px;
  margin: 0 auto;
}
.mobile-conf-section .hero-conf-card {
  background: var(--green-deep);
  border-color: rgba(229,184,76,0.3);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
[data-theme="dark"] .mobile-conf-section {
  border-bottom-color: rgba(255,255,255,0.05);
}

/*  MEDIA & NEWS SECTION  */
.media-news {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.media-news-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 3.5rem;
}
.media-news-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
}
.media-news-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.media-slider-nav {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.media-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(229, 184, 76, 0.4);
  color: var(--green-deep);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.media-nav-btn:hover {
  background: var(--gold);
  color: var(--green-deep);
  transform: scale(1.08);
}
[data-theme="dark"] .media-nav-btn {
  background: #112233;
  color: var(--gold);
  border-color: rgba(229,184,76,0.3);
}

.media-news-slider {
  display: flex;
  gap: 1.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 0.2rem 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.media-news-slider::-webkit-scrollbar {
  height: 6px;
}
.media-news-slider::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.04);
  border-radius: 3px;
}
.media-news-slider::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

.media-card {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  overflow: hidden;
  flex: 0 0 380px;
  max-width: 380px;
  scroll-snap-align: start;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.media-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  border-color: rgba(229, 184, 76, 0.4);
}

.media-card-img-wrap {
  width: 100%;
  height: 210px;
  position: relative;
  overflow: hidden;
  background: var(--green-mid);
  flex-shrink: 0;
  border-bottom: 3px solid var(--gold);
}
.media-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.media-card:hover .media-card-img-wrap img {
  transform: scale(1.07);
}

.media-card-body {
  padding: 1.5rem 1.6rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.media-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 0.25rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--gold-pale);
  color: var(--gold);
  border-radius: 4px;
  margin-bottom: 0.85rem;
}
.media-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-dark);
  margin-bottom: 0.85rem;
}
.media-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.media-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-mid);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 0.85rem;
  margin-bottom: 1rem;
}
.media-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-mid);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
}
.media-link:hover {
  color: var(--gold);
}

[data-theme="dark"] .media-card {
  background: #0f172a;
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .media-card:hover {
  border-color: rgba(229,184,76,0.4);
}
[data-theme="dark"] .media-title {
  color: #f8fafc;
}
[data-theme="dark"] .media-footer {
  border-top-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .media-link {
  color: var(--gold);
}

@media (max-width: 768px) {
  .media-card {
    flex: 0 0 85vw;
    max-width: 85vw;
  }
}
