/* ============================================
   푸른숲교회 공식 홈페이지 - 공통 스타일 v3
   밝고 따뜻한 / 젊고 미니멀 / Pretendard 고딕
   ============================================ */

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css');

/* ---- CSS 변수 ---- */
:root {
  /* 밝고 따뜻한 그린 팔레트 (더 선명하고 활기차게) */
  --green-dark:  #1A7A4E;
  --green-main:  #2EC47A;
  --green-soft:  #5BD497;
  --green-light: #9EE8C0;
  --green-pale:  #C8F0DC;
  --green-tint:  #EDFAF3;
  --green-bg:    #F4FCF8;

  /* 따뜻한 중성 (더 밝고 환하게) */
  --warm-white:  #FFFFFF;
  --cream:       #FFFCF7;
  --bg-section:  #F9FBF8;
  --bg-warm:     #FFF8F0;

  /* 텍스트 */
  --text-900:    #14241C;
  --text-700:    #2A4237;
  --text-500:    #567064;
  --text-300:    #9AB8A8;

  /* 포인트 컬러 (따뜻한 선셋 오렌지) */
  --accent:      #FF8C42;
  --accent-soft: #FFF0E5;
  --accent-light:#FFDCC0;

  /* 그림자 (더 부드럽고 따뜻하게) */
  --shadow-xs:  0 1px 6px rgba(20,122,78,0.06);
  --shadow-sm:  0 2px 16px rgba(20,122,78,0.08);
  --shadow-md:  0 8px 32px rgba(20,122,78,0.12);
  --shadow-lg:  0 20px 56px rgba(20,122,78,0.14);
  --shadow-warm: 0 4px 20px rgba(255,140,66,0.18);

  /* 라디우스 */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;

  /* 트랜지션 */
  --ease: 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- 리셋 & 기본 ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont,
    'Segoe UI', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  color: var(--text-900);
  background: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- 헤더 ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(46,196,122,0.10);
  transition: box-shadow var(--ease), border-color var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(20,122,78,0.09);
  border-bottom-color: rgba(46,196,122,0.16);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* 로고 */
.logo-wrap { display: flex; align-items: center; }
.logo-img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* 네비 */
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  padding: 7px 14px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-500);
  transition: all var(--ease);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--green-dark);
  background: var(--green-tint);
}
.nav-cta {
  background: linear-gradient(135deg, var(--green-main) 0%, var(--green-dark) 100%) !important;
  color: white !important;
  padding: 9px 20px !important;
  border-radius: 22px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  box-shadow: 0 3px 14px rgba(46,196,122,0.32) !important;
  letter-spacing: -0.01em !important;
}
.nav-cta:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(46,196,122,0.40) !important;
}

/* 햄버거 */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: all var(--ease);
}

/* 모바일 메뉴 */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--green-pale);
  padding: 12px 20px 24px;
  z-index: 999;
  box-shadow: 0 10px 32px rgba(20,122,78,0.12);
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu a {
  padding: 12px 16px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-700);
  transition: all var(--ease);
  letter-spacing: -0.01em;
}
.mobile-menu a:hover {
  color: var(--green-dark);
  background: var(--green-tint);
}

