/*
Theme Name: Revival Assembly
Theme URI: https://revivalassemblyng.org
Author: Revival Assembly
Author URI: https://revivalassemblyng.org
Description: Official theme for Revival Assembly Church - Spirit-filled, Word-based, Purpose-driven ministry.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: revival-assembly
Tags: church, ministry, religion, responsive, one-page
*/

/* =============================================
   REVIVAL ASSEMBLY — MAIN STYLESHEET
   ============================================= */

:root {
  --red: #C0392B;
  --red-dark: #96281B;
  --red-light: #E74C3C;
  --gold: #D4A017;
  --dark: #1A1A1A;
  --dark2: #222222;
  --dark3: #2D2D2D;
  --grey: #555555;
  --light-grey: #888888;
  --white: #FFFFFF;
  --off-white: #F8F8F8;
  --border: #E5E5E5;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
p { margin-bottom: 1rem; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--red); }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--dark);
  padding: 8px 0;
  border-bottom: 2px solid var(--red);
}
.top-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.top-bar-left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-bar-item {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  display: flex; align-items: center; gap: 6px;
}
.top-bar-item a { color: rgba(255,255,255,0.75); }
.top-bar-item a:hover { color: var(--red-light); }
.top-bar-item .icon { color: var(--red-light); font-size: 0.9rem; }
.top-bar-right { display: flex; align-items: center; gap: 12px; }
.top-social { display: flex; gap: 8px; }
.top-social a {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  border-radius: 3px;
  transition: var(--transition);
}
.top-social a:hover { background: var(--red); }

/* ===== NAVBAR ===== */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky; top: 0; z-index: 1000;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.site-logo img { height: 55px; width: auto; }
.site-logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
.site-logo-text span { color: var(--red); display: block; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }

.main-nav ul { display: flex; align-items: center; gap: 0; }
.main-nav ul li { position: relative; }
.main-nav ul li a {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  padding: 28px 18px;
  display: block;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.main-nav ul li a:hover,
.main-nav ul li.current-menu-item > a { color: var(--red); border-bottom-color: var(--red); }

/* Dropdown */
.main-nav ul li ul {
  position: absolute; top: 100%; left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
  border-top: 3px solid var(--red);
}
.main-nav ul li:hover > ul { opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav ul li ul li a {
  padding: 12px 20px;
  font-size: 0.8rem;
  border-bottom: 1px solid var(--border);
  border-bottom-width: 0;
}
.main-nav ul li ul li { border-bottom: 1px solid var(--border); }
.main-nav ul li ul li:last-child { border-bottom: none; }
.main-nav ul li ul li a:hover { background: var(--off-white); color: var(--red); border-bottom-color: transparent; }

.nav-give-btn {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 2px;
  transition: var(--transition);
}
.nav-give-btn:hover { background: var(--red-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(192,57,43,0.4); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { width: 25px; height: 2px; background: var(--dark); display: block; transition: var(--transition); }

.mobile-nav {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white); box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--red); z-index: 999; padding: 1rem 0;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { padding: 0 20px; }
.mobile-nav ul li a { display: block; padding: 12px 0; font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; color: var(--dark); border-bottom: 1px solid var(--border); }
.mobile-nav ul li a:hover { color: var(--red); }

/* ===== HERO ===== */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center;
  background: var(--dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('assets/images/hero-bg.jpg');
  background-size: cover; background-position: center;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(192,57,43,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 6rem 20px;
  width: 100%;
}
.hero-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red-light);
  background: rgba(192,57,43,0.15);
  border: 1px solid rgba(192,57,43,0.4);
  padding: 6px 18px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-title span { color: var(--red-light); }
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px; margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 14px 35px;
  border-radius: 2px;
  transition: var(--transition);
  display: inline-block; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--red-dark); color: var(--white); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(192,57,43,0.4); }
.btn-secondary {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  padding: 14px 35px;
  border-radius: 2px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
  display: inline-block;
}
.btn-secondary:hover { background: var(--white); color: var(--dark); border-color: var(--white); }

/* ===== TICKER ===== */
.ticker-bar {
  background: var(--red);
  padding: 0;
  overflow: hidden;
  display: flex; height: 42px;
}
.ticker-label {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0 20px;
  display: flex; align-items: center;
  white-space: nowrap; flex-shrink: 0;
}
.ticker-content { flex: 1; overflow: hidden; display: flex; align-items: center; }
.ticker-text {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--white);
  font-weight: 500;
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== SECTION COMMONS ===== */
.section-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  display: block; margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title.white { color: var(--white); }
.section-desc { font-size: 1rem; color: var(--grey); max-width: 600px; line-height: 1.8; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-desc { margin: 0 auto; }

/* ===== EVENTS SECTION ===== */
.events-section { padding: 80px 0; background: var(--off-white); }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.event-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--red);
}
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.event-card-img { height: 200px; overflow: hidden; position: relative; background: var(--dark3); }
.event-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.event-card:hover .event-card-img img { transform: scale(1.05); }
.event-status {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-heading);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--red); color: var(--white);
  padding: 4px 10px; border-radius: 2px;
}
.event-status.upcoming { background: #27AE60; }
.event-card-body { padding: 20px; }
.event-date-badge {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.78rem; font-weight: 600;
  color: var(--red); margin-bottom: 10px;
}
.event-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem; font-weight: 700;
  color: var(--dark); margin-bottom: 10px; line-height: 1.4;
}
.event-card-body h3 a { color: inherit; }
.event-card-body h3 a:hover { color: var(--red); }
.event-time { font-size: 0.82rem; color: var(--light-grey); }

