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

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
  background-color: #F9F5EE;
  color: #1F2937;
}

/* ── Shared Divider ── */
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #2A7D6F, #E07A5F);
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

/* ── Card Hover ── */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(42, 125, 111, 0.14);
}

/* ── Nav Underline ── */
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #2A7D6F;
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

/* ── Hero Gradient ── */
.hero-gradient {
  background: linear-gradient(135deg, #1a5c52 0%, #2A7D6F 55%, #3da08e 100%);
}
.page-hero {
  background: linear-gradient(135deg, #1a5c52 0%, #2A7D6F 100%);
}

/* ── Value Card ── */
.value-card {
  border-top: 4px solid transparent;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.value-card:hover {
  border-top-color: #2A7D6F;
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(42, 125, 111, 0.14);
}

/* ── Form Inputs ── */
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.75rem;
  background: #fff;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.form-input:focus {
  border-color: #2A7D6F;
  box-shadow: 0 0 0 3px rgba(42, 125, 111, 0.1);
  outline: none;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: #E07A5F;
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: 1rem;
}
.btn-primary:hover {
  background: #c9634b;
  transform: translateY(-1px);
}
.btn-outline {
  display: inline-block;
  border: 2px solid #2A7D6F;
  color: #2A7D6F;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  background: transparent;
  font-family: inherit;
  font-size: 1rem;
}
.btn-outline:hover {
  background: #2A7D6F;
  color: #fff;
}

/* ── Mission Quote ── */
.mission-quote {
  border-left: 5px solid #2A7D6F;
  padding: 1.5rem 2rem;
  background: #E8F5F2;
  border-radius: 0 1rem 1rem 0;
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.8;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f3f4f6; }
::-webkit-scrollbar-thumb { background: #2A7D6F; border-radius: 3px; }

/* ── Wave Divider ── */
.wave-bottom {
  line-height: 0;
  overflow: hidden;
}

/* ── Responsive typography ── */
@media (max-width: 640px) {
  .hero-title { font-size: 2.5rem !important; }
}
