/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #00308F;
  --blue-dark:  #001F5C;
  --steel:      #5B6670;
  --sky:        #4A90D9;
  --light-gray: #D1D5DB;
  --cloud:      #F5F7FA;
  --slate:      #1A2235;
  --white:      #FFFFFF;
  --gold:       #C8A84E;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--slate);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
}

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

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

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.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-outline-dark {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-dark:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #b8963e;
  border-color: #b8963e;
}

/* ========== NAV ========== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}

nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  height: 100px;
}

.nav-logo-img {
  height: 160px;
  width: auto;
  margin: -30px 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--steel);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-links .btn {
  font-size: 0.75rem;
  padding: 10px 24px;
}

/* ========== NAV DROPDOWNS ========== */
.nav-links li {
  position: relative;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 12px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 200;
  list-style: none;
}
.nav-links li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
}
.nav-dropdown li {
  padding: 0;
}
.nav-dropdown a {
  display: block;
  padding: 10px 24px;
  font-size: 0.85rem !important;
  text-transform: none !important;
  color: var(--steel) !important;
  transition: background 0.2s, color 0.2s;
}
.nav-dropdown a:hover {
  background: var(--cloud);
  color: var(--blue) !important;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background: var(--blue-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://img1.wsimg.com/isteam/ip/7ee746f3-c2f2-4865-b9be-54788a1fd2e5/churchall.jpg/:/cr=t:0%25,l:0%25,w:100%25,h:100%25/rs=w:1920,m');
  background-size: cover;
  background-position: center top;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,31,92,0.88) 0%, rgba(0,48,143,0.75) 40%, rgba(0,48,143,0.45) 75%, rgba(0,48,143,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 80px;
  width: 100%;
}

.hero-content .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-left {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero h1 span {
  display: block;
  font-weight: 500;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.75);
  margin-top: 12px;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-self: end;
}

.hero-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 28px 32px;
  color: var(--white);
  max-width: 340px;
}

.hero-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(200,168,78,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.hero-card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.hero-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.hero-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0;
}

/* ========== QUICK INFO STRIP ========== */
.quick-info {
  background: var(--white);
  padding: 0;
  border-bottom: 1px solid var(--light-gray);
}

.quick-info-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 0;
}

.quick-info-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate);
  transition: background 0.2s, color 0.2s;
  border-right: 1px solid var(--light-gray);
}

.quick-info-link:hover {
  background: var(--cloud);
  color: var(--blue);
}

.quick-info-link svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.quick-info-link.facebook svg {
  color: #1877F2;
}

.quick-info-link.spotify svg {
  color: #1DB954;
}

.quick-info-cta {
  flex: none;
  display: flex;
  align-items: center;
  padding: 20px 40px;
  background: var(--gold);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  gap: 10px;
  transition: background 0.2s;
  cursor: pointer;
}

.quick-info-cta:hover {
  background: #b8963e;
}

.quick-info-cta svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .quick-info-inner {
    flex-direction: column;
  }
  .quick-info-link {
    border-right: none;
    border-bottom: 1px solid var(--light-gray);
    justify-content: center;
    padding: 16px 24px;
    width: 100%;
  }
  .quick-info-cta {
    justify-content: center;
    padding: 16px 24px;
    width: 100%;
    order: -1;
  }
}

/* ========== BANNER CAROUSEL ========== */
.banner-carousel {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: var(--slate);
}

.banner-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.banner-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.banner-slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 80px;
}

.banner-slide-text {
  max-width: 560px;
}

.banner-slide-text .banner-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(200,168,78,0.15);
  border-radius: 4px;
}

.banner-slide-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.banner-slide-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}