/* ---- 컨테이너 ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section-sm { padding: 68px 0; }

/* ---- 섹션 헤더 ---- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--green-tint);
  color: var(--green-main);
  border-radius: 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid var(--green-pale);
}
.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--text-900);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.section-desc {
  font-size: 16px;
  color: var(--text-500);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.85;
  font-weight: 400;
}

/* ---- 버튼 ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 700;
  transition: all var(--ease);
  letter-spacing: -0.01em;
  font-family: 'Pretendard', sans-serif;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-main) 0%, var(--green-dark) 100%);
  color: white;
  box-shadow: 0 4px 18px rgba(46,196,122,0.36);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(46,196,122,0.44);
}
.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-light);
}
.btn-outline:hover {
  background: var(--green-tint);
  border-color: var(--green-main);
  transform: translateY(-2px);
}
.btn-white {
  background: white;
  color: var(--green-dark);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 2px solid rgba(255,255,255,0.38);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.26);
  transform: translateY(-2px);
}
.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #E8622A 100%);
  color: white;
  box-shadow: var(--shadow-warm);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,140,66,0.44);
}

/* ---- 카드 ---- */
.card {
  background: white;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* ---- 히어로 ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  background: linear-gradient(155deg, #EDFAF3 0%, #FFFCF7 55%, #FFF5EC 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -140px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(158,232,192,0.28) 0%, transparent 68%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,140,66,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.hero-with-photo { position: relative; }
.hero-bg-photo {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-bg-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 65%;
  filter: brightness(0.34) saturate(0.7);
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(145deg,
    rgba(10,42,26,0.87) 0%,
    rgba(26,122,78,0.68) 55%,
    rgba(10,36,20,0.62) 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 28px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--green-tint);
  border: 1px solid var(--green-pale);
  border-radius: 30px;
  font-size: 12px;
  color: var(--green-dark);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-with-photo .hero-badge {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.26);
  color: rgba(255,255,255,0.92);
}
.hero-title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  color: var(--text-900);
  line-height: 1.22;
  margin-bottom: 24px;
  letter-spacing: -0.035em;
}
.hero-title em {
  font-style: normal;
  color: var(--green-main);
}
.hero-with-photo .hero-title { color: white; }
.hero-with-photo .hero-title em { color: var(--green-soft); }
/* 히어로 타이틀 블록 (index.html 전용 오버라이드 없이 기본만) */
.hero-title-block { margin-bottom: 26px; }
.hero-desc {
  font-size: 16px;
  color: var(--text-500);
  line-height: 1.95;
  margin-bottom: 38px;
  font-weight: 400;
}
.hero-with-photo .hero-desc { color: rgba(255,255,255,0.80); }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats {
  display: flex; gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--green-pale);
}
.hero-with-photo .hero-stats { border-top-color: rgba(255,255,255,0.15); }
.hero-stat .num {
  font-size: 26px;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.hero-with-photo .hero-stat .num { color: var(--green-soft); }
.hero-stat .label { font-size: 12px; color: var(--text-300); font-weight: 500; }
.hero-with-photo .hero-stat .label { color: rgba(255,255,255,0.52); }

/* 히어로 우측 비주얼 카드 */
.hero-visual { display: flex; flex-direction: column; gap: 14px; }
.hero-card-main {
  background: white;
  border-radius: var(--r-lg);
  padding: 28px 30px;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--green-main);
}
.worship-times { display: flex; flex-direction: column; gap: 10px; }
.worship-time-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px;
  background: var(--green-bg);
  border-radius: var(--r-sm);
  transition: background var(--ease);
}
.worship-time-item:hover { background: var(--green-tint); }
.worship-time-icon {
  width: 38px; height: 38px;
  background: white;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}
