/* ===== אפרת קפלן — מלווה להורות מצמיחה ===== */
/* פלטת צבעים מתוך המיתוג: ירוק מרווה, ירוק כהה, חרדל, קרם */

:root {
  --sage: #75856f;
  --sage-light: #8d9c86;
  --sage-pale: #e4e9e0;
  --green-dark: #4e5f4b;
  --green-deep: #3b4a39;
  --mustard: #e3aa4b;
  --mustard-soft: #f0c97e;
  --cream: #f7f4ec;
  --white: #ffffff;
  --text: #2f3a2e;
  --text-light: #5c675a;
  --radius: 18px;
  --shadow: 0 8px 30px rgba(59, 74, 57, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Assistant', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  direction: rtl;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

/* ===== טיפוגרפיה ===== */
h1, h2, h3, h4 {
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
h3 { font-size: 1.3rem; }

.script {
  font-family: 'Amatic SC', 'Assistant', cursive;
  font-weight: 700;
  color: var(--mustard);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 1px;
}

.eyebrow {
  display: inline-block;
  color: var(--mustard);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.section-title {
  text-align: center;
  margin-bottom: 0.6rem;
}

.section-sub {
  text-align: center;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

/* ===== כותרת עליונה ===== */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(59, 74, 57, 0.08);
  border-bottom: 3px solid var(--mustard);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo img { height: 46px; width: auto; flex-shrink: 0; }

.logo-text { line-height: 1.2; }

.logo-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-deep);
  display: block;
}

.logo-tag {
  font-family: 'Amatic SC', cursive;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sage);
  display: block;
}

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
}

.main-nav a {
  font-weight: 600;
  color: var(--text);
  padding: 0.4rem 0.2rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--green-dark);
  border-bottom-color: var(--mustard);
}

/* תפריט שירותים נפתח */
.has-dropdown { position: relative; }

.dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  min-width: 260px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 0.6rem;
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 3px solid var(--mustard);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: flex; }

.dropdown a {
  display: block;
  padding: 0.55rem 0.8rem;
  border-radius: 8px;
  border-bottom: none;
}

.dropdown a:hover { background: var(--sage-pale); }

/* המבורגר למובייל */
.nav-toggle { display: none; }

.nav-toggle-label {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: var(--green-deep);
  height: 3px;
  width: 100%;
  border-radius: 3px;
  position: absolute;
  transition: 0.25s;
}

.nav-toggle-label span { top: 9px; }
.nav-toggle-label span::before { content: ''; top: -9px; }
.nav-toggle-label span::after { content: ''; top: 9px; }

/* ===== כפתורים ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  font-family: inherit;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-primary {
  background: var(--mustard);
  color: var(--green-deep);
}

.btn-primary:hover { background: var(--mustard-soft); }

.btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.btn-outline:hover { background: rgba(255, 255, 255, 0.15); }

.btn-green {
  background: var(--green-dark);
  color: var(--white);
}

.btn-green:hover { background: var(--green-deep); }

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.btn-whatsapp:hover { background: #1fb857; }

/* ===== גיבור (Hero) ===== */
.hero {
  background: var(--sage);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 6rem;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 420px;
  height: 420px;
  background: var(--green-dark);
  opacity: 0.55;
  border-radius: 50% 60% 55% 45%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 { color: var(--white); margin: 0.4rem 0 0.8rem; }

.hero .script { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }

.hero p.lead {
  font-size: 1.15rem;
  max-width: 540px;
  margin-bottom: 1.8rem;
  color: #f0f3ec;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual { display: flex; justify-content: center; }

.portrait-circle {
  width: min(300px, 70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sage-pale);
  border: 6px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.portrait-circle img { width: 55%; height: auto; }

.leaf-decor {
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 180px;
  opacity: 0.35;
  z-index: 1;
}

/* ===== מקטעים ===== */
.section { padding: 4.5rem 0; }

.section-alt { background: var(--white); }

.section-green {
  background: var(--green-dark);
  color: var(--white);
}

.section-green h2, .section-green h3 { color: var(--white); }
.section-green p { color: #e7ece4; }

/* ===== כרטיסים ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  box-shadow: 0 4px 18px rgba(59, 74, 57, 0.08);
  border-top: 4px solid var(--sage);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-top-color: var(--mustard);
}

.card .icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.card h3 { margin-bottom: 0.5rem; }

.card p { color: var(--text-light); flex: 1; }

.card .more {
  margin-top: 1rem;
  color: var(--green-dark);
  font-weight: 700;
}

.card .more::after { content: ' ←'; }

.card:hover .more { color: var(--mustard); }

/* ===== למי אני עוזרת ===== */
.audience-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.audience-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  box-shadow: 0 4px 18px rgba(59, 74, 57, 0.07);
}

.audience-item .check {
  color: var(--mustard);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.4;
}

/* ===== ציטוט ===== */
.quote-band {
  background: var(--sage);
  color: var(--white);
  text-align: center;
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.quote-band .script {
  color: var(--white);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  max-width: 750px;
  margin-inline: auto;
  display: block;
}

.quote-band .attribution { color: var(--mustard-soft); margin-top: 0.8rem; font-weight: 600; }

/* ===== המלצות ===== */
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  box-shadow: 0 4px 18px rgba(59, 74, 57, 0.08);
  position: relative;
}

.testimonial::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--mustard);
  position: absolute;
  top: 0.4rem;
  right: 1.2rem;
  line-height: 1;
  opacity: 0.5;
}

.testimonial p { color: var(--text-light); margin-top: 1rem; }

.testimonial .author {
  margin-top: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
}

.testimonial .role {
  font-size: 0.9rem;
  color: var(--sage);
  font-weight: 600;
}

/* ===== עמוד פנימי — כותרת ===== */
.page-hero {
  background: var(--sage);
  color: var(--white);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -90px;
  left: -70px;
  width: 280px;
  height: 280px;
  background: var(--green-dark);
  opacity: 0.5;
  border-radius: 55% 45% 60% 50%;
}

.page-hero h1 { color: var(--white); position: relative; z-index: 2; }

.page-hero .script { position: relative; z-index: 2; display: block; margin-top: 0.4rem; }

/* ===== תוכן מאמר ===== */
.prose {
  max-width: 760px;
  margin-inline: auto;
}

.prose h2 { margin: 2.2rem 0 0.8rem; }
.prose h3 { margin: 1.6rem 0 0.5rem; color: var(--green-dark); }
.prose p { margin-bottom: 1rem; color: var(--text); }
.prose ul { margin: 0.5rem 1.4rem 1.2rem 0; }
.prose li { margin-bottom: 0.45rem; }
.prose li::marker { color: var(--mustard); }

.highlight-box {
  background: var(--sage-pale);
  border-right: 5px solid var(--mustard);
  border-radius: 12px;
  padding: 1.3rem 1.5rem;
  margin: 1.8rem 0;
}

.highlight-box p:last-child { margin-bottom: 0; }

/* ===== קרדנציאלים ===== */
.credentials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.credential {
  background: var(--white);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  box-shadow: 0 3px 12px rgba(59, 74, 57, 0.07);
}

.credential .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mustard);
  flex-shrink: 0;
}