/* ===== VALUES / PILLARS ===== */
.values-section { padding: 80px 0; background: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.value-item {
  padding: 50px 40px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.value-item:last-child { border-right: none; }
.value-item::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: var(--red);
  transform: scaleX(0); transition: transform 0.4s ease;
}
.value-item:hover::before { transform: scaleX(1); }
.value-item:hover { background: var(--off-white); }
.value-img { width: 100%; height: 200px; object-fit: cover; margin-bottom: 1.5rem; border-radius: 2px; }
.value-item h3 {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 800;
  color: var(--dark); margin-bottom: 1rem;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.value-item p { font-size: 0.92rem; color: var(--grey); line-height: 1.75; }

/* ===== APOSTLE / PASTOR SECTION ===== */
.apostle-section { padding: 90px 0; background: var(--off-white); }
.apostle-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center; }
.apostle-img-wrap { position: relative; }
.apostle-img-frame {
  border-radius: 4px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.apostle-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.apostle-img-frame::after {
  content: '';
  position: absolute; bottom: -15px; right: -15px;
  width: 80%; height: 80%;
  border: 4px solid var(--red);
  border-radius: 4px; z-index: -1;
}
.apostle-label {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 16px; margin-bottom: 1rem;
}
.apostle-text h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--dark); margin-bottom: 1.5rem; line-height: 1.2; }
.apostle-text p { font-size: 0.95rem; color: var(--grey); line-height: 1.85; margin-bottom: 1.2rem; }
.apostle-instruction {
  background: var(--dark);
  color: var(--white);
  padding: 20px 25px;
  border-left: 4px solid var(--red);
  margin: 1.5rem 0;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== PROPHETIC AFFIRMATION ===== */
.affirmation-section { padding: 80px 0; background: var(--dark); position: relative; overflow: hidden; }
.affirmation-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(192,57,43,0.12) 0%, transparent 70%);
}
.affirmation-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; text-align: center; }
.affirmation-year {
  font-family: var(--font-heading);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--red-light); margin-bottom: 1rem; display: block;
}
.affirmation-title { font-family: var(--font-heading); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--white); margin-bottom: 2.5rem; }
.affirmation-list { text-align: left; display: flex; flex-direction: column; gap: 14px; }
.affirmation-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--red);
  padding: 14px 18px;
  font-size: 0.95rem; color: rgba(255,255,255,0.8); line-height: 1.7;
}
.affirmation-item::before {
  content: '✓';
  color: var(--red-light);
  font-weight: 700; font-size: 1rem;
  flex-shrink: 0; margin-top: 2px;
}
.affirmation-tag {
  margin-top: 2rem;
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 800;
  color: var(--red-light); letter-spacing: 0.1em;
}

