body {
  margin: 0;
  font-family: 'Lora', serif;
  background-color: #ffffff;
  color: #222;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

body, p, li {
  font-family: 'Heebo', sans-serif;
}


a {
  text-decoration: none;
  color: inherit;
}

/* הירו */
.hero {
  position: relative;
  text-align: center;
}

.hero-image {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  filter: brightness(65%);
}

.hero-text-below {
  text-align: center;
  padding: 40px 20px 20px;
  max-width: 800px;
  margin: auto;
}

.hero-logo {
  width: 80px;
  margin-bottom: 15px;
}

.hero-title {
  font-size: 2.3em;
  margin-bottom: 0.2em;
  color: #444;
}

.hero-tagline {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 1em;
}

.hero-subtitle,
.hero-summary {
  font-size: 1em;
  color: #555;
  margin-bottom: 1em;
}

.btn {
  padding: 10px 20px;
  background-color: #444;
  color: white;
  border-radius: 30px;
  transition: 0.3s ease;
}

.btn:hover {
  background-color: #222;
}

/* כל סקשן */
section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

/* ========================= */
/* אודות – התיקון החשוב כאן */
/* ========================= */

.about-grid {
  display: flex;
  flex-direction: row;     /* סדר רגיל */
  gap: 40px;
  align-items: flex-start;
  flex-wrap: nowrap;       /* ❗ מונע קפיצה למעלה */
  direction: ltr;          /* ❗ מכריח layout שמאל-ימין */
}

.about-img-small {
  width: 250px;
  border-radius: 8px;
  flex-shrink: 0;
}

.about-text {
  flex: 1;
  min-width: 300px;
  direction: rtl;          /* הטקסט עצמו נשאר עברית */
  text-align: right;
}

.about-text ul {
  padding-right: 20px;
  line-height: 1.8;
}

blockquote {
  font-style: italic;
  color: #666;
  margin-top: 20px;
  padding-right: 10px;
  border-right: 3px solid #ddd;
}

/* כותרות סקשנים */
.services h2,
.contact h2,
.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* ========================= */
/* תחומי שירות – גריד רספונסיבי ומתוקן */
/* ========================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: stretch;
}

.service-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  max-width: 300px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 15px;
}

.service-card h3 {
  margin-top: 0;
  font-size: 1.3em;
  color: #333;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  line-height: 1.7;
  color: #555;
}

/* המלצות */
.testimonials-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-placeholder {
  width: 250px;
  height: 150px;
  background-color: #f2f2f2;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 0.95em;
}

/* צור קשר */
.contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

.contact input,
.contact textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}

.contact button {
  background-color: #444;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

.contact button:hover {
  background-color: #222;
}

.contact-info {
  text-align: center;
  margin-top: 30px;
  font-size: 0.95em;
  color: #555;
}

/* פוטר */
footer {
  text-align: center;
  padding: 30px 0;
  background-color: #f8f8f8;
  font-size: 0.9em;
  color: #888;
}

/* רספונסיביות כללית למסכים עד 768px */
@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.6;
    padding: 10px;
  }

  .hero {
    height: auto;
  }

  .hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .hero-content {
    padding: 20px 10px;
    text-align: center;
  }

  .hero-title {
    font-size: 22px;
  }

  .hero-subtitle,
  .hero-summary {
    font-size: 16px;
  }

  .about-grid {
    display: block;
    text-align: center;
  }

.about-img-small {
  width: 60%;
  max-width: 250px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
}


  .services-grid {
    display: block;
  }

  .service-card {
    margin-bottom: 30px;
    text-align: center;
  }

  .service-card img {
    width: 100%;
    height: auto;
  }

  .contact form {
    display: block;
    padding: 10px;
  }

  .contact input,
  .contact textarea,
  .contact button {
    width: 100%;
    margin-bottom: 10px;
    font-size: 16px;
  }

  footer p {
    font-size: 14px;
    text-align: center;
    padding: 10px 0;
  }
}
