/* =========================================================
   Theme Tokens
   ========================================================= */
:root {
  --color-white: #fff;
  --color-black: #000;
  --color-cream-50: #fcfcf9;
  --color-slate-500: #626c71;
  --color-slate-900: #13343b;

  /* 네이비 톤 */
  --color-teal-300: #337ab7;  /* 밝은 보조 톤 */
  --color-teal-500: #2c4a7d;  /* 메인 네이비 */
  --color-teal-600: #1f3b63;  /* 호버/강조 */

  --color-primary: var(--color-teal-500);
  --color-primary-light: var(--color-teal-300);

  --color-text: var(--color-slate-900);
  --color-bg: var(--color-cream-50);
  --color-card-bg: var(--color-white);
  --color-border: rgba(94, 82, 64, 0.2);
}

/* =========================================================
   Reset & Base
   ========================================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Noto Sans KR','Apple SD Gothic Neo',sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

/* 페이지 폭: 너무 넓지 않게 살짝 줄임 */
.container {
  max-width: 560px;         /* ← 기존 600px → 560px */
  margin: 0 auto;
  background: var(--color-bg); /* 컨테이너 배경을 페이지 배경과 동일하게 */
  min-height: 100vh;
}

/* =========================================================
   Header
   ========================================================= */
.header {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  display: flex;
  justify-content: center;
  background: #fff; /* 배너 하얀 여백 정리 */
}

.header-banner {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* =========================================================
   Section Container Styling (카드형 공통)
   ========================================================= */
.invitation,
.event-info,
.map-section,
.rsvp-section {
  background: var(--color-card-bg);
  margin: 30px 20px;     /* 섹션 간격 */
  padding: 30px 25px;    /* 카드 내부 여백 */
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.05);
  border: 1px solid var(--color-border);
}

/* 초대문 텍스트: 카드 속성은 섹션이 담당하므로 내용만 정리 */
.invitation-text {
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  margin: 0;
}

/* =========================================================
   Section Headings & Info Rows
   ========================================================= */
.event-info h2, .map-section h2, .rsvp-section h2 {
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-item { display: flex; padding: 12px 0; border-bottom: 1px solid #f0f0f0; }
.info-item:last-child { border-bottom: none; }
.info-label {
  font-weight: 600;
  width: 60px;
  flex-shrink: 0;
  color: var(--color-primary);
}
.info-value {
  flex: 1;
  color: var(--color-text);
  padding-left: 15px;
  text-align: left;
}
.event-info-note {
  font-size: 13px;
  color: var(--color-slate-500);
  margin-top: 6px;
  font-weight: 400;
  line-height: 1.4;
}

/* =========================================================
   Map Section
   ========================================================= */
.map-container { border-radius: 12px; overflow: hidden; margin-bottom: 15px; }

.map-button {
  display: block;
  width: 100%;
  padding: 13px 0;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .25s ease, box-shadow .25s ease;
  box-shadow: 0 4px 14px rgba(44, 74, 125, 0.35);
}
.map-button:hover {
  background: var(--color-teal-600);
  box-shadow: 0 6px 20px rgba(31, 59, 99, 0.55);
}

/* =========================================================
   Transport Guide (오시는 길 안내)
   ========================================================= */
.transport-guide {
  margin-top: 15px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
}
.transport-guide h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 18px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid #e9ecef;
}
.transport-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.transport-item:not(:last-child) { margin-bottom: 18px; }
.transport-title { flex-shrink: 0; width: 70px; text-align: center; }
.transport-title .icon { font-size: 22px; display: block; margin-bottom: 5px; }
.transport-title strong { font-size: 14px; font-weight: 600; color: var(--color-slate-500); }
.transport-desc { flex-grow: 1; font-size: 14px; color: var(--color-text); line-height: 1.7; }
.transport-desc p { margin: 0 0 5px 0; }
.transport-desc > p > strong { font-weight: 700; color: var(--color-primary); }
.transport-desc .bus-numbers { font-size: 13px; color: var(--color-slate-500); line-height: 1.5; word-break: keep-all; }
.transport-desc .parking-info { font-size: 13px; color: var(--color-slate-500); }
.transport-desc .parking-info strong { color: #d9534f; font-weight: 700; }

/* =========================================================
   Form Styles
   ========================================================= */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--color-text);
  font-size: 14px;
}
.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color .2s;
  background: #fff;
}
.form-control:focus { outline: none; border-color: var(--color-primary); }

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.radio-item {
  display: flex;
  align-items: center;   /* baseline이나 flex-start로 놔도 됨 */
  margin-bottom: 0;
  min-height: 24px;
}

