/* Simple Navigation - Always Visible */

.simple-nav {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 0;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #dee2e6;
}

.simple-nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
}

.simple-nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  gap: 1rem;
  width: 100%;
  padding: 0.5rem 0;
}

/* Style for the links themselves */
.simple-nav-links a {
  color: #424242;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  font-weight: 500;
  white-space: nowrap;
}

.simple-nav-links a:hover {
  color: #1565c0;
}

/* Active state styling */
.simple-nav-links a.active {
  color: #1565c0;
  position: relative;
}

.simple-nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #1565c0;
}

/* Navigation content for RTL language */
.simple-nav-links a:nth-child(1)::before {
  content: "עמוד הבית";
}

.simple-nav-links a:nth-child(2)::before {
  content: "שרשראות שלג";
}

.simple-nav-links a:nth-child(3)::before {
  content: "מוצרים נוספים";
}

.simple-nav-links a:nth-child(4)::before {
  content: "צור קשר";
}

/* Responsive styles - keep it always visible but adjust for smaller screens */
@media (max-width: 768px) {
  .simple-nav-links {
    padding: 0.25rem 0;
  }
  
  .simple-nav-links a {
    font-size: 0.9rem;
    padding: 0.4rem 0.6rem;
  }
}

@media (max-width: 480px) {
  .simple-nav-links {
    justify-content: space-around;
  }
}
/* Footer navigation styling */
.footer-nav a:empty {
  display: inline-block;
  padding: 0.3rem 0;
}

/* Navigation content for RTL language in footer */
.footer-nav li:nth-child(1) a::before {
  content: "עמוד הבית";
}

.footer-nav li:nth-child(2) a::before {
  content: "שרשראות שלג";
}

.footer-nav li:nth-child(3) a::before {
  content: "מוצרים נוספים";
}

.footer-nav li:nth-child(4) a::before {
  content: "צור קשר";
}