/* ==========================================================================
   TFGC Modern Design System (Light Theme Body + Dark Navy Divs & Gold Palette)
   ========================================================================== */

:root {
  --tfgc-navy: #0a1128;
  --tfgc-navy-light: #121e42;
  --tfgc-gold: #d4af37;
  --tfgc-gold-hover: #f3ce56;
  --tfgc-white: #ffffff;
  --tfgc-dark-text: #0f172a;
  --tfgc-body-bg: #f8fafc;
  --tfgc-muted-text: #64748b;
  --tfgc-muted-text-on-dark: #a0aec0;
  --tfgc-glass-bg: rgba(10, 17, 40, 0.92);
  --tfgc-glass-border: rgba(212, 175, 55, 0.3);
  --tfgc-shadow: 0 10px 30px rgba(10, 17, 40, 0.12);
  --tfgc-glow: 0 0 25px rgba(212, 175, 55, 0.35);
  --tfgc-radius: 16px;
  --tfgc-transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  background-color: var(--tfgc-body-bg);
  color: var(--tfgc-dark-text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.tfgc-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 1. Announcement Bar */
.tfgc-announcement-bar {
  background: var(--tfgc-navy);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 10px 0;
  font-size: 0.875rem;
  color: var(--tfgc-white);
}
.tfgc-announcement-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tfgc-scripture-motto i {
  color: var(--tfgc-gold);
  margin-right: 8px;
}
.tfgc-quick-contact a {
  color: var(--tfgc-muted-text-on-dark);
  margin-left: 20px;
  text-decoration: none;
  transition: var(--tfgc-transition);
}
.tfgc-quick-contact a:hover {
  color: var(--tfgc-gold);
}

/* 2. Hero Section */
.tfgc-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--tfgc-navy);
}
.tfgc-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}
.tfgc-hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  background: linear-gradient(180deg, rgba(10, 17, 40, 0.6) 0%, rgba(10, 17, 40, 0.9) 100%);
  padding: 120px 0 100px;
}
.tfgc-hero-content {
  max-width: 800px;
}
.tfgc-badge-pill {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--tfgc-gold);
  color: var(--tfgc-gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.tfgc-hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--tfgc-white);
}
.tfgc-hero-sub {
  font-size: 1.25rem;
  color: var(--tfgc-muted-text-on-dark);
  margin-bottom: 32px;
}

/* Button Component System */
.tfgc-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.tfgc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--tfgc-transition);
  cursor: pointer;
}
.tfgc-btn-gold {
  background: var(--tfgc-gold);
  color: var(--tfgc-navy);
  box-shadow: var(--tfgc-glow);
}
.tfgc-btn-gold:hover {
  background: var(--tfgc-gold-hover);
  transform: translateY(-2px);
}
.tfgc-btn-glass {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--tfgc-white);
  backdrop-filter: blur(10px);
}
.tfgc-btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--tfgc-gold);
}
.tfgc-btn-outline-gold {
  border: 1px solid var(--tfgc-gold);
  color: var(--tfgc-gold);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.875rem;
  text-decoration: none;
}

/* 3. Floating Mandate Section */
.tfgc-mandate-wrapper {
  margin-top: -60px;
  position: relative;
  z-index: 10;
}
.tfgc-asymmetric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.tfgc-glass-card {
  background: var(--tfgc-navy);
  border: 1px solid var(--tfgc-glass-border);
  color: var(--tfgc-white);
  padding: 32px 24px;
  border-radius: var(--tfgc-radius);
  box-shadow: var(--tfgc-shadow);
  transition: var(--tfgc-transition);
}
.tfgc-glass-card:hover {
  transform: translateY(-6px);
  border-color: var(--tfgc-gold);
}
.tfgc-card-gold-glow {
  box-shadow: var(--tfgc-glow);
  border-color: var(--tfgc-gold);
}
.tfgc-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--tfgc-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.tfgc-scripture-ref {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--tfgc-gold);
  font-style: italic;
}
.tfgc-values-pills {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tfgc-values-pills li {
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--tfgc-white);
}
.tfgc-values-pills i {
  color: var(--tfgc-gold);
}