.radio-item input[type="radio"] {
  margin: 0;
  margin-right: 8px;      /* 버튼과 텍스트 사이만 여백 */
  vertical-align: middle;
}

.radio-item label {
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  margin: 0;
  min-width: 54px;      /* "대중교통" 텍스트를 기준으로 맞춰 조절 */
  flex-shrink: 0;
}

.radio-item .form-hint {
  display: inline;
  white-space: nowrap;
  margin-left: 0px;
  font-size: 13px;
  color: #777;
  flex-shrink: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;     /* 필요시 조정 */
}
.submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background-color .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(44, 74, 125, 0.35);
}
.submit-btn:hover {
  background: var(--color-teal-600);
  box-shadow: 0 6px 20px rgba(31, 59, 99, 0.55);
}
.submit-btn:active { transform: translateY(1px); box-shadow: 0 3px 12px rgba(44, 74, 125, 0.5); }

.success-message {
  background: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  text-align: center;
  font-weight: 600;
  display: none;
  transition: opacity 0.3s ease;
}
.success-message.show { display: block; animation: slideDown .3s ease-out; }
@keyframes slideDown { from { opacity:0; transform:translateY(-20px) } to { opacity:1; transform:translateY(0) } }

.form-hint { display: block; margin-top: 6px; font-size: 13px; color: #777; line-height: 1.4; }

/* =========================================================
   Bank Info & Copy Button
   ========================================================= */
.bank-info {
  margin-top: 10px;
  padding: 12px 14px;
  background: #f0f8ff;
  border-radius: 8px;
  font-size: 13px;
  color: #0066cc;
  border: 1px solid #e6f3ff;
  line-height: 1.6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.bank-info strong { color: #004c99; font-weight: 700; }

.copy-btn {
  flex-shrink: 0;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #c7e3ff;
  background: #eaf4ff;
  color: #0b66c3;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
}
.copy-btn:hover { background-color: #0b66c3; color: #fff; border-color: #0b66c3; }

/* =========================================================
   Modal (Map App Choice)
   ========================================================= */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 120px;
  z-index: 999;
}
.modal.hidden { display: none; }
.modal-content {
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
  animation: fadeIn .25s ease-out;
  width: 280px;
}
.modal-content h3 { margin-bottom: 20px; font-size: 18px; color: var(--color-text); }
.modal-buttons { display: flex; justify-content: center; gap: 10px; }
.modal-btn {
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
}
.modal-btn.naver { background: #03c75a; color: #fff; }
.modal-btn.kakao { background: #fee500; color: #3c1e1e; }
.modal-btn.cancel { background: #ddd; color: #333; }
.modal-btn:hover { opacity: .92; }
@keyframes fadeIn { from { opacity:0; transform:translateY(-10px) } to { opacity:1; transform:translateY(0) } }

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 30px;
  font-size: 14px;
  border-radius: 16px;      /* 카드 안에서도 둥글게 보이도록 */
  margin: 0;                /* 섹션 카드 내부라면 유지, 독립이면 조정 */
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 480px) {
  .header { padding: 40px 20px; }
  .invitation, .event-info, .map-section, .rsvp-section {
    margin: 0 10px 20px;   /* 모바일 여백 축소 */
    padding: 20px;
  }
  .info-item { flex-direction: column; padding: 10px 0; }
  .info-label { width: auto; margin-bottom: 5px; }
  .info-value { padding-left: 0; }
}
/* =========================================================
   디자인 개선 (2025-11 업데이트)
   ========================================================= */

/* 1️⃣ 배너와 인비테이션 카드 간 여백 확보 */
.header {
  margin-bottom: 24px; /* 배너 하단 간격 추가 */
}

/* 2️⃣ 카드 폭 여유 있게: 너무 꽉 차지 않도록 */
.container {
  max-width: 520px;   /* 기존 560 → 520 (더 여유롭게) */
  padding: 0 10px;    /* 좌우에 살짝 여백 */
}

/* 카드 전체 폭도 살짝 줄여 균형감 향상 */
.invitation,
.event-info,
.map-section,
.rsvp-section {
  margin: 30px auto;
  padding: 28px 22px;
  width: 95%;           /* 폭을 살짝 줄여 여백 확보 */
}

/* 3️⃣ 행사정보 전반 폰트 사이즈 살짝 축소 */
.event-info,
.event-info .info-item,
.event-info .info-label,
.event-info .info-value {
  font-size: 15px;       /* 기존보다 약간 작게 */
  line-height: 1.6;
}

/* 헤더 타이틀(📅 행사 정보 등)은 시각적으로 여전히 강조 */
.event-info h2 {
  font-size: 19px;
}

/* 4️⃣ Footer 모서리 둥글지 않게 & 화면 꽉 차게 */
.footer {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 35px 0;
  font-size: 14px;
  border-radius: 0;      /* 둥근 모서리 제거 */
  margin: 0;
  width: 100%;
}

/* 💡 모바일 대응 */
@media (max-width: 480px) {
  .container { max-width: 100%; padding: 0 12px; }
  .invitation, .event-info, .map-section, .rsvp-section {
    width: 100%;
    margin: 0 0 20px;
  }
  .event-info, .info-item {
    font-size: 14px;
  }
}
/* =========================================================
   디자인 개선 2025-11 (배너/인비/폭/폰트 재조정)
   ========================================================= */

/* 배너는 꽉 차게 유지 (상단 풀폭) */
.header {
  width: 100%;
  margin: 0;
  padding: 0;
  border-bottom: none;
}
.header-banner {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid var(--color-border);
}

/* 인비 카드 위쪽 여백 + 떠 있는 느낌 (살짝 그림자 강조) */
.invitation {
  margin-top: -20px;         /* 배너 아래로 살짝 겹치게 */
  padding-top: 35px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  position: relative;
  z-index: 5;
}

/* 전체 카드 폭 조금 더 좁게 */
.container {
  max-width: 480px;          /* 기존보다 더 좁게 */
  padding: 0 8px;
}

/* 각 섹션 카드도 살짝 좁혀서 시각적 여백 확보 */
.invitation,
.event-info,
.map-section,
.rsvp-section {
  width: 92%;                /* 카드폭 줄임 */
  margin: 30px auto;
}

/* 행사정보 폰트 더 작게 (조밀한 느낌) */
.event-info,
.event-info .info-item,
.event-info .info-label,
.event-info .info-value {
  font-size: 14px;
  line-height: 1.55;
}
.event-info h2 {
  font-size: 18px;
}

/* footer는 화면 아래 가득, 모서리 없이 */
.footer {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 35px 0;
  font-size: 14px;
  border-radius: 0;
  margin: 0;
  width: 100%;
}

/* 모바일 대응 */
@media (max-width: 480px) {
  .container { max-width: 100%; padding: 0 12px; }
  .invitation, .event-info, .map-section, .rsvp-section {
    width: 100%;
    margin: 0 0 20px;
  }
  .event-info, .info-item {
    font-size: 13.5px;
  }
}
/* 숨김 처리용 */
.hidden {
  display: none !important;
}
/* =========================================================
   모바일 전용: 배너 아래 인비 카드 여백 확보
   ========================================================= */
@media (max-width: 480px) {
  .invitation {
    margin-top: 16px !important;   /* 배너와 카드 사이 공간 추가 */
    padding-top: 28px;             /* 카드 내용 여유 */
  }
}
/* 전화번호 링크 스타일 */
.info-value a[href^="tel:"] {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.info-value a[href^="tel:"]:hover {
  text-decoration: underline;
}
/* =========================================================
   모바일 전용: 인비테이션 카드가 배너에 너무 붙는 문제 해결
   ========================================================= */
@media (max-width: 480px) {
  .invitation {
    margin-top: 24px !important;   /* 배너와 카드 사이 충분한 간격 */
    padding-top: 28px !important;  /* 카드 내부 여백 유지 */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05); /* 살짝 덜 뜨게 */
    z-index: 1;                    /* 배너와 시각적으로 분리 */
  }
}
.lang-switch {
  text-align: right;
  margin: 12px 20px 0 0;
}

.lang-btn {
  background: #f5f7fa; /* 연한 그레이 배경 */
  border: 1.5px solid var(--color-primary);
  border-radius: 14px; /* 둥근 형태 강조 */
  padding: 6px 14px;
  margin-left: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(44, 74, 125, 0.15); /* 부드러운 그림자 */
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.lang-btn.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 5px 15px rgba(44, 74, 125, 0.4);
}

.lang-btn:hover:not(.active) {
  background: var(--color-primary-light);
  color: #fff;
  box-shadow: 0 4px 12px rgba(44, 74, 125, 0.3);
}
/* ---------------------------------------------------------
   모바일 터치 이벤트 인식 보정
   --------------------------------------------------------- */
button,
.lang-btn,
.map-button,
.modal-btn,
.submit-btn,
.copy-btn,
a {
  cursor: pointer;
}
/* =========================================================
   유틸리티 (항상 최하단 유지)
   ========================================================= */
/* 요소를 숨기고 레이아웃에서 제거합니다 */.hidden {
  display: none !important;
}
