/*
 Theme Name: Hello Child Nutritionist
 Theme URI: https://nutritionist-online.nutritionistii.ro
 Description: Child theme pentru landing Nutritionist Online (stil nutritionistii.ro)
 Author: Nutritionistii.ro
 Template: hello-elementor
 Version: 1.1.0
*/

/* ===== Variabile brand (ca pe nutritionistii.ro) ===== */
:root {
  --mf-brand:   #ed1e79;  /* roz-magenta */
  --mf-brand-2: #0c1f8a;  /* albastru închis */
  --mf-bg:      #f8fafc;
  --mf-text:    #0f172a;
  --mf-muted:   #64748b;
  --mf-card:    #ffffff;
  --mf-shadow:  0 18px 45px rgba(15, 23, 42, 0.10);
}

/* ===== Global ===== */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--mf-text);
  background: #ffffff;
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--mf-brand);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Container & secțiuni */
.nutro-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.nutro-section {
  padding: 64px 0;
}
.nutro-section--light {
  background: #f1f5f9;
}

/* ===== HERO – degrade brand ===== */
.nutro-hero {
  text-align: center;
  padding-top: 96px;
  padding-bottom: 80px;
  background:
    radial-gradient(circle at top left, rgba(237,30,121,0.16), transparent 55%),
    radial-gradient(circle at top right, rgba(12,31,138,0.18), transparent 55%),
    linear-gradient(to bottom, #ffffff, #f8fafc);
}

.nutro-hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 700;
  color: var(--mf-muted);
  margin-bottom: 10px;
}

.nutro-hero-title {
  font-size: clamp(32px, 5.4vw, 46px);
  font-weight: 800;
  margin-bottom: 16px;
}

.nutro-hero-subtitle {
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto 30px;
  color: var(--mf-muted);
}

/* ===== Butoane brand ===== */
.nutro-hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.nutro-btn-primary,
.nutro-btn-secondary {
  border-radius: 999px;
  padding: 12px 26px;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
}

.nutro-btn-primary {
  background: linear-gradient(135deg, var(--mf-brand), var(--mf-brand-2));
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(237,30,121,0.35);
}
.nutro-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(12,31,138,0.38);
}

.nutro-btn-secondary {
  background: #ffffff;
  color: var(--mf-brand-2);
  border-color: rgba(148,163,184,0.6);
}
.nutro-btn-secondary:hover {
  border-color: var(--mf-brand);
  color: var(--mf-brand);
  transform: translateY(-1px);
}

/* ===== Titluri secțiune ===== */
.nutro-section-title {
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
}

.nutro-section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 34px;
  font-size: 16px;
  color: var(--mf-muted);
}

/* ===== Grid & carduri tip nutritionistii.ro ===== */
.nutro-grid {
  display: grid;
  gap: 22px;
}
@media (min-width: 768px) {
  .nutro-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.nutro-card {
  background: var(--mf-card);
  border-radius: 22px;
  padding: 20px 18px 22px;
  box-shadow: var(--mf-shadow);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.nutro-card-title {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 6px;
}

.nutro-card-text {
  font-size: 14px;
  color: #4b5563;
}

/* ===== Pași "Cum funcționează" ===== */
.nutro-steps {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .nutro-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.nutro-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.nutro-step-number {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid var(--mf-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--mf-brand);
  flex-shrink: 0;
  background: #ffffff;
}

.nutro-step-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}

/* ===== CTA final albastru închis ===== */
.nutro-cta-final {
  text-align: center;
}

.nutro-cta-final p {
  max-width: 620px;
  margin: 0 auto 22px;
  color: #e2e8f0;
}