/* Slide themes */
.banner-slide.theme-blue {
  background: linear-gradient(135deg, #00308F 0%, #001F5C 60%, #1a3a7a 100%);
}

.banner-slide.theme-dark {
  background: linear-gradient(135deg, #1A2235 0%, #0f1520 60%, #1e2940 100%);
}

.banner-slide.theme-steel {
  background: linear-gradient(135deg, #3a4a5a 0%, #2a3545 60%, #1A2235 100%);
}

.banner-slide.theme-navy {
  background: linear-gradient(135deg, #001F5C 0%, #00308F 50%, #1a3a7a 100%);
}

/* Decorative accent shapes */
.banner-accent {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  overflow: hidden;
  opacity: 0.08;
}

.banner-accent svg {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  height: 120%;
  width: auto;
  fill: currentColor;
  color: white;
}

/* Right-side visual element */
.banner-visual {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-icon-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.banner-icon-circle::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
}

.banner-icon-circle svg {
  width: 64px;
  height: 64px;
  color: var(--gold);
  opacity: 0.8;
}

.banner-logo-img {
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}

.banner-logo-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.banner-logo-img.photo-frame {
  width: 480px;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border: 3px solid rgba(255,255,255,0.15);
}

.banner-logo-img.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .banner-feature-img { display: none; }
}

.banner-stat {
  text-align: center;
  color: var(--white);
}

.banner-stat .stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.banner-stat .stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

.banner-detail-row {
  display: flex;
  gap: 32px;
  margin-top: 4px;
  margin-bottom: 28px;
}

.banner-detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.banner-detail-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Carousel Controls */
.banner-nav {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.banner-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.banner-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(4px);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.banner-arrow:hover {
  background: rgba(0,0,0,0.4);
  border-color: rgba(255,255,255,0.5);
}

.banner-arrow.prev { left: 20px; }
.banner-arrow.next { right: 20px; }

.banner-arrow svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .banner-carousel { height: 320px; }
  .banner-slide-text h2 { font-size: 1.6rem; }
}

/* ========== ABOUT SECTION ========== */
.about {
  padding: 120px 0;
  background: var(--white);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 480px;
}

.about-img-main {
  width: 75%;
  height: 380px;
  background: var(--light-gray);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 280px;
  background: var(--light-gray);
  border-radius: 8px;
  overflow: hidden;
  z-index: 2;
  border: 6px solid var(--white);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text .section-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 16px;
}

.about-text h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 24px;
}

.about-text h2 em {
  font-style: normal;
  color: var(--blue);
}

.about-text p {
  color: var(--steel);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text .btn {
  margin-top: 16px;
}

/* ========== SERVICE TIMES SECTION ========== */
.service-times-section {
  background: var(--cloud);
  padding: 80px 0;
}

.service-times-section .section-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.service-times-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 0;
}

.service-times-header {
  text-align: center;
  margin-bottom: 48px;
}

.service-times-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-time-card {
  background: var(--white);
  border-radius: 8px;
  padding: 40px 28px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-time-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.service-time-card-icon {
  width: 56px;
  height: 56px;
  background: var(--cloud);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-time-card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--blue);
}

.service-time-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 8px;
}

.service-time-card .time {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 10px;
}

.service-time-card p {
  color: var(--steel);
  font-size: 0.85rem;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .service-times-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-times-grid {
    grid-template-columns: 1fr;
  }
  .service-times-section {
    padding: 48px 0;
  }
}

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}

.section-header .section-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--steel);
  font-size: 1rem;
}

/* ========== SERMON / CTA SECTION ========== */
.sermon-cta {
  position: relative;
  padding: 100px 0;
  background: var(--slate);
  overflow: hidden;
}

.sermon-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,48,143,0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.sermon-cta .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sermon-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.sermon-text p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}

.sermon-preview {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 32px;
}

.sermon-meta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.sermon-preview h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.sermon-preview .sermon-speaker {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.sermon-preview .sermon-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 24px;
}

.play-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  cursor: pointer;
  transition: gap 0.2s;
}

.play-btn:hover {
  gap: 16px;
}

.play-btn .play-circle {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn .play-circle svg {
  width: 16px;
  height: 16px;
  color: var(--white);
  margin-left: 2px;
}

/* ========== MINISTRIES ========== */
.ministries {
  padding: 100px 0;
  background: var(--white);
}

.ministries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ministry-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 320px;
  cursor: pointer;
}

.ministry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ministry-card:hover img {
  transform: scale(1.05);
}

.ministry-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,31,92,0.9) 0%, rgba(0,31,92,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: background 0.3s;
}

.ministry-card:hover .ministry-card-overlay {
  background: linear-gradient(to top, rgba(0,31,92,0.95) 0%, rgba(0,31,92,0.4) 60%, rgba(0,31,92,0.15) 100%);
}

.ministry-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.ministry-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.ministry-card .card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}

.ministry-card:hover .card-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ========== VISIT CTA ========== */
.visit-cta {
  padding: 100px 0;
  background: var(--blue);
}

.visit-cta .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.visit-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.visit-text h2 em {
  font-style: normal;
  color: var(--gold);
}

.visit-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.visit-detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visit-detail-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.visit-detail h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.visit-detail p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0;
}

.visit-map {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 420px;
  background: var(--light-gray);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========== FOOTER ========== */
footer {
  background: var(--slate);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .church-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.footer-social a:hover {
  transform: scale(1.1);
}

.footer-social a svg {
  width: 28px;
  height: 28px;
}

.footer-social a.fb svg { color: #1877F2; }
.footer-social a.yt svg { color: #FF0000; }
.footer-social a.sp svg { color: #1DB954; }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* ========== PAGE HEADER (SUBPAGES) ========== */
.page-header {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 160px 0 60px;
  text-align: center;
  position: relative;
}
.page-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.page-header .page-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
}
.page-header .breadcrumb {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ========== CONTENT SECTION (SUBPAGES) ========== */
.content-section {
  padding: 80px 0;
}
.content-section:nth-child(even) {
  background: var(--cloud);
}
.content-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 24px;
}
.content-section h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 12px;
}
.content-section p {
  color: var(--steel);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 720px;
}

/* ========== FORMS ========== */
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light-gray);
  border-radius: 6px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--slate);
  transition: border-color 0.2s;
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.form-group textarea {
  min-height: 150px;
  resize: vertical;
}
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}
.form-check label {
  font-size: 0.9rem;
  color: var(--steel);
}
.contact-form {
  max-width: 600px;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-info-grid { grid-template-columns: 1fr; }
}

