/* pages/about/about.css, עמוד אודות עומר טייכר */

:root {
  --cream: #fdf8f2;
  --orange-deep: #e8854a;
  --orange-light: #fdeede;
  --navy: #1a4a6b;
  --navy-mid: #1e5f74;
  --navy-light: #eef4f8;
  --border: #e8e0d6;
  --text-mid: #555;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Rubik', sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
}

.about-page {
  max-width: 900px;
  margin: 80px auto 60px;
  padding: 0 24px;
}

/* Hero */
.about-hero {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}
.about-hero-img img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(26, 74, 107, 0.15);
}
.about-hero-text .eyebrow {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-deep);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.about-hero-text h1 {
  font-size: 2.8rem;
  margin: 0 0 8px 0;
  font-weight: 800;
  color: var(--navy);
}
.about-hero-text .role {
  font-size: 1.1rem;
  color: var(--orange-deep);
  font-weight: 700;
  margin: 0 0 16px 0;
}
.about-hero-text .lede {
  font-size: 1.15rem;
  color: var(--text-mid);
  margin: 0;
}

/* Sections */
.about-story,
.about-do,
.about-philosophy,
.about-cta {
  margin-bottom: 56px;
}
.about-story h2,
.about-do h2,
.about-philosophy h2,
.about-cta h2 {
  font-size: 1.6rem;
  color: var(--navy);
  margin: 0 0 20px 0;
  font-weight: 700;
}
.about-story p,
.about-philosophy p {
  margin: 0 0 16px 0;
  font-size: 1.05rem;
  color: var(--text-mid);
}
.about-story strong,
.about-philosophy strong {
  color: var(--navy);
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 60px;
  padding: 28px 20px;
  background: var(--navy-light);
  border-radius: 16px;
}
.stat {
  text-align: center;
}
.stat-num {
  font-size: 2.2rem;
  color: var(--orange-deep);
  font-weight: 800;
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--navy);
  margin-top: 6px;
  font-weight: 600;
}

/* Do grid */
.do-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.do-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  text-decoration: none;
  color: var(--navy);
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.do-card:hover {
  transform: translateY(-2px);
  border-color: var(--orange-deep);
  box-shadow: 0 6px 20px rgba(232, 133, 74, 0.15);
}
.do-card h3 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
}
.do-card p {
  margin: 0;
  color: var(--text-mid);
  font-size: 0.95rem;
}

/* CTA */
.about-cta {
  text-align: center;
  padding: 40px 24px;
  background: var(--navy);
  border-radius: 16px;
  color: #fff;
}
.about-cta h2 {
  color: #fff;
  margin-bottom: 12px;
}
.about-cta p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 24px 0;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.15s;
}
.cta-button:hover {
  transform: scale(1.03);
}

/* Mobile */
@media (max-width: 720px) {
  .about-page {
    margin-top: 60px;
  }
  .about-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .about-hero-img {
    max-width: 240px;
    margin: 0 auto;
  }
  .about-hero-text h1 {
    font-size: 2.2rem;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .do-grid {
    grid-template-columns: 1fr;
  }
}
