body {
  margin: 0;
  padding-top: 108px; /* גובה ה-header וה-separator ביחד */
  font-family: 'Assistant', sans-serif;
  background-color: #121212;
  color: #f0f0f0;
  direction: rtl;
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #1e1e1e;
  padding: 15px 0;
  border-bottom: 1px solid #444;
  text-align: center;
  z-index: 999;
}

header h1 {
  margin: 0;
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
}

nav {
  margin-top: 10px;
}

nav a {
  margin: 0 12px;
  color: #ccc;
  text-decoration: none;
  font-weight: 300;
}

nav a:hover {
  color: #fff;
}

.separator {
  height: 4px;
  background-color: #444;
  width: 100%;
  position: fixed;
  top: 100px; /* מתחת ל-header */
  z-index: 998;
}

.hero {
  background: url('hero.jpg') center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h2 {
  background: rgba(0,0,0,0.6);
  padding: 20px 40px;
  border-radius: 10px;
  font-size: 36px;
}

section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
} 
h3 {
  font-size: 28px;
  margin-bottom: 20px;
  border-bottom: 2px solid #444;
  display: inline-block;
  padding-bottom: 5px;
 padding-top: 10px;
  text-align: center;
}
p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 20px;
  text-align: justify;
}


.projects-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.projects-grid img {
  width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: 0.3s ease;
  cursor: pointer;
}

.projects-grid img:hover {
  transform: scale(1.05);
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.service-item {
  max-width: 250px;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.btn {
  background-color: #f0f0f0;
  color: #121212;
  padding: 15px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn:hover {
  background-color: #ffffff;
  color: #000;
}


footer {
  background: #1e1e1e;
  padding: 20px;
  font-size: 14px;
  color: #aaa;
}
