/* ==========================================================================
   GCV Pi Network Association Ghana — Theme CSS
   ========================================================================== */

:root {
  --gcv-primary:       #6c1fc9;
  --gcv-primary-dark:  #2f024b;
  --gcv-primary-light: rgba(108,31,201,0.15);
  --gcv-gold:          #d4a017;
  --gcv-gold-light:    #f0c040;
  --gcv-bg:            #0d0618;
  --gcv-bg2:           #130924;
  --gcv-bg3:           #1a0d2e;
  --gcv-text:          #f0eaf8;
  --gcv-muted:         #9b87b8;
  --gcv-border:        rgba(255,255,255,0.08);
  --gcv-surface:       rgba(255,255,255,0.04);
  --gcv-radius:        12px;
  --gcv-radius-lg:     20px;
}

/* ── BASE ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  background: var(--gcv-bg);
  color: var(--gcv-text);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── ACCENT SPAN ── */
.gcv-accent {
  background: linear-gradient(135deg, var(--gcv-primary), var(--gcv-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── HEADER / NAV ── */
.gcv-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13,6,24,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gcv-border);
}

.gcv-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  height: 72px;
}

.gcv-nav-logo { gap: 12px; }
.gcv-nav-logo img { width: 52px; height: 52px; object-fit: contain; }

.gcv-site-title {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800 !important;
  font-size: 0.9rem !important;
  line-height: 1.2 !important;
  background: linear-gradient(135deg, #fff, var(--gcv-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wp-block-navigation a {
  color: var(--gcv-muted) !important;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  padding: 6px 12px;
}
.wp-block-navigation a:hover,
.wp-block-navigation .current-menu-item a { color: var(--gcv-text) !important; }

/* ── BUTTONS ── */
.gcv-btn-primary .wp-block-button__link,
.wp-block-button.gcv-btn-primary .wp-block-button__link {
  background: var(--gcv-primary) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 100px !important;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  padding: 12px 28px;
  transition: all 0.2s;
}
.gcv-btn-primary .wp-block-button__link:hover { background: #7c2fd9 !important; transform: translateY(-2px); }

.gcv-btn-outline .wp-block-button__link {
  background: transparent !important;
  color: var(--gcv-text) !important;
  border: 1px solid var(--gcv-border) !important;
  border-radius: 100px !important;
  font-weight: 600;
  padding: 12px 28px;
  transition: all 0.2s;
}
.gcv-btn-outline .wp-block-button__link:hover { border-color: var(--gcv-primary) !important; color: #fff !important; }

.gcv-btn-white .wp-block-button__link {
  background: #fff !important;
  color: var(--gcv-primary) !important;
  border-radius: 100px !important;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  padding: 12px 28px;
}

.gcv-nav-cta .wp-block-button__link {
  background: var(--gcv-primary);
  color: #fff;
  border-radius: 100px;
  padding: 8px 22px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ── HERO ── */
.gcv-hero.wp-block-cover { background: var(--gcv-bg); }
.gcv-hero .wp-block-cover__background {
  background: linear-gradient(135deg, rgba(13,6,24,0.95) 0%, rgba(47,2,75,0.7) 60%, rgba(13,6,24,0.5) 100%) !important;
}

.gcv-page-hero.wp-block-cover {
  margin-top: 0;
  position: relative;
}

.gcv-hero-badge,
.gcv-hero-badge p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108,31,201,0.2);
  border: 1px solid rgba(108,31,201,0.4);
  color: #c084fc;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin: 0;
}

.gcv-hero-title { color: var(--gcv-text); margin: 16px 0; }
.gcv-hero-subtitle { color: var(--gcv-muted); max-width: 520px; font-size: 1.05rem; }

.gcv-hero-stats {
  gap: 32px;
  margin-top: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--gcv-border);
}
.gcv-stat strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gcv-primary), var(--gcv-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gcv-stat span { font-size: 0.78rem; color: var(--gcv-muted); }
.gcv-stat p { margin: 0; }

/* ── SECTIONS ── */
.gcv-section {
  padding: 80px 5%;
  background: var(--gcv-bg);
}
.gcv-section--dark  { background: var(--gcv-bg2); }
.gcv-section--darker { background: var(--gcv-bg3); }

.gcv-section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gcv-gold);
  margin: 0 0 10px;
}