.worship-time-icon img { width:100%; height:100%; object-fit:cover; }
/* 사진 아이콘 공통 - 이모지 대체 */
.photo-icon {
  width: 38px; height: 38px;
  background: var(--green-pale);
  border-radius: var(--r-sm);
  overflow: hidden;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.photo-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.photo-icon .icon-placeholder {
  font-size: 16px;
  color: var(--green-main);
}
.worship-time-info .wt-name { font-size: 12px; color: var(--text-300); margin-bottom: 2px; font-weight: 600; }
.worship-time-info .wt-time { font-size: 15px; font-weight: 700; color: var(--text-900); letter-spacing: -0.01em; }
.hero-cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-card-sm {
  background: white;
  border-radius: var(--r-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--ease);
  cursor: pointer;
}
.hero-card-sm:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.hero-card-sm .photo-thumb {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--green-tint);
  margin: 0 auto 10px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.hero-card-sm .photo-thumb img { width:100%; height:100%; object-fit:cover; }
.hero-card-sm .title { font-size: 13px; font-weight: 700; color: var(--text-900); margin-bottom: 2px; letter-spacing: -0.01em; }
.hero-card-sm .sub { font-size: 11px; color: var(--text-300); font-weight: 500; }

/* ---- 공지 스트립 ---- */
.notice-strip {
  background: linear-gradient(90deg, var(--green-dark) 0%, var(--green-main) 100%);
  color: white;
  padding: 14px 0;
}
.notice-inner { display: flex; align-items: center; gap: 14px; }
.notice-label {
  background: rgba(255,255,255,0.22);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.notice-text { font-size: 13px; opacity: 0.93; font-weight: 400; }

/* ---- 비전 섹션 ---- */
.vision-section { background: var(--bg-section); }
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.vision-text .lead {
  font-size: 18px;
  color: var(--green-dark);
  line-height: 1.9;
  margin-bottom: 20px;
  font-weight: 600;
}
.vision-text p { font-size: 15px; color: var(--text-500); line-height: 1.95; margin-bottom: 28px; }
.vision-text div > .btn { display: inline-flex; }
.vision-text > div > a.btn { margin-top: 0; }
.vision-cards { display: flex; flex-direction: column; gap: 12px; }
.vision-card {
  background: white;
  border-radius: var(--r-md);
  padding: 20px 22px;
  display: flex; align-items: flex-start; gap: 16px;
  box-shadow: var(--shadow-xs);
  transition: all var(--ease);
  border: 1.5px solid transparent;
}
.vision-card:hover {
  transform: translateX(5px);
  border-color: var(--green-pale);
  box-shadow: var(--shadow-sm);
}
/* 비전 카드 아이콘 - 사진/이모지 전환 가능 */
.vc-icon {
  width: 48px; height: 48px;
  background: var(--green-tint);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  overflow: hidden;
}
.vc-icon img { width:100%; height:100%; object-fit:cover; border-radius:var(--r-sm); }
.vc-title { font-size: 15px; font-weight: 700; color: var(--text-900); margin-bottom: 4px; letter-spacing: -0.01em; }
.vc-desc { font-size: 13px; color: var(--text-500); line-height: 1.75; }

/* 비전 섹션 교회 사진 */
.vision-photo-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 14px;
}
.vision-church-photo {
  width: 100%; height: 400px;
  object-fit: cover; object-position: center 65%;
  display: block;
  transition: transform 0.5s ease;
}
.vision-photo-wrap:hover .vision-church-photo { transform: scale(1.04); }
.vision-photo-badge {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(255,255,255,0.97);
  color: var(--green-dark);
  padding: 6px 13px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  box-shadow: var(--shadow-sm);
  pointer-events: none;
}
/* 비전 사진 플레이스홀더 */
.vision-photo-placeholder {
  width: 100%; height: 320px;
  background: linear-gradient(135deg, var(--green-tint) 0%, var(--green-pale) 100%);
  border-radius: var(--r-xl);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; color: var(--text-300); font-size: 14px; font-weight: 500;
  border: 2px dashed var(--green-pale);
  cursor: pointer;
}
.vision-photo-placeholder i { font-size: 40px; color: var(--green-light); }

/* ---- 예배시간 섹션 ---- */
.worship-section { background: white; }
.worship-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.worship-card {
  background: var(--bg-section);
  border-radius: var(--r-lg);
  padding: 30px 24px;
  text-align: center;
  border: 2px solid transparent;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}
.worship-card:hover {
  background: white;
  box-shadow: var(--shadow-md);
  border-color: var(--green-pale);
  transform: translateY(-5px);
}
/* 예배 카드 상단 포토존 */
.wc-photo-slot {
  width: 72px; height: 72px;
  border-radius: var(--r-md);
  margin: 0 auto 18px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-tint);
  font-size: 30px;
  box-shadow: var(--shadow-xs);
  transition: transform var(--ease);
}
.worship-card:hover .wc-photo-slot { transform: scale(1.05); }
.wc-photo-slot img { width:100%; height:100%; object-fit:cover; border-radius:var(--r-md); }
/* 레거시 호환 */
.wc-icon-wrap {
  width: 72px; height: 72px;
  background: white;
  border-radius: var(--r-md);
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-xs);
  font-size: 30px;
  overflow: hidden;
}
.wc-icon-wrap img { width:100%; height:100%; object-fit:cover; }
.wc-icon { font-size: 30px; }
.wc-name { font-size: 15px; font-weight: 700; color: var(--text-900); margin-bottom: 7px; letter-spacing: -0.01em; }
.wc-time { font-size: 24px; font-weight: 800; color: var(--green-dark); margin-bottom: 7px; letter-spacing: -0.03em; }
.wc-detail { font-size: 12px; color: var(--text-300); line-height: 1.7; font-weight: 400; }

