/* Custom styles for QINMI'AI website */

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Serif SC", sans-serif;
  color: #2C2C2C;
}

.font-serif {
  font-family: "Noto Serif SC", Georgia, serif;
}

/* Navigation links */
.nav-link {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: #8B7355;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #C9A961;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: #C9A961;
  width: 0;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: #C9A961;
}

/* Product card hover effect */
.product-card {
  transition: all 0.3s ease;
}

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

.product-card .product-image {
  transition: transform 0.5s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

/* Scroll animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Timeline */
.timeline-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: rgba(201, 169, 97, 0.3);
}

.timeline-dot {
  width: 16px;
  height: 16px;
  background: #C9A961;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Form inputs */
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(139, 115, 85, 0.3);
  border-radius: 2px;
  background: white;
  color: #2C2C2C;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: transparent;
  box-shadow: 0 0 0 2px #C9A961;
}
