/* ITSpin24 스타일 디자인 */

/* 글꼴 설정 */
body {
  font-family: 'Noto Sans KR', sans-serif;
  color: #333;
}

/* 헤더 */
.navbar-brand {
  font-weight: 700;
}

.sticky-top {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 주문조회 빠른 접근 바 */
.order-search-form .btn {
  transition: all 0.3s;
}

.order-search-form .btn:hover {
  transform: translateY(-2px);
}

/* 히어로 섹션 */
.hero-section {
  background-color: #f5f9ff;
  padding: 40px 0;
}

.hero-section h1 {
  color: #0066cc;
}

/* 기능 아이콘 */
.feature-icon {
  width: 70px;
  height: 70px;
  background-color: #0066cc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s;
}

.card:hover .feature-icon {
  /* transform: scale(1.1); */
}

/* 카드 디자인 */
.card {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #e0e6f0;
}

.card:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 10px 20px rgba(0, 102, 204, 0.1);
}

.card-body {
  padding: 1.5rem;
}

/* 매입시세 섹션 */
.rates-card .rate-percentage {
  font-size: 1.8rem;
  font-weight: 700;
}

/* 이용후기 */
.review-card .user-info {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.review-card .user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e0e6f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

/* CTA 섹션 */
.cta-section {
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: white;
  padding: 60px 0;
}

/* 푸터 */
footer {
  background-color: #f5f9ff;
}

footer h5 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #0066cc;
}

footer ul.list-unstyled li {
  margin-bottom: 10px;
}

footer a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: #0066cc;
}

/* 주문조회 모달 */
.modal-content {
  border-radius: 10px;
  overflow: hidden;
}

.modal-header {
  background-color: #f5f9ff;
  border-bottom: 1px solid #e0e6f0;
}

.modal-title {
  font-weight: 700;
  color: #0066cc;
}

/* 반응형 조정 */
@media (max-width: 768px) {
  .hero-section {
    padding: 30px 0;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  h1.display-5 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1rem;
  }
}