/* ---- 새가족 배너 ---- */
.newcomer-banner {
  background: linear-gradient(135deg, #0F3A22 0%, var(--green-dark) 45%, #2EC47A 100%);
  color: white;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.newcomer-banner::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.newcomer-banner::after {
  content: '';
  position: absolute;
  left: -40px; bottom: -40px;
  width: 280px; height: 280px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}
.newcomer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.newcomer-text .tag {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.95);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}
.newcomer-text h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.28;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}
.newcomer-text p { font-size: 15px; opacity: 0.83; line-height: 1.95; margin-bottom: 28px; }
.newcomer-steps { display: flex; flex-direction: column; gap: 12px; }
.newcomer-step {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-md);
  padding: 16px 18px;
  backdrop-filter: blur(6px);
  transition: background var(--ease);
}
.newcomer-step:hover { background: rgba(255,255,255,0.18); }
.ns-num {
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.22);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
  color: white; flex-shrink: 0;
}
.ns-title { font-size: 14px; font-weight: 700; color: white; margin-bottom: 3px; letter-spacing: -0.01em; }
.ns-desc { font-size: 12px; color: rgba(255,255,255,0.70); line-height: 1.65; }

/* ---- 설교 그리드 (메인) ---- */
.sermon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sermon-card {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--ease);
}
.sermon-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.sermon-thumb {
  position: relative; padding-top: 56.25%;
  background: linear-gradient(135deg, var(--green-dark), var(--green-main));
  overflow: hidden;
}
.sermon-thumb img {
  position: absolute; top:0; left:0;
  width:100%; height:100%; object-fit:cover;
}
.sermon-thumb-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(10,50,25,0.25), rgba(20,80,45,0.18));
}
/* 설교 썸네일 사진 슬롯 */
.sermon-thumb-photo {
  position: absolute; inset: 0;
  background: var(--green-tint);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.sermon-thumb-photo img { width:100%; height:100%; object-fit:cover; }
.sermon-thumb-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  background: linear-gradient(135deg, var(--green-dark) 0%, #1A9160 100%);
}
.sermon-thumb-placeholder .ph-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.13);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 24px;
}
.sermon-thumb-placeholder .ph-text {
  font-size: 11px;
  color: rgba(255,255,255,0.50);
  font-weight: 500;
}
.play-btn {
  width: 54px; height: 54px;
  background: rgba(255,255,255,0.96);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--green-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: all var(--ease);
}
.sermon-card:hover .play-btn { transform: scale(1.12); }
.sermon-thumb .series-tag {
  position: absolute; top: 10px; left: 10px;
  background: rgba(255,255,255,0.94);
  color: var(--green-dark);
  padding: 3px 9px;
  border-radius: 20px; font-size: 10px; font-weight: 700;
}
.sermon-body { padding: 18px 20px 22px; }
.sermon-date { font-size: 11px; color: var(--text-300); margin-bottom: 7px; font-weight: 600; }
.sermon-title { font-size: 15px; font-weight: 700; color: var(--text-900); line-height: 1.5; margin-bottom: 7px; letter-spacing: -0.01em; }
.sermon-verse { font-size: 12px; color: var(--green-main); font-weight: 600; }

/* ---- 지도 섹션 ---- */
.map-section { background: var(--bg-section); }
.map-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.map-info-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 20px;
  background: white;
  border-radius: var(--r-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-xs);
  border: 1.5px solid transparent;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.map-info-item:hover {
  border-color: var(--green-pale);
  box-shadow: var(--shadow-sm);
}
.map-info-icon {
  width: 42px; height: 42px;
  background: var(--green-tint);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: var(--green-dark); flex-shrink: 0;
}
.map-info-title { font-size: 11px; color: var(--text-300); margin-bottom: 4px; font-weight: 700; letter-spacing: 0.04em; }
.map-info-content { font-size: 14px; font-weight: 700; color: var(--text-900); line-height: 1.55; }
.map-embed {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
  background: var(--green-tint);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.map-embed iframe { width:100%; height:100%; border:none; }
.church-photo-map { position: relative; overflow: hidden; }
.map-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,42,26,0.70) 0%, transparent 50%);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 24px;
}