.gcv-section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--gcv-text);
}

.gcv-section-subtitle {
  color: var(--gcv-muted);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto 40px;
}

/* ── SERVICE CARDS ── */
.gcv-services-grid { gap: 20px; margin-top: 40px; }
.gcv-service-card {
  background: var(--gcv-surface);
  border: 1px solid var(--gcv-border);
  border-radius: var(--gcv-radius-lg);
  padding: 32px 24px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.gcv-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gcv-primary), var(--gcv-gold));
}
.gcv-service-card:hover { transform: translateY(-6px); border-color: rgba(108,31,201,0.4); }
.gcv-service-icon p { font-size: 2.4rem; margin: 0 0 16px; }
.gcv-service-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--gcv-text);
}
.gcv-service-card p { color: var(--gcv-muted); font-size: 0.88rem; }

/* ── STATS STRIP ── */
.gcv-stats-strip {
  background: var(--gcv-bg2);
  border-bottom: 1px solid var(--gcv-border);
  padding: 28px 5%;
}
.gcv-stats-grid { gap: 20px; }
.gcv-stat-item { text-align: center; }
.gcv-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gcv-primary), var(--gcv-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}
.gcv-stat-lbl { font-size: 0.75rem; color: var(--gcv-muted); margin: 4px 0 0; }

