/* 영광굴비 커스텀 스타일 — Tailwind로 커버 안 되는 부분만 */

/* 스크롤바 */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0E0E10; }
::-webkit-scrollbar-thumb { background: #C9A24B; border-radius: 3px; }

/* 인쇄용 */
@media print {
  header, footer, .no-print, .fixed { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  a { color: #000 !important; text-decoration: none !important; }
}

/* 부드러운 앵커 스크롤 */
html { scroll-behavior: smooth; }

/* 이미지 로딩 플레이스홀더 */
img[src=""] { background: #1A1A1D; min-height: 200px; }

/* 히어로 동영상 — 모션 감소 설정 사용자 배려 */
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none !important; }
}

/* 데스크탑 base font 17px — 모바일은 16px 유지 */
@media (min-width: 768px) {
  html { font-size: 17px; }
  body { line-height: 1.65; }
}