/* Section Shared Utilities */
.tfgc-section {
  padding: 100px 0;
}
.tfgc-dark-bg {
  background: var(--tfgc-navy);
  color: var(--tfgc-white);
}
.tfgc-tag {
  color: var(--tfgc-gold);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 8px;
}
.tfgc-section-heading {
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: inherit;
}
.tfgc-section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
}
.tfgc-section-header.left-align {
  text-align: left;
  margin-left: 0;
}

/* 4. Split Layout & Countdown */
.tfgc-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.tfgc-countdown-timer {
  display: flex;
  gap: 16px;
  margin: 30px 0;
}
.tfgc-time-tile {
  background: var(--tfgc-navy);
  border: 1px solid var(--tfgc-glass-border);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  min-width: 70px;
  color: var(--tfgc-white);
}
.tfgc-time-tile span {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--tfgc-gold);
  display: block;
}
.tfgc-event-horizontal-card {
  display: flex;
  gap: 16px;
  background: var(--tfgc-navy);
  color: var(--tfgc-white);
  border-radius: var(--tfgc-radius);
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid var(--tfgc-glass-border);
}
.tfgc-event-thumb img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  object-fit: cover;
}

/* 5. Sermons Cards Grid */
.tfgc-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.tfgc-sermon-card {
  background: var(--tfgc-navy);
  color: var(--tfgc-white);
  border-radius: var(--tfgc-radius);
  overflow: hidden;
  transition: var(--tfgc-transition);
  border: 1px solid var(--tfgc-glass-border);
}
.tfgc-sermon-card:hover {
  transform: translateY(-6px);
  border-color: var(--tfgc-gold);
}
.tfgc-sermon-media {
  position: relative;
  height: 180px;
}
.tfgc-sermon-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tfgc-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--tfgc-gold);
  color: var(--tfgc-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tfgc-sermon-body {
  padding: 20px;
}

/* 7. Giving Card */
.tfgc-giving-hero-card {
  background: linear-gradient(135deg, var(--tfgc-navy) 0%, var(--tfgc-navy-light) 100%);
  color: var(--tfgc-white);
  border: 1px solid var(--tfgc-gold);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  box-shadow: var(--tfgc-shadow);
}
.tfgc-giving-bank-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.tfgc-bank-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.tfgc-account-number {
  font-size: 1.4rem;
  color: var(--tfgc-gold);
  letter-spacing: 2px;
}

/* 8. Leadership Profile */
.tfgc-leadership-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
  background: var(--tfgc-navy);
  color: var(--tfgc-white);
  padding: 40px;
  border-radius: var(--tfgc-radius);
  border: 1px solid var(--tfgc-glass-border);
}
.tfgc-leader-img img {
  width: 100%;
  border-radius: 24px;
  border: 2px solid var(--tfgc-gold);
  box-shadow: var(--tfgc-shadow);
}

/* 9. Asymmetric Gallery and Locations Grid */
.tfgc-grid-split-60-40 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}
.tfgc-masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.tfgc-gallery-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}
.tfgc-loc-card {
  display: flex;
  gap: 16px;
  background: var(--tfgc-navy);
  color: var(--tfgc-white);
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid var(--tfgc-glass-border);
}
.tfgc-loc-card i {
  color: var(--tfgc-gold);
  font-size: 1.5rem;
}

/* Responsive Mobile Layout adjustments */
@media (max-width: 992px) {
  .tfgc-split-layout,
  .tfgc-giving-hero-card,
  .tfgc-leadership-card,
  .tfgc-grid-split-60-40 {
    grid-template-columns: 1fr;
  }
  .tfgc-hero-title {
    font-size: 2.5rem;
  }
  .tfgc-announcement-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .tfgc-quick-contact a {
    margin: 0 10px;
  }
}