/* ---- 온라인 섹션 ---- */
.online-section {
  background: linear-gradient(135deg, #0A2018 0%, var(--green-dark) 55%, #1A9160 100%);
  color: white; text-align: center; padding: 88px 0;
  position: relative; overflow: hidden;
}
.online-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(46,196,122,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.online-section h2 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 16px; font-weight: 800; letter-spacing: -0.03em; position: relative; z-index: 1; }
.online-section p { font-size: 16px; opacity: 0.78; margin-bottom: 38px; position: relative; z-index: 1; }

/* ---- 푸터 ---- */
.site-footer {
  background: var(--text-900);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}
.footer-brand .brand-logo { margin-bottom: 16px; }
.footer-logo-img {
  height: 38px; width: auto; display: block; object-fit: contain;
  filter: brightness(0) invert(1); opacity: 0.85;
}
.footer-brand p { font-size: 13px; line-height: 1.85; margin-bottom: 16px; font-weight: 400; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 9px;
  margin-bottom: 9px; font-size: 12px;
}
.footer-contact-item .fi { color: var(--green-light); margin-top: 2px; flex-shrink: 0; }
.footer-nav h4 { color: white; font-size: 13px; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.02em; }
.footer-nav ul { display: flex; flex-direction: column; gap: 8px; }
.footer-nav ul a { font-size: 12px; color: rgba(255,255,255,0.50); transition: color var(--ease); }
.footer-nav ul a:hover { color: var(--green-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; color: rgba(255,255,255,0.30);
}

/* ---- 페이지 히어로 (내부 페이지) ---- */
.page-hero {
  padding: 140px 0 76px;
  background: linear-gradient(155deg, var(--green-tint) 0%, #FFFCF7 55%, #FFF8F0 100%);
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(158,232,192,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .page-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px;
  background: rgba(46,196,122,0.10);
  color: var(--green-main);
  border-radius: 22px; font-size: 11px; font-weight: 700;
  margin-bottom: 18px; letter-spacing: 0.08em;
  border: 1px solid var(--green-pale);
}
.page-hero h1 {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  color: var(--text-900);
  margin-bottom: 16px;
  letter-spacing: -0.035em;
  line-height: 1.22;
  position: relative;
}
.page-hero p { font-size: 16px; color: var(--text-500); max-width: 520px; margin: 0 auto; line-height: 1.85; }

/* about 히어로 사진 배경 */
.about-hero { position: relative; overflow: hidden; padding: 0; min-height: 420px; }
.about-hero-bg { position: absolute; inset: 0; z-index: 0; }
.about-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 65%;
  filter: brightness(0.45) saturate(0.75);
}
.about-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(155deg, rgba(8,34,18,0.78) 0%, rgba(26,122,78,0.55) 60%, rgba(8,30,16,0.52) 100%);
}
.about-hero .container { position: relative; z-index: 1; padding-top: 144px; padding-bottom: 84px; }

.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  font-size: 12px; color: var(--text-300); margin-bottom: 20px;
}
.breadcrumb a { color: var(--green-main); }

/* ---- 사진 플레이스홀더 공통 ---- */
.img-placeholder {
  background: var(--green-tint);
  border: 2px dashed var(--green-pale);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-300);
  font-size: 13px;
  font-weight: 500;
  gap: 8px;
  text-align: center;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease);
}
.img-placeholder:hover {
  background: var(--green-pale);
  border-color: var(--green-light);
}
.img-placeholder i { font-size: 30px; color: var(--green-light); }
.img-placeholder span { font-size: 12px; color: var(--text-300); }

/* 사진 슬롯 - 이모지 대체 일반형 */
.photo-slot {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--green-tint);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.photo-slot img { width:100%; height:100%; object-fit:cover; display:block; }
.photo-slot .slot-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--text-300); font-size: 12px; font-weight: 500;
  padding: 16px;
  text-align: center;
}
.photo-slot .slot-placeholder i { font-size: 26px; color: var(--green-light); }

/* ---- 반응형 ---- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 560px; margin: 0 auto; }
  .vision-grid { grid-template-columns: 1fr; gap: 40px; }
  .newcomer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .worship-grid { grid-template-columns: repeat(2, 1fr); }
  .map-grid { grid-template-columns: 1fr; }
  .sermon-grid { grid-template-columns: repeat(2, 1fr); }
  .about-vision-photo-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .section { padding: 68px 0; }
  .hero-inner { padding: 60px 24px; }
  .hero-stats { gap: 20px; }
  .hero-stat .num { font-size: 22px; }
  .worship-grid { grid-template-columns: 1fr; }
  .sermon-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-cards-row { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
}

/* ---- 애니메이션 ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.fade-in   { animation: fadeUp 0.70s ease both; }
.fade-in-1 { animation-delay: 0.06s; }
.fade-in-2 { animation-delay: 0.16s; }
.fade-in-3 { animation-delay: 0.26s; }
.fade-in-4 { animation-delay: 0.38s; }