/* ── FILTER BAR ── */
.gcv-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
.gcv-filter-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.gcv-filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--gcv-muted);
  background: var(--gcv-surface);
  border: 1px solid var(--gcv-border);
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}
.gcv-filter-btn:hover { border-color: var(--gcv-primary); color: var(--gcv-text); }
.gcv-filter-btn.active { background: var(--gcv-primary); color: #fff; border-color: var(--gcv-primary); }

/* ── EVENT / UPDATE CARDS ── */
.gcv-events-grid,
.gcv-updates-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-bottom: 24px;
}
#gcvUpdatesGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) { #gcvUpdatesGrid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { #gcvUpdatesGrid { grid-template-columns: 1fr; gap: 20px; } }
.gcv-card {
  background: var(--gcv-bg2);
  border: 1px solid var(--gcv-border);
  border-radius: var(--gcv-radius-lg);
  overflow: hidden;
  transition: transform 0.3s;
}
.gcv-card:hover { transform: translateY(-5px); }
.gcv-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.gcv-card-title { font-size: 1.05rem; font-weight: 700; margin: 10px 0 8px; color: var(--gcv-text); line-height: 1.4; }
.gcv-card-excerpt { font-size: 0.82rem; color: var(--gcv-muted); line-height: 1.6; margin-bottom: 14px; }
.gcv-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid var(--gcv-border); }
.gcv-card-link { color: var(--gcv-gold); font-size: 0.8rem; font-weight: 600; text-decoration: none; }
.gcv-card-link:hover { color: var(--gcv-gold-light); }
.gcv-card-body { padding: 20px 22px 18px; }
.gcv-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.gcv-card-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
}
.gcv-badge-conference { background: rgba(108,31,201,0.85); color: #fff; }
.gcv-badge-training   { background: rgba(16,185,129,0.85);  color: #fff; }
.gcv-badge-webinar    { background: rgba(59,130,246,0.85);  color: #fff; }
.gcv-badge-outreach   { background: rgba(245,158,11,0.9);   color: #000; }
.gcv-badge-meetup     { background: rgba(236,72,153,0.85);  color: #fff; }
.gcv-badge-merchant   { background: rgba(108,31,201,0.2);   color: #c084fc; }
.gcv-badge-community  { background: rgba(236,72,153,0.15);  color: #f9a8d4; }
.gcv-badge-education  { background: rgba(16,185,129,0.15);  color: #6ee7b7; }
.gcv-badge-integration{ background: rgba(59,130,246,0.15);  color: #93c5fd; }
.gcv-badge-tech       { background: rgba(245,158,11,0.15);  color: #fcd34d; }
.gcv-badge-adoption   { background: rgba(212,160,23,0.15);  color: var(--gcv-gold-light); }

.gcv-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--gcv-text);
}
.gcv-card-excerpt { font-size: 0.82rem; color: var(--gcv-muted); line-height: 1.6; margin-bottom: 16px; }
.gcv-card-details { display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }
.gcv-card-detail  { font-size: 0.75rem; color: var(--gcv-muted); }
.gcv-card-link    { font-size: 0.78rem; font-weight: 600; color: var(--gcv-gold-light); text-decoration: none; }
.gcv-card-link:hover { color: var(--gcv-gold); }

.gcv-result-count { text-align: center; font-size: 0.85rem; color: var(--gcv-muted); }
.gcv-result-count strong { color: var(--gcv-gold-light); }
.gcv-loading { text-align: center; padding: 60px; color: var(--gcv-muted); }

/* ── CTA BANNER ── */
.gcv-cta-banner.wp-block-cover .wp-block-cover__background {
  background: linear-gradient(135deg, rgba(108,31,201,0.92), rgba(47,2,75,0.88)) !important;
}

/* ── CONTACT ── */
.gcv-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.gcv-contact-form-wrap h2,
.gcv-contact-info h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--gcv-text);
}
.gcv-form-row { margin-bottom: 18px; }
.gcv-form-row label { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gcv-muted); margin-bottom: 8px; }
.gcv-form-row input,
.gcv-form-row textarea,
.gcv-form-row select {
  width: 100%;
  background: var(--gcv-bg3);
  border: 1px solid var(--gcv-border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--gcv-text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.gcv-form-row input:focus,
.gcv-form-row textarea:focus { border-color: var(--gcv-primary); }
.gcv-btn-primary.gcv-btn-full,
button.gcv-btn-primary {
  width: 100%;
  padding: 14px;
  background: var(--gcv-primary);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}
button.gcv-btn-primary:hover { background: #7c2fd9; transform: translateY(-2px); }

.gcv-contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.gcv-ci-icon { width: 46px; height: 46px; background: var(--gcv-primary-light); border: 1px solid rgba(108,31,201,0.3); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.gcv-contact-item strong { display: block; font-weight: 700; margin-bottom: 4px; color: var(--gcv-text); }
.gcv-contact-item p { color: var(--gcv-muted); font-size: 0.88rem; margin: 0; }

/* ── NEWSLETTER ── */
.gcv-newsletter-section {
  background: var(--gcv-bg2);
  border-top: 1px solid var(--gcv-border);
  padding: 64px 5%;
  text-align: center;
}
.gcv-newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 24px auto 0;
}
.gcv-newsletter-input {
  flex: 1;
  background: var(--gcv-bg3);
  border: 1px solid var(--gcv-border);
  border-radius: 100px;
  padding: 12px 20px;
  color: var(--gcv-text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  outline: none;
}
.gcv-newsletter-input:focus { border-color: var(--gcv-primary); }
.gcv-newsletter-form button {
  padding: 12px 28px;
  background: var(--gcv-primary);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.gcv-newsletter-form button:hover { background: #7c2fd9; }

/* ── FOOTER ── */
.gcv-footer {
  background: var(--gcv-bg2);
  border-top: 1px solid var(--gcv-border);
}
.gcv-footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 5% 40px;
  gap: 40px;
}
.gcv-footer-brand p { color: var(--gcv-muted); font-size: 0.88rem; line-height: 1.7; max-width: 260px; margin: 12px 0; }
.gcv-footer-site-title { font-family: 'Syne', sans-serif !important; font-size: 1rem !important; font-weight: 800 !important; color: var(--gcv-text) !important; }
.gcv-footer-col-title { font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--gcv-text); margin: 0 0 16px; letter-spacing: 0.04em; }
.gcv-footer-nav a { color: var(--gcv-muted) !important; font-size: 0.85rem; text-decoration: none; line-height: 2.2; transition: color 0.2s; }
.gcv-footer-nav a:hover { color: var(--gcv-gold-light) !important; }
.gcv-social-links { gap: 10px; margin-top: 8px; }
.wp-social-link { background: var(--gcv-surface) !important; border: 1px solid var(--gcv-border) !important; border-radius: 8px !important; transition: all 0.2s !important; }
.wp-social-link:hover { background: var(--gcv-primary) !important; border-color: var(--gcv-primary) !important; }
.gcv-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 5%;
  border-top: 1px solid var(--gcv-border);
}
.gcv-copyright { font-size: 0.8rem; color: var(--gcv-muted); margin: 0; }
.gcv-footer-legal a { font-size: 0.78rem; color: var(--gcv-muted); text-decoration: none; margin-left: 20px; }
.gcv-footer-legal a:hover { color: var(--gcv-gold-light); }

/* ── SINGLE POST ── */
.gcv-single-hero-img img { width: 100%; max-height: 400px; object-fit: cover; border-radius: var(--gcv-radius-lg); margin-bottom: 32px; }
.gcv-single-title { font-family: 'Syne', sans-serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; margin: 16px 0 24px; color: var(--gcv-text); }
.gcv-single-meta { gap: 12px; margin-bottom: 8px; }
.gcv-event-details-box { background: var(--gcv-bg2); border: 1px solid var(--gcv-border); border-radius: var(--gcv-radius); padding: 24px; margin-bottom: 32px; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 16px; }
.gcv-event-detail-item strong { display: block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gcv-muted); margin-bottom: 4px; }
.gcv-event-detail-item span { color: var(--gcv-text); font-size: 0.9rem; }

/* ── TOAST ── */
.gcv-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--gcv-bg3);
  border: 1px solid var(--gcv-border);
  border-radius: var(--gcv-radius);
  padding: 14px 22px;
  color: var(--gcv-text);
  font-size: 0.88rem;
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.3s;
  max-width: 320px;
}
.gcv-toast.show { transform: translateY(0); opacity: 1; }
.gcv-toast.success { border-color: rgba(16,185,129,0.5); background: rgba(16,185,129,0.1); }
.gcv-toast.error   { border-color: rgba(239,68,68,0.5);  background: rgba(239,68,68,0.1); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .gcv-events-grid, .gcv-updates-grid { grid-template-columns: 1fr 1fr; }
  .gcv-contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .gcv-cards-grid,
  .gcv-events-grid,
  .gcv-updates-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .gcv-events-grid, .gcv-updates-grid { grid-template-columns: 1fr; }
  .gcv-services-grid { grid-template-columns: 1fr 1fr; }
  .gcv-hero-stats { gap: 20px; }
  .gcv-filter-bar { flex-direction: column; align-items: flex-start; }
  .gcv-newsletter-form { flex-direction: column; }
}
@media (max-width: 480px) {
  .gcv-services-grid { grid-template-columns: 1fr; }
  .gcv-filter-btns { gap: 6px; }
  .gcv-filter-btn { padding: 6px 12px; font-size: 0.75rem; }
}

/* ── EVENT CARDS ─────────────────────────────────────────────────────────── */
.gcv-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 8px;
}
.gcv-event-card {
  background: var(--gcv-bg2);
  border: 1px solid var(--gcv-border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.gcv-event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(108,31,201,0.25);
}
.gcv-event-card-img {
  position: relative;
  overflow: hidden;
}
.gcv-event-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.gcv-event-card-img-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, rgba(108,31,201,0.2), rgba(212,160,23,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.gcv-event-card:hover .gcv-event-card-img img {
  transform: scale(1.05);
}
.gcv-card-badge-over {
  position: absolute;
  top: 14px;
  left: 14px;
}
.gcv-event-card-body {
  padding: 22px 24px 20px;
}
.gcv-event-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gcv-text);
  margin: 0 0 12px;
  line-height: 1.35;
}
.gcv-event-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
.gcv-card-detail {
  font-size: 0.78rem;
  color: var(--gcv-muted);
}
.gcv-card-excerpt {
  font-size: 0.84rem;
  color: var(--gcv-muted);
  line-height: 1.6;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gcv-event-card-footer {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--gcv-border);
  flex-wrap: wrap;
}
.gcv-btn-event {
  display: inline-block;
  padding: 8px 18px;
  background: var(--gcv-primary);
  color: #fff !important;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.gcv-btn-event:hover { background: #7c35d9; }
.gcv-btn-event-reg {
  display: inline-block;
  padding: 8px 18px;
  background: transparent;
  border: 1px solid var(--gcv-gold);
  color: var(--gcv-gold) !important;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.gcv-btn-event-reg:hover { background: var(--gcv-gold); color: #000 !important; }
@media (max-width: 1024px) {
  .gcv-events-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 640px) {
  .gcv-events-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ── SINGLE EVENT PAGE ─────────────────────────────────────────────────── */
.gcv-single-event-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gcv-bg), #1a0a2e);
}
.gcv-single-event-img {
  position: absolute;
  inset: 0;
}
.gcv-single-event-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,6,24,0.95) 0%, rgba(13,6,24,0.5) 60%, rgba(13,6,24,0.2) 100%);
}
.gcv-single-event-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 80px 50px;
  max-width: 900px;
  width: 100%;
}
.gcv-single-event-hero-content h1 {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin: 16px 0 20px;
  line-height: 1.2;
}
.gcv-single-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.gcv-single-event-meta span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}
.gcv-status-badge {
  background: var(--gcv-gold);
  color: #000 !important;
  padding: 4px 14px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.75rem !important;
}
.gcv-single-event-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 40px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.gcv-single-event-excerpt {
  font-size: 1.1rem;
  color: var(--gcv-text);
  line-height: 1.7;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gcv-border);
}
.gcv-event-description {
  color: var(--gcv-muted);
  line-height: 1.85;
  font-size: 0.95rem;
}
.gcv-event-description p { margin-bottom: 16px; }
.gcv-event-info-card {
  background: var(--gcv-bg2);
  border: 1px solid var(--gcv-border);
  border-radius: 18px;
  padding: 28px;
  position: sticky;
  top: 80px;
}
.gcv-event-info-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gcv-border);
  color: var(--gcv-text);
}
.gcv-event-info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.gcv-event-info-row .icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.gcv-event-info-row div { display: flex; flex-direction: column; gap: 2px; }
.gcv-event-info-row strong { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gcv-muted); }
.gcv-event-info-row span { font-size: 0.88rem; color: var(--gcv-text); }
.gcv-single-event-back {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 60px;
}
@media (max-width: 900px) {
  .gcv-single-event-body { grid-template-columns: 1fr; }
  .gcv-single-event-hero-content { padding: 40px 24px 36px; }
  .gcv-single-event-hero-content h1 { font-size: 2rem; }
  .gcv-single-event-back { padding: 0 24px 40px; }
}