/* ===== קריאה לפעולה תחתונה ===== */
.cta-band {
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: var(--sage);
  opacity: 0.35;
  border-radius: 50% 60% 45% 55%;
}

.cta-band h2 { color: var(--white); margin-bottom: 0.6rem; position: relative; z-index: 2; }
.cta-band p { color: #dde5da; margin-bottom: 1.6rem; position: relative; z-index: 2; }
.cta-band .hero-actions { justify-content: center; position: relative; z-index: 2; }

/* ===== יצירת קשר ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--mustard);
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 0;
  border-bottom: 1px dashed var(--sage-pale);
  font-weight: 600;
}

.contact-line:last-of-type { border-bottom: none; }

.contact-line .ci {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-row { margin-bottom: 1.1rem; }

.form-row label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--green-deep);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 2px solid var(--sage-pale);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--cream);
  color: var(--text);
  transition: border-color 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--sage);
}

/* ===== פוטר ===== */
.site-footer {
  background: var(--green-deep);
  color: #cfd8cb;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer h4 {
  color: var(--mustard);
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
}

.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.45rem; }
.site-footer a:hover { color: var(--white); }

.footer-bottom {
  text-align: center;
  padding-top: 1.3rem;
  font-size: 0.9rem;
  color: #a8b5a3;
}

/* ===== כפתור וואטסאפ צף ===== */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s;
}

.whatsapp-float:hover { transform: scale(1.1); }

.whatsapp-float svg { width: 32px; height: 32px; fill: var(--white); }

/* ===== שירות — עמוד בודד ===== */
.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.chip {
  background: var(--sage-pale);
  color: var(--green-deep);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-weight: 700;
  font-size: 0.92rem;
}

.steps { counter-reset: step; list-style: none; margin: 1.5rem 0; }

.steps li {
  counter-increment: step;
  position: relative;
  padding-right: 3.2rem;
  margin-bottom: 1.3rem;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  right: 0;
  top: 0;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: var(--mustard);
  color: var(--green-deep);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps li strong { display: block; color: var(--green-deep); }

/* ===== רספונסיביות ===== */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero p.lead { margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }

  .nav-toggle-label { display: block; }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-toggle:checked ~ .main-nav { max-height: 600px; }

  .main-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.8rem 1.2rem 1.2rem;
  }

  .main-nav a { display: block; padding: 0.7rem 0.3rem; }

  .dropdown {
    position: static;
    display: flex;
    box-shadow: none;
    border-top: none;
    padding: 0 1rem;
    min-width: 0;
  }

  .dropdown a { font-weight: 400; font-size: 0.97rem; }
}
