/* =============================================
   HE AQUÍ VENGO PRONTO — CHURCH WEBSITE
   Color Palette: Wine Red, White, Gold accents
   ============================================= */

:root {
  --wine: #7B1C2E;
  --wine-dark: #541422;
  --wine-deep: #3A0D1A;
  --wine-light: #9E2640;
  --gold: #C9A84C;
  --gold-light: #E2C97A;
  --white: #FDFAF6;
  --off-white: #F5EFE6;
  --gray-light: #EDE4D8;
  --gray: #8A7A6E;
  --dark: #1A0A0F;
  --font-display: 'Cinzel', serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-sans: 'Lato', sans-serif;
  --transition: 0.3s ease;
  --shadow: 0 8px 40px rgba(91, 16, 32, 0.15);
  --shadow-lg: 0 20px 60px rgba(91, 16, 32, 0.25);
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* NAV LOGO IMAGE */
.nav-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

/* HERO LOGO */
.hero-logo-wrap {
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroFadeIn 1s ease 0.1s forwards;
}

.hero-logo {
  width: clamp(180px, 25vw, 280px);
  height: clamp(180px, 25vw, 280px);
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.5));
  border-radius: 50%;
}

/* FOOTER LOGO IMAGE */
.footer-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}


   ============================================= */

.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--wine-dark);
  margin-bottom: 1.25rem;
}

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

.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold-light); }

.section-sub {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.section-sub.light { color: rgba(255,255,255,0.75); }

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--wine);
  color: var(--white);
  border-color: var(--wine);
}

.btn-primary:hover {
  background: var(--wine-dark);
  border-color: var(--wine-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123, 28, 46, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-full { width: 100%; text-align: center; }

/* =============================================
   NAVBAR
   ============================================= */

.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
  background: transparent;
}

.nav-header.scrolled {
  background: var(--wine-deep);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  transition: opacity var(--transition);
}

.nav-logo:hover { opacity: 0.85; }

.logo-cross {
  font-size: 1.3rem;
  color: var(--gold);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--wine-deep);
  padding: 1rem 2rem 1.5rem;
  gap: 0;
}

.mobile-menu a {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--gold); }
.mobile-menu.open { display: flex; }

/* =============================================
   HERO
   ============================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(123,28,46,0.4) 0%, transparent 70%),
    radial-gradient(ellipse at 20% 80%, rgba(84,20,34,0.5) 0%, transparent 60%),
    linear-gradient(160deg, #2A0810 0%, #541422 35%, #7B1C2E 65%, #3A0D1A 100%);
}

/* Decorative cross watermark removed – renders as emoji on iOS */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,10,15,0.2) 0%, rgba(26,10,15,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 2rem 3rem;
  max-width: 860px;
  animation: heroFadeIn 1.2s ease forwards;
}

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

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroFadeIn 1s ease 0.2s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroFadeIn 1s ease 0.4s forwards;
}

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