/* ==========================================================================
   GCV Pi Ghana — v2.1 Additions
   Skeleton loaders · Back-to-top · Scroll reveal · Hamburger · 404
   ========================================================================== */

/* ── SKELETON LOADER ── */
@keyframes gcv-shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position:  600px 0; }
}
.gcv-skeleton {
  background: linear-gradient(90deg,
    rgba(255,255,255,0.04) 25%,
    rgba(255,255,255,0.09) 50%,
    rgba(255,255,255,0.04) 75%
  );
  background-size: 600px 100%;
  animation: gcv-shimmer 1.6s infinite linear;
  border-radius: 6px;
}
.gcv-skeleton-card { pointer-events: none; }
.gcv-skeleton-img  { height: 220px; width: 100%; border-radius: 0; }
.gcv-event-card.gcv-skeleton-card .gcv-skeleton-img { height: 220px; }

/* ── BACK TO TOP ── */
.gcv-back-top {
  position: fixed;
  bottom: 32px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--gcv-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .3s, transform .3s, background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(108,31,201,0.45);
  pointer-events: none;
}
.gcv-back-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.gcv-back-top:hover { background: #7c2fd9; }

/* ── SCROLL REVEAL ── */
.gcv-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .5s ease, transform .5s ease;
}
.gcv-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── HAMBURGER OPEN STATE ── */
.gcv-hamburger {
  transition: background .2s, border-color .2s;
}
.gcv-hamburger.is-open {
  background: var(--gcv-primary-light, rgba(108,31,201,.2)) !important;
  border-color: rgba(108,31,201,.5) !important;
}
.gcv-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.gcv-hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.gcv-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.gcv-hamburger span {
  transition: transform .25s ease, opacity .2s ease;
}
/* Mobile nav overlay close tap area */
.gcv-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 997;
  background: transparent;
}
.gcv-nav-overlay.open { display: block; }

