/* ===== HARVEST CENTRE FELLOWSHIP - MAIN STYLESHEET ===== */
/* Colors: Sky Blue #00AEEF, Gold #C9A84C, Dark Navy #0D1B2A, White #FFFFFF */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #00AEEF;
  --blue-dark: #0090C8;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --navy: #0D1B2A;
  --dark: #1a1a2e;
  --text: #333333;
  --text-light: #666666;
  --light-bg: #F8F9FA;
  --white: #FFFFFF;
  --border: #E0E0E0;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--text); line-height: 1.7; background: var(--white); overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; color: var(--navy); line-height: 1.3; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header p { max-width: 600px; margin: 1rem auto 0; color: var(--text-light); }
.section-label { display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--blue); margin-bottom: 0.5rem; }
.gold-line { width: 60px; height: 3px; background: var(--gold); margin: 1rem 0; border-radius: 2px; }
.gold-line.center { margin: 1rem auto; }
.center-btn { text-align: center; margin-top: 40px; }

/* BUTTONS */
.btn { display: inline-block; padding: 12px 28px; border-radius: 4px; font-weight: 600; font-size: 0.9rem; letter-spacing: 0.5px; transition: var(--transition); cursor: pointer; border: 2px solid transparent; }
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,174,239,0.4); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

/* TOP BAR */
.topbar { background: var(--navy); color: rgba(255,255,255,0.85); font-size: 0.8rem; padding: 8px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-left span { display: flex; align-items: center; gap: 6px; }
.topbar-left i { color: var(--blue); }
.topbar-right { display: flex; gap: 12px; }
.topbar-right a { color: rgba(255,255,255,0.7); transition: var(--transition); width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.1); }
.topbar-right a:hover { color: var(--white); background: var(--blue); }

/* NAVBAR */
.navbar { background: var(--white); box-shadow: 0 2px 20px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 1000; transition: var(--transition); }
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.15); }
.nav-container { display: flex; align-items: center; gap: 20px; padding: 12px 20px; }
.nav-logo img { height: 65px; width: auto; }
.nav-church-name h1 { font-size: 1.2rem; color: var(--navy); margin-bottom: 2px; }
.nav-church-name p { font-size: 0.7rem; color: var(--text-light); letter-spacing: 0.5px; }
.nav-menu { display: flex; align-items: center; gap: 2px; margin-left: auto; flex-wrap: nowrap; }
.nav-menu > li { position: relative; }
.nav-menu > li > a { display: block; padding: 8px 9px; font-size: 0.88rem; font-weight: 600; color: var(--navy); border-radius: var(--radius); transition: var(--transition); white-space: nowrap; }
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--blue); background: rgba(0,174,239,0.08); }
.nav-menu > li > a.active { border-bottom: 2px solid var(--blue); }

/* Hide dropdown chevron arrows in nav */
.nav-menu > li > a .fa-chevron-down { display: none; }
.dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--white); min-width: 200px; border-radius: var(--radius); box-shadow: var(--shadow-lg); border-top: 3px solid var(--blue); z-index: 100; }
.dropdown-menu li a { display: block; padding: 10px 18px; font-size: 0.85rem; color: var(--text); transition: var(--transition); }
.dropdown-menu li a:hover { background: var(--light-bg); color: var(--blue); padding-left: 24px; }
.dropdown:hover .dropdown-menu { display: block; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; margin-left: auto; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--navy); transition: var(--transition); border-radius: 2px; }

/* HERO */
.hero { position: relative; height: 90vh; min-height: 500px; overflow: hidden; }
.hero-slides { position: relative; height: 100%; }
.hero-slide { position: absolute; inset: 0; display: flex; align-items: center; opacity: 0; transition: opacity 0.8s ease; }
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-content { max-width: 700px; padding: 40px 60px; color: var(--white); }
.hero-label { display: inline-block; background: var(--blue); color: var(--white); font-size: 0.75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; padding: 6px 16px; border-radius: 20px; margin-bottom: 1.2rem; }
.hero-content h2 { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); margin-bottom: 1rem; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero-content h2 strong { color: var(--gold-light); }
.hero-content p { font-size: 1.1rem; color: rgba(255,255,255,0.9); margin-bottom: 2rem; max-width: 550px; }
.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,0.2); color: var(--white); border: 2px solid rgba(255,255,255,0.5); width: 50px; height: 50px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: var(--transition); backdrop-filter: blur(4px); }
.hero-arrow:hover { background: var(--blue); border-color: var(--blue); }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }
.hero-dots { position: absolute; bottom: 25px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 10px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: var(--transition); }
.dot.active { background: var(--white); transform: scale(1.3); }

