/* Reset בסיסי */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Assistant", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fafafa;
  direction: rtl;
}

/* ===== Top Bar ===== */
.top-bar {
  background-color:  #000000;
  text-align: center;
  padding: 8px 0;
  border-bottom: 1px solid #000000;
}

.top-bar img {
  max-height: 40px;
  height: auto;
  width: auto;
  opacity: 0.9;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url("images/herobackground.jpeg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.hero .btn {
  display: inline-block;
  background: #ff7a00;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.hero .btn:hover {
  background: #ff9500;
  transform: scale(1.05);
}

/* ===== Sections ===== */
section {
  padding: 80px 20px;
  text-align: center;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

/* About */
.about {
  background: #fff;
  max-width: 900px;
  margin: auto;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Advantages */
.advantages {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.adv-item {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 250px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.adv-item img {
  width: 60px;
  margin-bottom: 15px;
}

.adv-item:hover {
  transform: translateY(-8px);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Contact + Video side by side */
.contact-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
}

/* Contact Form */
.contact-form {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.contact-section {
  display: flex;
  justify-content: center;
  align-items: stretch;   /* שני הצדדים יהיו באותו הגובה */
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.contact-section .video-container,
.contact-section form {
  flex: 1;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form button {
  background: #ff7a00;
  color: #fff;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #ff9500;
}
.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* יחס 16:9 */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Footer */
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .advantages {
    flex-direction: column;
    align-items: center;
  }

  .adv-item {
    width: 80%;
  }

  .contact-section {
    flex-direction: column;
  }
}