/* ── EVENTS GRID FIX (ensure events page uses correct grid) ── */
#gcvEventsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) { #gcvEventsGrid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { #gcvEventsGrid { grid-template-columns: 1fr; } }

/* ── COMMUNITY UPDATE SINGLE ── */
.gcv-update-single-content p { margin-bottom: 18px; }
.gcv-update-single-content h2,
.gcv-update-single-content h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--gcv-text);
  margin: 28px 0 12px;
}

/* ── FONT UNIFICATION: ensure body uses Roboto (loaded in critical CSS) ── */
body { font-family: 'Roboto', sans-serif; }

/* ── 404 PAGE ── */
.gcv-404-section { min-height: 70vh; display: flex; align-items: center; }

/* ── WHATSAPP FLOAT BUTTON ── */
.gcv-whatsapp-btn {
  position: fixed;
  bottom: 86px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  transition: background .2s, transform .2s;
  text-decoration: none !important;
}
.gcv-whatsapp-btn:hover { background: #1ebe5d; transform: scale(1.08); }

/* ── ABOUT PAGE RESPONSIVE GRID ── */
.gcv-about-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .gcv-about-mv-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  .gcv-about-mv-grid > div {
    padding: 28px 22px !important;
  }
}

/* ── SERVICES PAGE RESPONSIVE ROWS ── */
.gcv-service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.gcv-service-row--reverse .gcv-service-row-text { order: 2; }
.gcv-service-row--reverse .gcv-service-row-img  { order: 1; }
.gcv-service-row-img {
  border-radius: var(--gcv-radius-lg);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gcv-surface);
  border: 1px solid var(--gcv-border);
}
@media (max-width: 768px) {
  .gcv-service-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  /* Always show text first, image below on mobile */
  .gcv-service-row-text { order: 1 !important; }
  .gcv-service-row-img  { order: 2 !important; min-height: 220px; }
  .gcv-service-row-img img { min-height: 220px !important; }
}

