:root{--build-id:"400079db-48e5-4036-a6c4-80a366080538";}
/* 크아므노 여행사 - 정적 HTML 스타일시트 */

/* ========== 리셋 및 기본 설정 ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========== CSS 변수 (C14: 그린 계열) ========== */
:root {
  --primary: #16a34a;
  --bg: #dcfce7;
  --text: #166534;
  --accent: #22c55e;
  --heading: #166534;
  --link: #166534;
}

/* ========== 폰트 (F5: Android Core) ========== */
body {
  font-family: Roboto, "Noto Sans KR", "Malgun Gothic", "Segoe UI", -apple-system, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0em;
  color: var(--text);
  background-color: var(--bg);
}

/* ========== 헤딩 (H02 기반) ========== */
h1 {
  font-size: clamp(2.00rem, 2.6vw + 1rem, 3.00rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--heading);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.50rem, 1.95vw + 0.75rem, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--heading);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.20rem, 1.56vw + 0.6rem, 1.80rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--heading);
  margin-bottom: 1rem;
}

/* ========== 링크 ========== */
a {
  color: var(--link);
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.8;
}

a:focus-visible {
  outline: 3px solid #0066cc;
  outline-offset: 2px;
}

/* ========== Skip Link (접근성) ========== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* ========== 헤더 (N14: 언더라인 메뉴) ========== */
header {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.menu-checkbox {
  display: none;
}

.menu-toggle {
  display: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--primary);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

nav a {
  font-weight: 500;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

nav a:hover,
nav a[aria-current="page"] {
  border-bottom-color: var(--primary);
}

/* ========== 모바일 네비게이션 ========== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }

  .menu-checkbox:checked ~ nav {
    max-height: 500px;
  }

  nav ul {
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
  }
}

/* ========== 메인 컨테이너 (S05) ========== */
main {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 7rem 0;
}

.section-gap {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

/* ========== 히어로 섹션 (L26: 미니멀리스트) ========== */
.hero {
  text-align: center;
  padding: 5rem 0;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 1rem;
  margin-top: 2rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: var(--text);
  opacity: 0.9;
}

/* ========== 버튼 (B03: 라운드 풀 + 그림자) ========== */
.btn {
  display: inline-block;
  border-radius: 9999px;
  padding: 1.25rem 3rem;
  font-weight: 700;
  background-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.btn:focus-visible {
  outline: 3px solid #0066cc;
  outline-offset: 2px;
}

/* ========== 2열 레이아웃 ========== */
.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: start;
}

/* ========== 카드 (K13: 그림자 오프셋) ========== */
.card {
  border-radius: 0.5rem;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  padding: 2rem;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.15);
}

.card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

/* ========== 타임라인 ========== */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.9rem;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid #fff;
}

.timeline-item h3 {
  margin-bottom: 0.75rem;
}

/* ========== 리스트 스타일 ========== */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-list li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ========== FAQ 스타일 ========== */
.faq-item {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* ========== 연락처 정보 ========== */
.contact-info {
  background: #fff;
  border-radius: 0.5rem;
  padding: 2.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-info p {
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
}

.contact-info strong {
  color: var(--primary);
  font-weight: 600;
}

/* ========== 푸터 ========== */
footer {
  background-color: #fff;
  border-top: 2px solid var(--primary);
  margin-top: 5rem;
}

.footer-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.9375rem;
  color: var(--text);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  font-size: 0.875rem;
  color: var(--text);
  opacity: 0.8;
}

/* ========== SVG 아이콘 스타일 ========== */
.icon {
  width: 3rem;
  height: 3rem;
  fill: var(--primary);
  margin-bottom: 1rem;
}

/* ========== 반응형 ========== */
@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }

  .hero {
    padding: 3rem 1.5rem;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .timeline {
    padding-left: 2rem;
  }
}

/* ========== Privacy/Terms 문서 스타일 ========== */
.doc-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

.doc-container h1 {
  margin-bottom: 2rem;
}

.doc-container p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}