/* SAKA Korea - Custom Stylesheet (Merged: Claude + Gemini) */

/* ── Glassmorphism ── */
.glass-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.glass-nav {
  background: rgba(11, 37, 69, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── 스크롤바 ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #F1F5F9; }
::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #94A3B8; }

/* ── 도트 패턴 (히어로 배경) ── */
.dots-pattern {
  background-image: radial-gradient(#e2e8f0 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

/* ── 사업 카드 TAFISA 그린 좌측 보더 ── */
.pillar-card {
  border-left: 3px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.pillar-card:hover { border-left-color: #00A651; }

/* ── 섹션 레이블 (초록 왼쪽 라인) ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #00A651;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: #00A651;
  border-radius: 2px;
}

/* ── 헤더 스크롤 전환 (JS 연동) ── */
#main-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

/* ── 모바일 드로어 애니메이션 ── */
#mobile-drawer {
  transition: max-height 0.3s ease;
}

/* ── 뉴스 카드 이미지 높이 통일 ── */
.news-thumb {
  height: 176px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ── 프로그레스 바 그라디언트 ── */
.prog-gradient {
  background: linear-gradient(90deg, #00A651 0%, #00B4D8 60%, #FF5E36 100%);
}

/* ── 공사중 마퀴 ── */
@keyframes marquee-ltr {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100vw); }
}
.marquee-track {
  overflow: hidden;
  white-space: nowrap;
}
.marquee-content {
  display: inline-block;
  animation: marquee-ltr 18s linear infinite;
}

/* ── 히어로 텍스트 그림자 (가볍게) ── */
.hero-shadow {
  text-shadow: 0 1px 6px rgba(0,0,0,0.55), 0 2px 12px rgba(0,0,0,0.35);
}
.hero-body-shadow {
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* ── 모바일 최적화 ── */
@media (max-width: 640px) {
  /* 히어로 헤드라인 줄바꿈 방지 */
  h1 br { display: none; }

  /* 갤러리 소형 카드 높이 축소 */
  .gallery-thumb { height: 120px; }

  /* 푸터 파트너 배지 세로 정렬 */
  .partner-badges { flex-direction: column; }

  /* 퀵링크 텍스트 크기 */
  .quicklink-text { font-size: 0.75rem; }
}
