body {
  padding-top: 60px;
  /* מונע שהתוכן יהיה מתחת לניווט הקבוע */
}

header {
  background: linear-gradient(to bottom left, #163e64, #617587f7) !important;
  height: 55vh;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
}

h1#headerTitle {
  font-size: xx-large;
}

p#headerSub {
  font-size: x-large;
}

header .space-x-4 {
  padding: 85px;
}

.home-page {
  display: flex;
  flex-direction: row-reverse;

}

.home-page img {}

.top-path {
  clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 100%);
}

#about {
  width: 60%;
}

.turquoise {
  background: #a6caec6e;
}

/* אנימציית fade-in כללית */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

.line.headers-text-separator {
  border-bottom: 4px solid #1f2937;
  width: 5%;
}

.line.headers-text-separator.text-center {
  margin: auto;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hidden {
  display: none;
}

#contact input {
  border: 2px solid #ccc;
  transition: border 0.3s ease-in-out;
}

#contact input:focus {
  border-color: #007BFF;
  outline: none;
}

#submitBtn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

img,
svg {
  display: block !important;
  max-width: 100%;
  height: auto;
}

/* עיצוב כפתור הוואטסאפ */
.whatsapp-button {
  background-color: #25D366;
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: bold;

}

.whatsapp-button:hover {
  background-color: #1EBE57;
}

.whatsapp-button img {
  width: 20px;
  height: 20px;
}

/* סידור הכפתורים של שינוי שפה ו-WhatsApp */
.language-whatsapp-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

img {
  display: block !important;
  max-width: 100%;
  height: auto;
}

/* אייקון בית בגוון אפור */
.home-icon {
  /* filter: grayscale(100%); */
}


@media screen and (max-width: 768px) {

  body {
    padding-top: 30px;
    /* מונע שהתוכן יהיה מתחת לניווט הקבוע */
  }

  header {
    clip-path: polygon(0 0, 101% 0, 100% 85%, 0 100%);
    height: auto;
    padding-top: 20px;
  }

  h1#headerTitle {
    font-size: large;
  }

  p#headerSub {
    font-size: larger;
  }

  .home-page {
    order: -1;
    /* מציב את התמונה לפני הטקסט */
  }


  #about {
    width: 100%;
  }

  .top-path {
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);


  }



  .language-icon {
    font-size: 20px;
    /* גודל האייקון */
  }

  .language-text {
    font-size: 14px;
    /* גודל הטקסט */
    font-weight: bold;
  }
}


@media (min-width: 640px) {
  .sm\:justify-end {
    justify-content: revert;


  }
}

@media (min-width: 640px) {
  .sm\:order-1 {
      order: 0;
  }
}