/* ========== STAFF GRID ========== */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.staff-card {
  text-align: center;
  background: var(--white);
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.staff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.staff-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  object-fit: cover;
  margin: 0 auto 20px;
  background: var(--light-gray);
}
.staff-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 4px;
}
.staff-card .staff-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 12px;
}
.staff-card .staff-email {
  font-size: 0.85rem;
  color: var(--blue);
  text-decoration: underline;
}
.staff-card .staff-email:hover {
  color: var(--blue-dark);
}
@media (max-width: 1024px) {
  .staff-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
}
@media (max-width: 768px) {
  .staff-grid { grid-template-columns: 1fr; }
}

/* ========== TIMELINE ========== */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--blue);
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 32px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--blue);
}
.timeline-item .timeline-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
}
.timeline-item h3 {
  font-size: 1.1rem;
  color: var(--slate);
  margin-bottom: 8px;
}
.timeline-item p {
  color: var(--steel);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========== PASTORS LIST ========== */
.pastors-list {
  max-width: 600px;
  margin: 0 auto;
}
.pastor-entry {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 1.05rem;
  color: var(--slate);
}
.pastor-entry:last-child { border-bottom: none; }

/* ========== HISTORY GALLERY ========== */
.history-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.history-photo-card {
  text-align: center;
}
.history-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin-bottom: 12px;
}
.history-photo-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 4px;
}
.history-photo-card p {
  font-size: 0.9rem;
  color: var(--steel);
}
@media (max-width: 600px) {
  .history-gallery { grid-template-columns: 1fr; }
}

/* ========== INFO CARDS ========== */
.info-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
}
.info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 12px;
}
.info-card p {
  color: var(--steel);
  font-size: 0.95rem;
  line-height: 1.7;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.info-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .info-grid { grid-template-columns: 1fr; }
  .info-grid-2col { grid-template-columns: 1fr; }
}

/* ========== BELIEF / DOCTRINE CARDS ========== */
.belief-card {
  background: var(--white);
  border-radius: 8px;
  padding: 40px 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border-left: 4px solid var(--blue);
  margin-bottom: 24px;
}
.belief-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 12px;
}
.belief-card p {
  color: var(--steel);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: none;
}

/* ========== VISIT INFO CARDS ========== */
.visit-info-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.visit-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(0,48,143,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visit-info-icon svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
}
.visit-info-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.visit-info-card p {
  margin-bottom: 0;
}

/* ========== EVENT CARDS ========== */
.event-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.event-date-badge {
  min-width: 70px;
  text-align: center;
  background: var(--blue);
  border-radius: 8px;
  padding: 12px 8px;
  color: var(--white);
}
.event-date-badge .month {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.event-date-badge .day {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.event-details h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.event-details p {
  margin-bottom: 0;
}

/* ========== EXTERNAL LINK CARDS ========== */
.external-link-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: 8px;
  padding: 24px 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.25s, box-shadow 0.25s;
  margin-bottom: 16px;
}
.external-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.external-link-card .link-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.external-link-card .link-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}
.external-link-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.external-link-card p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* ========== VBS CARD ========== */
.vbs-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--blue);
  border-radius: 16px;
  padding: 48px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.vbs-card-logo {
  flex-shrink: 0;
}
.vbs-card-logo img {
  width: 200px;
  border-radius: 12px;
}
.vbs-card-text {
  flex: 1;
  min-width: 280px;
  text-align: left;
}

/* ========== SUNDAY SCHOOL GRID ========== */
.sunday-school-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