/* INFO STRIP */
.info-strip { background: var(--blue); color: var(--white); padding: 0; }
.info-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.info-item { display: flex; align-items: center; gap: 15px; padding: 22px 20px; border-right: 1px solid rgba(255,255,255,0.2); }
.info-item:last-child { border-right: none; }
.info-item i { font-size: 1.8rem; color: rgba(255,255,255,0.8); flex-shrink: 0; }
.info-item h4 { font-size: 0.95rem; font-family: 'Open Sans', sans-serif; font-weight: 700; margin-bottom: 2px; }
.info-item p { font-size: 0.82rem; color: rgba(255,255,255,0.85); }

/* WELCOME */
.welcome-section { background: var(--white); }
.welcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.welcome-image { position: relative; }
.welcome-image img { border-radius: var(--radius-lg); width: 100%; height: 460px; object-fit: cover; box-shadow: var(--shadow-lg); }
.welcome-badge { position: absolute; bottom: -20px; right: -20px; background: var(--gold); color: var(--white); padding: 20px 25px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); }
.welcome-badge i { font-size: 1.8rem; display: block; margin-bottom: 6px; }
.welcome-badge span { font-weight: 700; font-size: 0.9rem; }
.welcome-text h2 { font-size: 2.2rem; margin-bottom: 0.5rem; }
.welcome-text p { color: var(--text-light); margin-bottom: 1rem; }
.bishop-sig { font-style: italic; color: var(--navy); font-weight: 600; margin-bottom: 1.5rem; }

/* VERSE SECTION */
.verse-section { background: var(--navy); padding: 60px 0; }
.verse-container { text-align: center; position: relative; }
.verse-icon { font-size: 3rem; color: var(--blue); opacity: 0.4; margin-bottom: 1rem; display: block; }
.verse-section blockquote { font-family: 'Playfair Display', serif; font-size: clamp(1.3rem, 2.5vw, 2rem); color: var(--white); font-style: italic; max-width: 700px; margin: 0 auto 1rem; line-height: 1.6; }
.verse-section cite { color: var(--gold); font-style: normal; font-weight: 600; letter-spacing: 1px; }

