/* בסיס כללי */
body {
  background: white;
  font-family: sans-serif;
  font-size: 17px;
  margin-left: 220px;
  color: black;
}

/* שם האתר */
#sitename {
  font-size: 18px !important;
  font-weight: bold;
  margin-bottom: 20px;
  color: black;
}

/* תפריט צדדי */
#sidebar {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 180px;
  text-align: left;
}

#menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

#menu li {
  margin-bottom: 10px;
  font-size: 14px;
}

#menu a {
  text-decoration: none;
  color: black;
  font-size: 14px;
}

#menu a:hover {
  text-decoration: underline;
}

/* תפריט עם תתי תפריטים */
.has-submenu {
  position: relative;
}

.submenu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 10px 0 0 20px;
}

.has-submenu:hover .submenu {
  display: block;
}

.submenu li {
  margin-bottom: 8px;
  font-size: 16px;
}

/* עיצוב כותרות */
h1 {
  font-size: 19px !important;
  font-weight: normal !important;
  color: black;
}

h2 {
  font-size: 26px !important;
  font-weight: bold !important;
  margin-bottom: 10px;
  color: black;
}

/* טקסט כללי */
p, span, a, div {
  font-size: 14px;
  font-weight: normal;
  color: black !important;
}

.content, .project-description, .project-content {
  color: black !important;
  font-family: sans-serif;
  font-size: 15px;
  margin-left: 220px !important;
  padding-left: 20px;
}

/* תמונות */
img {
  filter: none !important;
  transition: none !important;
  max-width: 100%;
  height: auto;
}

/* הסתרת כותרת אוטומטית של הדף */
h1.page-title {
  display: none !important;
}

/* רספונסיביות למסכים קטנים */
@media screen and (max-width: 768px) {
  #sidebar {
    width: 100%;
    position: relative;
    padding: 0;
  }

  #menu {
    display: block;
  }

  #menu li {
    display: block;
    margin: 10px 0;
  }

  #menu a {
    font-size: 16px;
    padding: 8px;
  }

  img {
    width: 100%;
    height: auto;
  }

  .project-page #sidebar {
    display: none;
  }

  .project-page #sitename {
    position: fixed;
    top: 10px;
    left: 10px;
    font-size: 20px;
    font-weight: bold;
    z-index: 1000;
  }

  .project-page .content {
    margin-left: 0;
    padding: 10px;
  }

  .project-page h1, .project-page h2, .project-page p {
    font-size: 17px;
  }
}

@media screen and (max-width: 480px) {
  #sitename {
    font-size: 17px;
    text-align: center;
  }

  #menu a {
    font-size: 11px;
      
  }
}