.hero-verse {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  opacity: 0;
  animation: heroFadeIn 1s ease 0.6s forwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeIn 1s ease 0.8s forwards;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-indicator span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto;
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* =============================================
   WELCOME STRIP
   ============================================= */

.welcome-strip {
  background: var(--wine-dark);
  padding: 1.2rem 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.strip-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.strip-icon { font-size: 1rem; }

.strip-divider {
  width: 1px;
  height: 24px;
  background: rgba(201, 168, 76, 0.3);
}

/* =============================================
   SECTIONS GENERAL
   ============================================= */

.section {
  padding: 6rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* =============================================
   ABOUT
   ============================================= */

.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  color: #5A4A42;
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.about-text strong { color: var(--wine); }

.about-decorative {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.about-card {
  background: var(--wine);
  color: var(--white);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.about-card:first-child {
  grid-column: span 2;
  background: var(--wine-dark);
}

.about-card-cross {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.about-stat {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.about-stat-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 0.4rem;
}

.about-card-sm {
  background: var(--wine-light);
}

.about-card-right {
  background: var(--wine);
}

/* =============================================
   SCHEDULE
   ============================================= */

.schedule-section {
  background: var(--wine-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.schedule-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(circle at 85% 50%, rgba(201,168,76,0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Schedule cross decoration removed – renders as emoji on iOS */

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

.schedule-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 2.5rem 1.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.schedule-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.schedule-card-featured {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.07);
}

.schedule-card-sunday {
  border-color: var(--gold);
  background: rgba(201,168,76,0.12);
}

.schedule-day {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.schedule-type {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.schedule-time {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  font-style: italic;
}

.schedule-icon {
  font-size: 1.5rem;
  margin-top: 1rem;
  opacity: 0.6;
}

.schedule-address {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
}

/* =============================================
   SERMONS
   ============================================= */

.sermons-section {
  background: var(--off-white);
}

.sermons-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.sermon-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
}

.sermon-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.sermon-cross {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.sermon-tag {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.sermon-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--wine-dark);
  margin-bottom: 0.5rem;
}

.sermon-desc {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
}

.sermons-cta-text {
  text-align: center;
  font-size: 1rem;
  color: var(--gray);
}

.sermons-cta-text a {
  color: var(--wine);
  font-weight: 700;
  border-bottom: 1px solid var(--wine);
  transition: opacity var(--transition);
}

.sermons-cta-text a:hover { opacity: 0.7; }

/* =============================================
   EVENTS
   ============================================= */

.events-section {
  background: var(--white);
}

.events-placeholder {
  display: flex;
  justify-content: center;
}

.event-empty-state {
  text-align: center;
  max-width: 480px;
  padding: 4rem 3rem;
  border: 2px dashed var(--gray-light);
  border-radius: 4px;
}

.event-empty-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.event-empty-state h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--wine-dark);
  margin-bottom: 0.75rem;
}

.event-empty-state p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* =============================================
   CONTACT
   ============================================= */

.contact-section {
  background: var(--wine-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-item strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.contact-item p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  transition: border-color var(--transition);
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.09);
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255,255,255,0.4);
}

/* =============================================
   PHOTO BANNER
   ============================================= */

.photo-banner {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.photo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.photo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,10,15,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 2rem 3rem;
}

.photo-banner-overlay p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
}

/* =============================================
   PHOTO STRIP
   ============================================= */

.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 320px;
}

.photo-strip-item {
  overflow: hidden;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.photo-strip-item:hover img {
  transform: scale(1.04);
}

/* =============================================
   DONATIONS
   ============================================= */

.donate-section {
  background: var(--wine-dark);
  position: relative;
  overflow: hidden;
}

.donate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.donate-qr-wrap {
  display: flex;
  justify-content: center;
}

.donate-qr-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 320px;
  width: 100%;
}

.donate-qr-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 1.25rem;
}

.donate-qr {
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  border-radius: 4px;
}

.donate-qr-sub {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 1rem;
  line-height: 1.5;
}

/* =============================================
   MOBILE RESPONSIVE
   ============================================= */

@media (max-width: 768px) {
  .nav-inner { padding: 1rem 1.5rem; }
  .logo-text { font-size: 0.85rem; }

  .section { padding: 3.5rem 1.25rem; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-decorative { order: 0; }

  /* Photo */
  .photo-banner { height: 240px; }
  .photo-banner-overlay { padding: 1.25rem 1.5rem; }
  .photo-banner-overlay p { font-size: 0.95rem; }
  .photo-strip { height: 200px; }

  /* Schedule */
  .schedule-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* Sermons */
  .sermons-placeholder-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  .gallery-item-tall { grid-row: span 1; }

  /* Donate */
  .donate-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form-wrap { padding: 1.5rem; }

  /* Video */
  .video-wrap { max-height: 480px; }

  /* Strip */
  .strip-divider { display: none; }
  .strip-inner { gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.8rem; }
  .hero-logo { width: 150px; height: 150px; }
  .section-title { font-size: 2rem; }

  .schedule-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .donate-grid { gap: 2rem; }
  .donate-qr-card { padding: 1.5rem; }

  .about-decorative {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form-wrap { padding: 1.25rem; }
}

/* =============================================
   WORSHIP VIDEO
   ============================================= */

.worship-section {
  background: var(--white);
}

.video-wrap {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--wine);
  aspect-ratio: 9/16;
  max-height: 600px;
}

.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* =============================================
   PASTORS CARD
   ============================================= */

.pastors-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-left: 4px solid var(--wine);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
}

.pastors-photo {
  width: 72px;
  height: 72px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  border: 3px solid var(--wine);
  flex-shrink: 0;
}

.pastors-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.pastors-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.pastors-info strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--wine-dark);
  line-height: 1.3;
}

/* =============================================
   GALLERY
   ============================================= */

.gallery-section {
  background: var(--off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 0.75rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  background: var(--gray-light);
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item-tall { grid-row: span 1; }
  .gallery-item-wide { grid-column: span 2; }
  .video-wrap { max-height: 500px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item-wide { grid-column: span 1; }
}

/* =============================================
   MAP
   ============================================= */

.map-section {
  border-top: 4px solid var(--wine);
  filter: grayscale(20%) contrast(1.05);
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 700px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer-logo .logo-cross { font-size: 1.2rem; color: var(--gold); }

.footer-verse {
  font-family: var(--font-body);
  font-style: italic;
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-address {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.75rem;
}

.footer-copy {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-decorative { height: 280px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .nav-inner { padding: 1rem 1.5rem; }

  .hero-cta { flex-direction: column; align-items: center; }

  .section { padding: 4rem 1.5rem; }

  .schedule-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  .sermons-placeholder-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .strip-divider { display: none; }

  .strip-inner { gap: 1rem; }
}

@media (max-width: 480px) {
  .schedule-grid { grid-template-columns: 1fr; }

  .about-decorative { height: 220px; }

  .contact-form-wrap { padding: 1.5rem; }
}