/* 3 COLUMN */
.three-col-section { background: var(--light-bg); }
.three-col-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.three-col-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.three-col-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.featured-card { border: 2px solid var(--blue); }
.card-icon-header { padding: 20px 25px; display: flex; align-items: center; gap: 12px; }
.card-icon-header.blue { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); }
.card-icon-header.gold { background: linear-gradient(135deg, var(--gold), #A07D30); }
.card-icon-header i { font-size: 1.5rem; color: var(--white); }
.card-icon-header h3 { color: var(--white); font-size: 1.1rem; font-family: 'Open Sans', sans-serif; font-weight: 700; }
.card-body { padding: 22px 25px; }
.card-body p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 0.8rem; }
.scripture-ref { font-weight: 700; color: var(--blue) !important; font-size: 1rem !important; }
.sermon-pastor { font-weight: 700; color: var(--gold) !important; font-size: 0.95rem !important; }
.pastor-name { font-style: italic; font-weight: 600; color: var(--navy) !important; }
.card-link { color: var(--blue); font-weight: 600; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 5px; transition: var(--transition); }
.card-link:hover { gap: 10px; }

/* EVENTS */
.events-section { background: var(--white); }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.event-card { display: flex; gap: 20px; background: var(--light-bg); border-radius: var(--radius); padding: 20px; border-left: 4px solid var(--blue); transition: var(--transition); }
.event-card:hover { background: var(--white); box-shadow: var(--shadow); transform: translateY(-4px); }
.event-date { flex-shrink: 0; background: var(--blue); color: var(--white); width: 65px; height: 65px; border-radius: var(--radius); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.event-date .day { font-size: 1.5rem; font-weight: 700; line-height: 1; }
.event-date .month { font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.event-info h4 { font-size: 1rem; margin-bottom: 6px; font-family: 'Open Sans', sans-serif; }
.event-info p { font-size: 0.82rem; color: var(--text-light); display: flex; align-items: center; gap: 6px; margin-bottom: 3px; }
.event-info p i { color: var(--blue); }

/* VISION */
.vision-section { background: linear-gradient(135deg, var(--navy) 0%, #1a2d4a 100%); }
.vision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.vision-card { text-align: center; padding: 40px 30px; border-radius: var(--radius-lg); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); transition: var(--transition); }
.vision-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-6px); }
.vision-icon { width: 70px; height: 70px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.vision-icon i { font-size: 1.8rem; color: var(--white); }
.vision-card h3 { color: var(--gold-light); margin-bottom: 1rem; }
.vision-card p { color: rgba(255,255,255,0.8); font-size: 0.92rem; }

/* MINISTRIES */
.ministries-section { background: var(--light-bg); }
.ministries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ministry-card { background: var(--white); border-radius: var(--radius-lg); padding: 30px 20px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); display: block; color: var(--text); }
.ministry-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); color: var(--blue); }
.ministry-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--blue), var(--blue-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; transition: var(--transition); }
.ministry-card:hover .ministry-icon { background: linear-gradient(135deg, var(--gold), #A07D30); }
.ministry-icon i { font-size: 1.6rem; color: var(--white); }
.ministry-card h4 { font-size: 1rem; margin-bottom: 0.4rem; font-family: 'Open Sans', sans-serif; font-weight: 700; }
.ministry-card p { font-size: 0.82rem; color: var(--text-light); }

/* LIVE STREAMING */
.live-section { background: var(--white); }
.live-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.yt-placeholder { background: linear-gradient(135deg, #1a1a2e, #0D1B2A); border-radius: var(--radius-lg); padding: 60px 30px; text-align: center; color: var(--white); }
.yt-placeholder i { font-size: 4rem; color: #FF0000; margin-bottom: 1rem; display: block; }
.yt-placeholder p { color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; }
.live-info h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.live-info p { color: var(--text-light); margin-bottom: 1.5rem; }
.live-list { margin-bottom: 1.5rem; }
.live-list li { display: flex; align-items: center; gap: 10px; padding: 8px 0; color: var(--text-light); border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.live-list li i { color: var(--blue); flex-shrink: 0; }

/* NEWSLETTER */
.newsletter-section { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); padding: 50px 0; }
.newsletter-container { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.newsletter-text h3 { color: var(--white); font-size: 1.8rem; margin-bottom: 0.5rem; }
.newsletter-text p { color: rgba(255,255,255,0.85); }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input { padding: 12px 20px; border-radius: 4px; border: none; font-size: 0.9rem; min-width: 280px; outline: none; }
.newsletter-form .btn-primary { background: var(--gold); border-color: var(--gold); }
.newsletter-form .btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* FOOTER */
.footer { background: var(--navy); color: rgba(255,255,255,0.8); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 50px; padding-bottom: 50px; }
.footer-logo { height: 60px; width: auto; margin-bottom: 1.2rem; filter: brightness(1.2); }
.footer-about p { font-size: 0.88rem; color: rgba(255,255,255,0.6); max-width: 280px; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.social-links a:hover { background: var(--blue); color: var(--white); }
.footer-links h4, .footer-contact h4 { color: var(--white); font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 1.2rem; padding-bottom: 8px; border-bottom: 2px solid var(--blue); display: inline-block; }
.footer-links ul li { margin-bottom: 8px; }
.footer-links ul li a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links ul li a:hover { color: var(--blue); padding-left: 5px; }
.footer-contact ul { }
.footer-contact ul li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.footer-contact ul li i { color: var(--blue); margin-top: 3px; flex-shrink: 0; }
.footer-contact ul li a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-contact ul li a:hover { color: var(--blue); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* BACK TO TOP */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 46px; height: 46px; background: var(--blue); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 999; opacity: 0; visibility: hidden; transition: var(--transition); box-shadow: var(--shadow); }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--blue-dark); transform: translateY(-3px); }

/* PAGE HEADER (for inner pages) */
.page-header { background: linear-gradient(135deg, var(--navy) 0%, #1a2d4a 100%); padding: 80px 0 60px; text-align: center; color: var(--white); }
.page-header h1 { font-size: 2.5rem; color: var(--white); margin-bottom: 0.5rem; }
.page-header p { color: rgba(255,255,255,0.7); }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-top: 1rem; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: var(--blue); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .welcome-grid { gap: 40px; }
}

@media (max-width: 900px) {
  .three-col-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .events-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .ministries-grid { grid-template-columns: repeat(2, 1fr); }
  .vision-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  /* ---- GENERAL ---- */
  .section { padding: 50px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.2rem; }

  /* ---- TOP BAR ---- */
  .topbar-left { display: none; }
  .topbar-right a { font-size: 1rem; }

  /* ---- NAVBAR ---- */
  .hamburger { display: flex; }
  .nav-church-name { display: none; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 12px 0;
    box-shadow: var(--shadow-lg);
    gap: 0;
    z-index: 999;
    max-height: 80vh;
    overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a {
    padding: 13px 20px;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
  }
  .nav-menu > li:last-child > a { border-bottom: none; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-top: none;
    padding-left: 20px;
    background: var(--light-bg);
    display: none;
  }
  .dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu li a { padding: 10px 20px; font-size: 0.88rem; border-bottom: 1px solid var(--border); }
  .navbar { position: relative; }

  /* ---- HERO ---- */
  .hero { height: 70vh; min-height: 400px; }
  .hero-content { padding: 20px 20px; }
  .hero-overlay { padding: 15px 20px !important; flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-overlay h2 { font-size: 1.1rem !important; }
  .hero-overlay p { font-size: 0.8rem !important; }
  .hero-overlay .hero-btn { font-size: 0.85rem !important; padding: 10px 20px !important; white-space: normal !important; text-align: center; }
  .hero-content h2 { font-size: 1.6rem; line-height: 1.3; }
  .hero-content p { font-size: 0.95rem; }
  .hero-overlay .hero-btn { padding: 12px 24px; font-size: 0.95rem; }

  /* ---- INFO STRIP ---- */
  .info-strip-grid { grid-template-columns: 1fr 1fr; }

  /* ---- WELCOME / ABOUT ---- */
  .welcome-grid { grid-template-columns: 1fr; gap: 30px; }
  .welcome-image { order: -1; }
  .welcome-badge { bottom: 10px; right: 10px; }

  /* ---- GRIDS ---- */
  .three-col-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .vision-grid { grid-template-columns: 1fr; }
  .ministries-grid { grid-template-columns: repeat(2, 1fr); }
  .live-grid { grid-template-columns: 1fr; gap: 30px; }
  .live-image { order: -1; }

  /* ---- TWO-COLUMN SECTION GRIDS (Children's Ministry, ministry detail, etc.) ---- */
  .two-col-section,
  .ministry-detail,
  .children-section,
  .mobile-two-col,
  [class*="detail-grid"],
  .section-two-col { grid-template-columns: 1fr !important; }

  /* ---- TESTIMONIALS ---- */
  .testimonials-grid,
  .cards-grid { grid-template-columns: 1fr !important; }

  /* ---- CAMPAIGN / VISIT PAGE SECTIONS ---- */
  .giving-methods { grid-template-columns: 1fr !important; }
  .visit-cards { grid-template-columns: 1fr 1fr !important; }
  .progress-stats { grid-template-columns: 1fr 1fr; }

  /* ---- CONTACT ---- */
  .contact-grid { grid-template-columns: 1fr !important; }

  /* ---- FOOTER ---- */
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .newsletter-container { flex-direction: column; gap: 15px; }
  .newsletter-container input { width: 100%; }

  /* ---- BACK TO TOP & WHATSAPP ---- */
  .back-to-top { bottom: 80px; right: 15px; }
  .whatsapp-btn { bottom: 20px; right: 15px; }
}

@media (max-width: 480px) {
  /* ---- GENERAL ---- */
  .section { padding: 40px 0; }
  .container { padding: 0 15px; }

  /* ---- HERO ---- */
  .hero { height: 75vh; min-height: 380px; }
  .hero-content h2 { font-size: 1.3rem; }
  .hero-content p { font-size: 0.85rem; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-prev { left: 8px; }
  .hero-next { right: 8px; }
  .hero-overlay .hero-btn { font-size: 0.85rem; padding: 10px 18px; }

  /* ---- INFO STRIP ---- */
  .info-strip-grid { grid-template-columns: 1fr; }

  /* ---- GRIDS ---- */
  .ministries-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .three-col-grid { grid-template-columns: 1fr; }
  .visit-cards { grid-template-columns: 1fr !important; }
  .progress-stats { grid-template-columns: 1fr; }

  /* ---- NAV ---- */
  .nav-logo img { height: 45px; }

  /* ---- TOPBAR ---- */
  .topbar { padding: 6px 0; }

  /* ---- FOOTER ---- */
  .footer { text-align: center; }
  .footer-social { justify-content: center; }
}