body, html {
    margin: 0;
    padding: 0;
    direction: rtl;
    font-family: 'Noto Sans Hebrew', sans-serif;
    color: white;
    height: 100%;
}

.hero {
    background: url("background.webp") center center / cover no-repeat;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* גרסה למובייל */
@media (max-width: 768px) {
  .hero {
    background: url("mobile.webp") center center / cover no-repeat;
    
    min-height: 100vh;
    height: auto;
    display: block;
    position: relative;
  }

  .hero-content {
    position: relative !important;
    left: auto !important;
    max-width: 90% !important;
    margin: 0 auto !important;
    transform: none !important;
    top: auto !important;
  }

  .overlay {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 2rem;
  }
    .desc{
        display:none!important;
    }
}

.overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.text-container {
    max-width: 500px;
    z-index: 2;
}

.title {
    font-family: 'Noto Sans Hebrew', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 1rem 0;
    color: #f6b61a;
}
.text-book{
          font-size: 4.9rem;
    font-weight:100;
    }
.highlight {
    font-size: 4.9rem;
    display: block;
    font-weight: 900;
}

.desc {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.form-title {
    color: #f6b61a;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.lead-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

    .lead-form input {
        flex: 1 1 30%;
        padding: 0.8rem;
        border-radius: 6px;
        border: none;
        background: rgba(255, 255, 255, 0.6);
        color: white;
        font-size: 1rem;
        outline: none;
    }

    .lead-form button {
        background: #f6b61a;
        color: #000;
        border: none;
        padding: 0.8rem 1.2rem;
        border-radius: 8px;
        font-weight: 700;
        cursor: pointer;
        transition: background 0.2s;
    }

        .lead-form button:hover {
            background: #ffcd4d;
        }

.contact {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

    .contact a {
        color: #fff;
        text-decoration: none;
    }

.price-circle {
  position: absolute;
  top: 20%;
  right: 35%;
  width: 180px;
  height: 180px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(0,0,0,0.15);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Alef', 'Assistant', sans-serif;
  z-index: 2;
}
.desc-mobile{
    display:none;
}
@media (max-width: 900px) {
    .overlay {
       
        justify-content: flex-start;
        text-align: center;
    }
.desc-mobile{
            display: block;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}
    .title {
        font-size: 3rem;
    }    
    .price-circle {
  position: absolute;
  top: 5%!important;
  right: 2%!important;
  width: 100px!important;
  height: 100px!important;

}

}

.hero-content {
  position: absolute;
left: 8%;
  text-align: center;
  color: white;
  max-width: 42%;
}

.hero-content h1 {
  font-size: 1rem;
  margin-bottom: 1rem;
    line-height:0.8;
}

.hero-content p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.hero-content p span {
    display: block
}
.hero-content .cta-button {
  background-color: #d6b877;
  color: #222;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.hero-content .cta-button:hover {
  background-color: #c2a35e;
}


.price-circle .circle-image {
  width: 100%;
  height: 100%;
   border-radius: 50%;
  object-fit: cover; /* או contain אם רוצים שהתמונה תישמר בפרופורציות */
}























