/* ── TEAM MEMBERS SECTION ── */
.gcv-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.gcv-team-card {
  background: var(--gcv-bg2);
  border: 1px solid var(--gcv-border);
  border-radius: var(--gcv-radius-lg);
  overflow: hidden;
  transition: transform .3s, border-color .3s;
  position: relative;
}
.gcv-team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gcv-primary), var(--gcv-gold));
}
.gcv-team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(108,31,201,.4);
}
.gcv-team-photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--gcv-bg3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gcv-team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .4s;
}
.gcv-team-card:hover .gcv-team-photo { transform: scale(1.05); }
.gcv-team-initials {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(108,31,201,.3), rgba(212,160,23,.2));
  color: var(--gcv-gold-light);
  letter-spacing: .05em;
}
.gcv-team-info {
  padding: 20px 18px 18px;
}
.gcv-team-name {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--gcv-text);
  margin-bottom: 4px;
  line-height: 1.3;
}
.gcv-team-position {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gcv-gold-light);
  margin-bottom: 8px;
  line-height: 1.4;
}
.gcv-team-dept {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #c084fc;
  background: rgba(108,31,201,.15);
  border: 1px solid rgba(108,31,201,.3);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.gcv-team-bio {
  font-size: .78rem;
  color: var(--gcv-muted);
  line-height: 1.6;
  margin-bottom: 14px;
  margin-top: 8px;
}
.gcv-team-socials {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gcv-border);
}
.gcv-team-social-link {
  width: 32px;
  height: 32px;
  background: var(--gcv-surface);
  border: 1px solid var(--gcv-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gcv-muted) !important;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: all .2s;
}
.gcv-team-social-link:hover {
  background: var(--gcv-primary);
  border-color: var(--gcv-primary);
  color: #fff !important;
}
/* Responsive */
@media (max-width: 1024px) { .gcv-team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .gcv-team-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 480px)  { .gcv-team-grid { grid-template-columns: 1fr; } }