/* ========== HAMBURGER MENU ========== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 300;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--slate);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-content .container {
    grid-template-columns: 1fr;
  }
  .hero-right { display: none; }
  .hero h1 { font-size: 2.6rem; }

  .nav-links {
    gap: 20px;
  }
  .nav-links a {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  /* --- Hamburger visible --- */
  .hamburger { display: flex; }

  /* --- Mobile Nav --- */
  .nav-inner { height: 70px; }
  .nav-logo { height: 70px; }
  .nav-logo-img { height: 120px; margin: -25px 0; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 24px;
    gap: 0;
    overflow-y: auto;
    z-index: 200;
    border-top: 1px solid rgba(0,0,0,0.08);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .nav-links > li > a {
    display: block;
    padding: 16px 0;
    font-size: 1.1rem;
  }

  /* Mobile dropdowns - always visible when parent tapped */
  .nav-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    display: none;
    padding: 0 0 8px 16px;
    min-width: auto;
    background: transparent;
  }
  .nav-dropdown.open {
    display: block;
  }
  .nav-links li:hover .nav-dropdown {
    display: none;
  }
  .nav-links li .nav-dropdown.open {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .nav-dropdown a {
    padding: 10px 16px !important;
    font-size: 0.95rem !important;
  }

  /* --- Hero --- */
  .hero { min-height: 70vh; }
  .hero-content { padding: 100px 0 60px; }
  .hero h1 { font-size: 2rem; }
  .hero h1 span { font-size: 1.2rem; }
  .hero .hero-tag { font-size: 0.9rem; }
  .hero p { font-size: 1rem; }

  /* --- Page Header --- */
  .page-header { padding: 100px 0 40px; }
  .page-header h1 { font-size: 1.8rem; }
  .page-header .breadcrumb { font-size: 1rem; }
  .page-subtitle { font-size: 0.95rem; }

  /* --- Content sections --- */
  .content-section { padding: 48px 0; }

  /* --- About section --- */
  .about { padding: 60px 0; }
  .about .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-images { height: 300px; }
  .about-text h2 { font-size: 1.8rem; }

  /* --- Service times --- */
  .service-times-section { padding: 48px 0; }
  .services-grid,
  .ministries-grid {
    grid-template-columns: 1fr;
  }

  /* --- Banner carousel --- */
  .banner-carousel { height: 560px; }
  .banner-slide { height: 560px; }
  .banner-slide-content {
    flex-direction: column;
    padding: 40px 24px 30px;
    gap: 12px;
    justify-content: center;
  }
  .banner-slide-text {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .banner-slide-text h2 { font-size: 1.5rem; }
  .banner-slide-text p { font-size: 0.9rem; }
  .banner-detail-row { justify-content: center; }
  .banner-slide-img { display: none; }
  .banner-visual {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .banner-logo-img {
    width: 160px;
    height: 160px;
  }
  .banner-logo-img.photo-frame {
    width: 100%;
    max-width: 300px;
    height: 160px;
  }
  .banner-accent { display: none; }
  .banner-detail-row { flex-direction: column; gap: 8px; }
  .banner-arrow { display: none; }
  .banner-dots { padding: 12px 0; }

  /* --- Quick info bar --- */
  .quick-info-inner {
    flex-direction: column;
    gap: 0;
  }
  .quick-info-link {
    padding: 14px 20px;
    border-right: none;
    border-bottom: 1px solid var(--light-gray);
    justify-content: center;
    width: 100%;
  }
  .quick-info-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    order: -1;
  }

  /* --- Grids --- */
  .sermon-cta .container,
  .visit-cta .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .visit-map { height: 300px; }
  .visit-text h2,
  .sermon-text h2 { font-size: 1.8rem; }

  .section-header h2 { font-size: 1.8rem; }

  /* --- Staff grid --- */
  .staff-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  /* --- Contact social icons left-align --- */
  .content-section .footer-social {
    justify-content: flex-start;
  }

  /* --- Footer --- */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand { text-align: center; }
  .footer-brand p { max-width: 100%; }
  .footer-social { justify-content: center; }
  .footer-col { text-align: center; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .footer-bottom span:nth-child(3) { order: 2; }
  .footer-bottom span:nth-child(2) { order: 3; }

  /* --- Info grids --- */
  .info-grid { grid-template-columns: 1fr; }
  .info-grid-2col { grid-template-columns: 1fr; }

  /* --- Buttons --- */
  .btn { padding: 12px 24px; font-size: 0.8rem; }

  /* --- History --- */
  .history-gallery { grid-template-columns: 1fr; }

  /* --- Events --- */
  .event-card {
    flex-direction: column;
    align-items: flex-start;
  }

  /* --- VBS card --- */
  .vbs-card {
    padding: 32px 24px;
    gap: 24px;
    flex-direction: column;
    text-align: center;
  }
  .vbs-card-logo img { width: 160px; }
  .vbs-card-text {
    min-width: auto;
    text-align: center;
  }

  /* --- Sunday school grid --- */
  .sunday-school-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========== SMALL MOBILE ========== */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.6rem; }
  .hero h1 span { font-size: 1rem; }
  .hero p { font-size: 0.9rem; }
  .page-header h1 { font-size: 1.5rem; }
  .content-section h2 { font-size: 1.4rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .banner-slide-text h2 { font-size: 1.3rem; }
  .visit-text h2,
  .sermon-text h2,
  .about-text h2 { font-size: 1.5rem; }
  .sunday-school-grid { grid-template-columns: 1fr; }
}
