:root{--build-id:"bb7d9352-8da5-4a2f-a57b-333406eec9f9";}
/* ==========================================
   피포모로11 나물 웹사이트 스타일시트
   변수 조합: L21, C03, T16, B01, N09, K01, S05, H01, F5, CS01
   ========================================== */

/* === 기본 리셋 및 변수 === */
:root {
  /* C03 색상 팔레트 */
  --primary: #0ea5e9;
  --bg: #f0f9ff;
  --text: #0c4a6e;
  --accent: #38bdf8;
  --heading: #0c4a6e;
  --link: #0c4a6e;

  /* S05 간격 시스템 */
  --section-padding: 7rem 0;
  --container-width: 1500px;
  --gap: 5rem;

  /* 기타 */
  --border-radius: 0.5rem;
  --shadow: 0 2px 8px rgba(14, 165, 233, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* F5 폰트 스택 */
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);
}

/* === H01 헤딩 스타일 === */
h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--heading);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--heading);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--heading);
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--primary);
}

a:focus-visible {
  outline: 3px solid var(--primary);
  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;
}

/* === N09 네비게이션 === */
header {
  background: rgba(240, 249, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(14, 165, 233, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-checkbox {
  display: none;
}

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

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

nav a {
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s ease;
}

nav a[aria-current="page"] {
  color: var(--primary);
  font-weight: 600;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* === 컨테이너 === */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* === L21 히어로 섹션 === */
.hero-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}

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

.hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--text);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-image svg {
  width: 100%;
  height: auto;
  max-width: 500px;
}

/* === B01 버튼 스타일 === */
.cta-button {
  display: inline-block;
  border-radius: 9999px;
  padding: 1rem 2.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

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

.cta-button.primary:hover {
  background: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

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

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

/* === 섹션 공통 === */
section {
  padding: var(--section-padding);
}

.section-description {
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* === K01 카드 스타일 === */
.features-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.feature-card,
.resource-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.08);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.15);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

/* === CS01 리스트 스타일 === */
.feature-list,
.info-list,
.styled-list,
.benefits-list,
.tip-list,
.detail-list,
.step-list,
.event-info,
.inquiry-list {
  list-style: none;
  margin: 1rem 0;
}

.feature-list li,
.info-list li,
.styled-list li,
.benefits-list li,
.tip-list li,
.detail-list li,
.step-list li,
.event-info li,
.inquiry-list li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  line-height: 1.6;
}

.feature-list li::before,
.info-list li::before,
.styled-list li::before,
.benefits-list li::before,
.tip-list li::before,
.detail-list li::before,
.step-list li::before,
.event-info li::before,
.inquiry-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* === 갤러리 === */
.gallery-section {
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-item svg {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.gallery-item:hover svg {
  transform: scale(1.05);
}

/* === Benefits === */
.benefits-section {
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
}

.benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}

.benefits-visual svg {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

/* === CTA Section === */
.cta-section {
  background: var(--primary);
  color: #fff;
  text-align: center;
}

.cta-section h2,
.cta-section p {
  color: #fff;
}

.cta-buttons-center {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.cta-section .cta-button.primary {
  background: #fff;
  color: var(--primary);
}

.cta-section .cta-button.primary:hover {
  background: #f0f9ff;
}

.cta-section .cta-button.secondary {
  border-color: #fff;
  color: #fff;
}

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

/* === Footer === */
footer {
  background: #075985;
  color: #e0f2fe;
  padding: 3rem 0 1.5rem;
}

.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand strong {
  font-size: 1.5rem;
  color: #fff;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact p {
  color: #bae6fd;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(186, 230, 253, 0.2);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-legal {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-legal a {
  color: #bae6fd;
}

.footer-legal span {
  color: #bae6fd;
}

/* === 페이지 공통 === */
.page-hero {
  padding: 5rem 0 3rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  text-align: center;
}

.page-intro {
  font-size: 1.25rem;
  color: var(--text);
  margin-top: 1rem;
}

.content-section {
  padding: 4rem 0;
}

.content-block {
  margin-bottom: 5rem;
}

.content-block:last-child {
  margin-bottom: 0;
}

/* === About 페이지 === */
.text-content {
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.value-item {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.08);
}

.value-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.timeline {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.timeline-item {
  padding-left: 3rem;
  position: relative;
  border-left: 3px solid var(--primary);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 0;
  width: 15px;
  height: 15px;
  background: var(--primary);
  border-radius: 50%;
}

.timeline-year {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* === Tips 페이지 === */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.tip-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.08);
}

.tip-number {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.tips-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 2rem;
}

.tip-section {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.08);
}

.nutrition-tips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 2rem;
}

.nutrition-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.08);
}

.combo-list,
.timing-list {
  margin-top: 1.5rem;
}

.seasonal-tips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.season-item {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.08);
}

/* === FAQ 페이지 === */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.08);
  margin-bottom: 1.5rem;
}

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

/* === Events 페이지 === */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.event-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.08);
}

.event-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.event-date {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.programs-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.program-item {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.08);
}

.program-schedule {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.program-details {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e0f2fe;
}

.special-events {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.special-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.08);
}

.event-period {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.participation-info {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.08);
  margin-top: 2rem;
}

.contact-cta {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #e0f2fe;
  border-radius: 0.5rem;
  text-align: center;
}

/* === Contact 페이지 === */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.contact-info-section,
.inquiry-section {
  background: #fff;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.08);
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-desc {
  font-size: 0.925rem;
  color: #64748b;
  margin-top: 0.5rem;
}

.inquiry-note {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e0f2fe;
  color: #64748b;
}

.location-info {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.08);
}

/* === Privacy/Terms === */
.doc-container {
  max-width: 800px;
  margin: 5rem auto;
  padding: 2rem;
  text-align: center;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.08);
}

/* === 리소스 페이지 === */
.recipe-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.recipe-item {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.08);
}

/* === 반응형 디자인 === */
@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(240, 249, 255, 0.98);
    padding: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(14, 165, 233, 0.2);
  }

  .menu-checkbox:checked ~ nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
  }

  nav li {
    width: 100%;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
  }

  nav a {
    display: block;
    padding: 1rem;
  }

  .hero-section .container,
  .benefits-content,
  .features-grid,
  .resource-grid,
  .gallery-grid,
  .values-grid,
  .tips-grid,
  .tips-content,
  .nutrition-tips,
  .seasonal-tips,
  .events-grid,
  .special-events,
  .contact-wrapper,
  .recipe-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .cta-button {
    width: 100%;
  }

  :root {
    --section-padding: 4rem 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.875rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 1rem;
  }

  .feature-card,
  .resource-card,
  .tip-card {
    padding: 1.5rem;
  }
}