/* ===== GIVING SECTION ===== */
.giving-section { padding: 80px 0; background: var(--red); position: relative; overflow: hidden; text-align: center; }
.giving-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.04'%3E%3Cpath d='M20 20l10-10v20L20 20zm-10-10l10 10L10 30V10z'/%3E%3C/g%3E%3C/svg%3E");
}
.giving-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.giving-verse {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  font-style: italic;
}
.giving-ref { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-bottom: 2rem; }
.giving-options { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.giving-option {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 10px 22px; border-radius: 2px;
}
.btn-give {
  font-family: var(--font-heading);
  font-size: 0.9rem; font-weight: 800;
  letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--white); color: var(--red);
  padding: 15px 40px; border-radius: 2px;
  display: inline-block; transition: var(--transition);
  border: 2px solid var(--white);
}
.btn-give:hover { background: transparent; color: var(--white); }

/* ===== MINISTRIES ===== */
.ministries-section { padding: 80px 0; background: var(--white); }
.ministries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.ministry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.ministry-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.ministry-card-img { height: 220px; overflow: hidden; }
.ministry-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ministry-card:hover .ministry-card-img img { transform: scale(1.05); }
.ministry-card-body { padding: 25px; }
.ministry-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem; font-weight: 800;
  color: var(--dark); margin-bottom: 12px; text-transform: uppercase;
}
.ministry-card-body h3 a { color: inherit; }
.ministry-card-body h3 a:hover { color: var(--red); }
.ministry-card-body p { font-size: 0.9rem; color: var(--grey); line-height: 1.75; margin-bottom: 1.2rem; }
.ministry-link {
  font-family: var(--font-heading);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--red); display: inline-flex; align-items: center; gap: 6px;
}
.ministry-link:hover { gap: 10px; }

/* ===== CTA / SALVATION ===== */
.cta-section { padding: 80px 0; background: var(--dark2); text-align: center; }
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-section .section-title { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.65); font-size: 1rem; margin-bottom: 2rem; line-height: 1.8; }

/* ===== VIDEOS ===== */
.videos-section { padding: 80px 0; background: var(--off-white); }
.videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-bottom: 2.5rem; }
.video-card {
  background: var(--dark);
  border-radius: 4px; overflow: hidden;
  position: relative; cursor: pointer;
  transition: var(--transition);
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.video-card iframe { width: 100%; height: 100%; border: none; }
.video-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
}
.video-play-btn {
  width: 60px; height: 60px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--white);
  transition: var(--transition);
}
.video-card:hover .video-play-btn { transform: scale(1.1); background: var(--red-dark); }
.video-title { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.7); text-align: center; padding: 0 15px; }
.videos-cta { text-align: center; }

/* ===== CONTACT INFO BAR ===== */
.contact-bar { background: var(--dark); padding: 50px 0; }
.contact-bar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.contact-bar-item { text-align: center; }
.contact-bar-icon { font-size: 2rem; color: var(--red-light); margin-bottom: 12px; }
.contact-bar-item h4 { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.contact-bar-item p, .contact-bar-item a { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.contact-bar-item a:hover { color: var(--red-light); }

/* ===== FOOTER ===== */
.site-footer { background: #111111; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-about .footer-logo { margin-bottom: 1.2rem; }
.footer-about .footer-logo img { height: 45px; }
.footer-logo-text { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; color: var(--white); }
.footer-logo-text span { color: var(--red-light); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; display: block; }
.footer-about p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 1.2rem; }
.footer-col h4 { font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); margin-bottom: 1.2rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--red); display: inline-block; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.87rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--red-light); padding-left: 5px; }
.footer-service-time { font-size: 0.87rem; color: rgba(255,255,255,0.5); line-height: 2; }
.footer-service-time strong { color: rgba(255,255,255,0.8); }
.footer-social { display: flex; gap: 10px; margin-top: 1.2rem; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.6); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; border-radius: 3px; transition: var(--transition); }
.footer-social a:hover { background: var(--red); color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.reveal { opacity: 0; transform: translateY(25px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .events-grid, .values-grid, .ministries-grid, .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .apostle-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-bar-grid { grid-template-columns: 1fr; gap: 20px; }
  .value-item { border-right: none; border-bottom: 1px solid var(--border); }
  .value-item:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
  .main-nav, .nav-give-btn { display: none; }
  .hamburger { display: flex; }
  .events-grid, .values-grid, .ministries-grid, .videos-grid, .giving-options { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .top-bar-right { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
