/* ================================================
   원 스포츠마사지 — Custom Style Sheet
   Bootstrap 기반 + 커스텀 스타일
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700;900&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --color-primary: #C41E3A;
  --color-primary-dark: #9B1730;
  --color-primary-light: #E8485C;
  --color-accent: #FF6B6B;
  --color-dark: #1A1A1A;
  --color-dark-soft: #2C2C2C;
  --color-warm-bg: #FFF8F6;
  --color-text-light: #6C757D;
  --font-main: 'Noto Sans KR', sans-serif;
}

body {
  font-family: var(--font-main);
  color: var(--color-dark);
  -webkit-font-smoothing: antialiased;
}

/* --- Header / Navbar --- */
.navbar {
  padding: 1rem 0;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.98) !important;
}

.navbar-brand {
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--color-primary) !important;
  letter-spacing: -0.5px;
}

.navbar-brand span {
  font-weight: 400;
  color: var(--color-dark);
}

.nav-link {
  font-weight: 500;
  color: var(--color-dark) !important;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--color-primary) !important;
}

.nav-link:hover::after {
  width: 60%;
}

/* --- Hero --- */
.hero-section {
  padding: 10rem 0 6rem;
  background: linear-gradient(155deg, var(--color-dark) 0%, var(--color-primary-dark) 50%, var(--color-primary) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-section h1 {
  font-weight: 900;
  letter-spacing: -1px;
}

.hero-section .lead {
  opacity: 0.88;
  max-width: 520px;
}

.btn-cta {
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-family: var(--font-main);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 30, 58, 0.3);
  color: #fff;
}

.btn-outline-light {
  border-radius: 50px;
  padding: 0.8rem 2rem;
  font-weight: 700;
  font-family: var(--font-main);
}

/* --- Section Common --- */
.section-title {
  font-weight: 900;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: var(--color-text-light);
}

.text-primary-custom {
  color: var(--color-primary) !important;
}

/* --- About --- */
.about-section {
  background: var(--color-warm-bg);
}

.highlight-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border-top: 3px solid var(--color-primary);
  transition: transform 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
}

.highlight-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* --- Services --- */
.service-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.service-card h5 {
  font-weight: 700;
}

.service-tag {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: var(--color-warm-bg);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-primary);
}

/* --- Process --- */
.process-section {
  background: var(--color-warm-bg);
}

.step-circle {
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* --- Price / Info --- */
.info-card {
  background: var(--color-dark);
  color: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.info-card .card-header {
  background: var(--color-primary);
  border: none;
}

/* --- Contact --- */
.contact-icon-box {
  width: 48px;
  height: 48px;
  background: var(--color-warm-bg);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-notice {
  background: var(--color-warm-bg);
  border-radius: 12px;
  border: 1px solid #f0e0dc;
}

/* --- CTA Banner --- */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

/* --- Footer --- */
.site-footer {
  background: var(--color-dark);
}

/* --- Fade-in Animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive tweaks --- */
@media (max-width: 767.98px) {
  .hero-section {
    padding: 8rem 0 4rem;
    text-align: center;
  }

  .hero-section .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-section .d-flex {
    justify-content: center;
  }
}
