/* ===== K-Medical Tours Main CSS ===== */

body {
  font-family: 'Noto Sans', sans-serif;
}

/* Navbar */
.navbar-brand {
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

/* Promo Banner */
.promo-banner {
  background: linear-gradient(90deg, #0d6efd, #0dcaf0);
  color: #fff;
  font-size: 0.95rem;
}

/* Quick Menu */
.quick-menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333;
  transition: color 0.2s;
}
.quick-menu-item:hover { color: #0d6efd; }
.quick-menu-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #e8f0fe;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
  transition: background 0.2s;
}
.quick-menu-item:hover .quick-menu-icon { background: #0d6efd; color: #fff; }
.quick-menu-icon i { color: #0d6efd; }
.quick-menu-item:hover .quick-menu-icon i { color: #fff; }

/* Service List Card */
.service-list-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.service-list-card:hover {
  box-shadow: 0 4px 16px rgba(13,110,253,0.12);
  border-color: #0d6efd;
}

/* Stat Card */
.stat-card { transition: transform 0.2s; }
.stat-card:hover { transform: translateY(-4px); }

/* Hero Slider */
.hero-section {
  position: relative;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
}

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
  height: 100%;
}

.hero-section .carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.55);
}

.hero-section .carousel-caption {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  text-align: center;
  padding: 0 1rem;
}

.hero-section .carousel-caption h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.hero-section .carousel-caption p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Section headings */
.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: #6c757d;
  margin-bottom: 2rem;
}

/* Why Choose checkmarks */
.why-item i {
  color: #0d6efd;
  margin-right: 8px;
}

/* How It Works steps */
.step-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #0d6efd;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

/* CTA buttons */
.cta-section {
  background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
  color: #fff;
  padding: 3rem 0;
}

/* ===== 장바구니 패널 ===== */
.cart-panel {
  position: fixed;
  top: 0;
  right: -380px;
  width: 360px;
  height: 100vh;
  background: #fff;
  z-index: 1055;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-panel.open {
  right: 0;
}

.cart-panel-body {
  flex: 1;
  overflow-y: auto;
}

.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1054;
}

.cart-overlay.show {
  display: block;
}

.cart-item {
  border-bottom: 1px solid #f0f0f0;
  padding: 0.75rem 0;
}

.cart-item .item-name {
  font-size: 0.9rem;
  font-weight: 600;
}

.cart-item .item-price {
  font-size: 0.85rem;
  color: #0d6efd;
}

/* Service Cards */
.service-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.service-card .add-to-cart-btn {
  font-size: 0.85rem;
}

/* Review cards */
.review-card {
  border-radius: 12px;
  border: 1px solid #e9ecef;
}

/* Footer */
footer a:hover {
  color: #fff !important;
}
