/*
 * calculators.css — Styles for the Calculators page template (page-calculators.php).
 *
 * @package ChefAnandHub
 */

/* ── HERO ── */
.page-hero {
  padding: 72px 24px 40px;
  text-align: center;
}
.page-hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.page-hero p {
  font-size: 16px;
  color: #4B5563;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── COMING SOON BOX ── */
.coming-soon-wrap {
  padding: 0 24px 40px;
  max-width: 960px;
  margin: 0 auto;
}
.coming-soon-box {
  border: 2px dashed #D1D5DB;
  border-radius: 8px;
  padding: 44px 40px;
  text-align: center;
}
.coming-soon-box h2 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
}
.coming-soon-box p {
  font-size: 14px;
  color: #4B5563;
  margin-bottom: 26px;
  line-height: 1.65;
}
.btn-waitlist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111827;
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  text-decoration: none;
}
.btn-waitlist:hover { opacity: .82; transform: translateY(-1px); }

/* ── CALCULATOR GRID ── */
.calc-section {
  padding: 0 24px 80px;
}
.calc-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.calc-card {
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 28px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow .2s, transform .18s;
}
.calc-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  transform: translateY(-2px);
}
.calc-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calc-icon svg {
  width: 28px;
  height: 28px;
  stroke: #111827;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.calc-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.calc-card p {
  font-size: 13.5px;
  color: #4B5563;
  line-height: 1.65;
  margin-bottom: 22px;
  flex: 1;
}
.btn-outline.calc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #111827;
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 7px;
  border: 1.5px solid #D1D5DB;
  width: fit-content;
  cursor: pointer;
  font-family: inherit;
  transition: border-color .15s, background .15s, transform .15s;
}
.btn-outline.calc-btn:hover {
  border-color: #111827;
  background: #F9FAFB;
  transform: translateY(-1px);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .page-hero h1 { font-size: 32px; }
  .calc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .coming-soon-box { padding: 28px 20px; }
  .page-hero h1 { font-size: 28px; }
}
