/* ===================================================
  🌐 기본 설정 (전역 스타일)
=================================================== */
body {
  margin: 0;
  font-family: 'Noto Sans KR', sans-serif;
  background-color: #f9f9f9;
  color: #222;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================================================
  🧭 헤더 영역
=================================================== */
.site-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 16px 0;
  font-family: 'Noto Sans KR', sans-serif;
}

.site-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 🔹 로고 */
.logo a {
  font-size: 1.6rem;
  font-weight: bold;
  color: #d40000;
  text-decoration: none;
}
.logo span {
  color: #333;
  font-weight: 400;
}

/* 🔹 내비게이션 */
.main-nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
.main-nav li {
  margin-left: 24px;
}
.main-nav a {
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.main-nav a:hover {
  color: #d40000;
}

/* ===================================================
  🎯 메인 히어로 배너
=================================================== */
.hero {
  background: linear-gradient(to bottom right, #b01030 0%, #e64e6e 100%);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
}
.hero h1 span {
  color: #ffe0e7;
}
.hero p {
  margin-top: 16px;
  font-size: 1.2rem;
  opacity: 0.95;
}

/* ===================================================
  📌 공통 버튼
=================================================== */
.btn-primary,
.btn-secondary {
  display: inline-block;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn-primary {
  background: #e60023;
  color: #fff;
  padding: 12px 24px;
}
.btn-primary:hover {
  background: #c3001f;
}

.btn-secondary {
  background: #f0f0f0;
  color: #333;
  padding: 10px 20px;
}
.btn-secondary:hover {
  background: #ddd;
}

/* 히어로 내 버튼 */
.hero .btn-primary {
  margin-top: 32px;
  background: #fff;
  color: #b01030;
  padding: 14px 28px;
}
.hero .btn-primary:hover {
  background: #ffe6ec;
  color: #8d0b24;
}

/* ===================================================
  📂 섹션 공통 타이틀
=================================================== */
.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 12px;
  font-weight: 700;
}
.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

/* ===================================================
  🧾 서비스 카드 그리드
=================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
}

/* 🔹 서비스 카드 상단 배경 색상 */
.card-header {
  padding: 24px;
  color: #fff;
}
.card-header.jeju {
  background: linear-gradient(to right, #e44c65, #b01030);
}
.card-header.aewol {
  background: linear-gradient(to right, #f39c12, #d35400);
}
.card-header.seogwipo {
  background: linear-gradient(to right, #3498db, #2c3e50);
}
.card-header.jungmun {
  background: linear-gradient(to right, #27ae60, #145a32);
}

.card-body {
  padding: 20px 24px;
  font-size: 0.95rem;
  color: #333;
}

.btn-card {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 20px;
  background: #e60023;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-card:hover {
  background: #b01030;
}

/* ===================================================
  🧘‍♀️ 마사지 타입 카드
=================================================== */
.massage-types .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.type-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
.type-card:hover {
  transform: translateY(-6px);
}

.card-head {
  padding: 20px;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
}

/* 마사지 타입별 색상 */
.card-head.aroma { background: linear-gradient(45deg, #ff9a9e, #fad0c4); }
.card-head.swedish { background: linear-gradient(45deg, #a18cd1, #fbc2eb); }
.card-head.thai { background: linear-gradient(45deg, #fbc2eb, #a6c1ee); }
.card-head.lymph { background: linear-gradient(45deg, #fddb92, #d1fdff); }
.card-head.couple { background: linear-gradient(45deg, #ffecd2, #fcb69f); }
.card-head.sleep { background: linear-gradient(45deg, #c2e9fb, #a1c4fd); }

.card-body p {
  margin-bottom: 10px;
}

/* ===================================================
  🎯 목적별 추천 카드
=================================================== */
.recommend-by-purpose .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.purpose-card {
  background: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.04);
  transition: all 0.3s ease-in-out;
}
.purpose-card:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transform: translateY(-6px);
}
.purpose-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: #e60023;
}
.purpose-card p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 16px;
}

/* ===================================================
  ⭐ 리뷰 카드
=================================================== */
.user-reviews .review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 30px;
}

.review-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.07);
}
.review-card .stars {
  font-size: 1.2rem;
  color: #ffc107;
  margin-bottom: 10px;
}
.review-text {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 14px;
  line-height: 1.5;
}
.review-name {
  font-size: 0.85rem;
  color: #777;
}
.review-footer {
  margin-top: 40px;
  text-align: center;
}

/* ===================================================
  🏨 숙소 주변 카드
=================================================== */
.nearby-accommodations .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.nearby-accommodations .card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 24px;
  border-radius: 12px;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.nearby-accommodations .card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.nearby-accommodations h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #222;
}
.nearby-accommodations p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}
.nearby-accommodations .btn-link {
  display: inline-block;
  margin-top: 14px;
  color: #e60023;
  font-weight: bold;
  text-decoration: none;
}
.nearby-accommodations .btn-link:hover {
  text-decoration: underline;
}

/* ===================================================
  📍 위치 기반 카드
=================================================== */
.nearby .locate-area {
  text-align: center;
  margin-bottom: 20px;
}
.nearby .locate-area .btn {
  padding: 12px 24px;
  font-size: 1rem;
}
.locate-status {
  font-size: 0.95rem;
  color: #666;
  margin-top: 8px;
}

/* 위치 결과 */
.result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.result-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.result-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #e60023;
}
.result-card p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 12px;
}
.result-card .btn {
  display: inline-block;
  background: #e60023;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
}
.result-card .btn:hover {
  background: #c1001d;
}

/* ===================================================
  🍁 계절 프로모션 카드
=================================================== */
.season-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .season-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.season-card {
  background: #fff;
  border-left: 6px solid #e60023;
  padding: 24px 28px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease-in-out;
}
.season-card:hover {
  transform: translateY(-4px);
}
.season-card h3 {
  font-size: 1.5rem;
  color: #e60023;
  margin-bottom: 12px;
}
.season-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
}
.season-card .btn {
  margin-top: 20px;
}

/* ===================================================
  📝 예약 카드
=================================================== */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .booking-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.booking-card {
  background: #fff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}
.booking-card:hover {
  transform: translateY(-4px);
}
.booking-card h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: #e60023;
}
.booking-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* ===================================================
  📌 플로팅 버튼
=================================================== */
.btn-floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #e60023;
  color: white;
  padding: 16px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: background 0.3s;
}
.btn-floating:hover {
  background: #c1001d;
}

/* ===================================================
  ⚓ 푸터
=================================================== */
.site-footer {
  background: #222;
  color: #ccc;
  padding: 40px 20px;
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.8;
}
.site-footer a {
  color: #ff7272;
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}
.footer-logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}
