:root{--build-id:"30a66ff7-bcf2-4c58-a0c5-305a2d8c1861";}
/* 므오케다28 여행사 - 스타일시트 */

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

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

/* C08: 블루 계열 색상 팔레트 */
:root {
  --primary: #0369a1;
  --bg: #e0f2fe;
  --text: #075985;
  --accent: #38bdf8;
  --heading: #075985;
  --link: #075985;
}

/* H18: 헤딩 스타일 (clamp 기반) */
h1 {
  font-size: clamp(2.75rem, 2.7vw + 1rem, 3.05rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.005em;
  color: var(--heading);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2.06rem, 2.03vw + 0.75rem, 2.29rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.005em;
  color: var(--heading);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.65rem, 1.62vw + 0.6rem, 1.83rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.005em;
  color: var(--heading);
  margin-bottom: 1rem;
}

/* S05: 여백 시스템 */
.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 7rem 0;
}

.section-gap {
  gap: 5rem;
}

/* 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 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(224, 242, 254, 0.95);
  backdrop-filter: blur(10px);
  z-index: 50;
  border-bottom: 1px solid rgba(7, 89, 133, 0.1);
}

.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);
  text-decoration: none;
}

.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 {
  color: var(--link);
  text-decoration: none;
  font-weight: 500;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

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

/* B09: 버튼 스타일 (소프트 라운드) */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: #075985;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
}

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

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

/* L05: 레이아웃 (슬라이드형 히어로 + 탭 구조 + 2열 그리드 + 스티키CTA) */
.hero {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.text-center {
  text-align: center;
}

/* 푸터 */
footer {
  background: var(--primary);
  color: #fff;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #fff;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  line-height: 1.8;
}

.footer-section a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

/* 접근성 */
a:focus-visible,
input:focus-visible,
label:focus-visible,
button:focus-visible {
  outline: 3px solid #0066cc;
  outline-offset: 2px;
}

/* 반응형 */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    border-bottom: 1px solid rgba(7, 89, 133, 0.1);
  }

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

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

  section {
    padding: 4rem 0;
  }

  .hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
  }
}

/* Privacy/Terms 페이지 */
.doc-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 10rem 2rem 5rem;
  text-align: center;
}

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

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

.doc-container a {
  color: var(--primary);
  text-decoration: underline;
}