/* Navigation bar container */
.menu-bar {
  padding: 15px 0;
  top: 0;
  position: fixed; /* Stick the menu to the top so it follows as we scroll */
  right: 0; /* Place rightmost "main page" at rightmost pixel */
  direction: rtl; /* Set direction for Hebrew text */
  display: flex; /* Use flexbox for layout */
  justify-content: space-between; /* Space items to left and right */
  z-index: 1000; /* Ensure the menu is always on top */
  width: 100%; /* Ensure the bar spans full width */
  background: rgba(0, 0, 0, 0.2); /* Optional: background for better visibility */
  height: 80px;
}



/* PC - Navigation bar */
.menu-bar .menu-items {
  display: flex; /* Default: show menu items horizontally */
  list-style-type: none; /* No bullets rendered */
  margin: 0; /* Remove default margin */
  padding: 10px; /* Default padding for spacing */
}



/* PC - List of menu items */
.menu-bar .menu-items li {
  margin: 0 50px; /* Space between menu items */
  
}


/* PC/phone - Nav bar element */
.menu-bar .menu-items li a {
  color: AntiqueWhite;
  font-family: "Frank Ruehl", serif;
  text-decoration: none; /* No underline for hyperlinks */
  font-size: 22px;
  font-weight: bold; /* Makes the font bold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Adds a shadow to make the text stand out */
}

.menu-bar .menu-items li a:hover {
  color: #ff9800; /* Change color on hover */
  
}



/* Phone - Hamburger menu button */
.menu-toggle-btn {
  background: none;
  border: none;
  color: AntiqueWhite;
  font-size: 24px;
  cursor: pointer;
  display: none; /* Hidden on larger screens */
  margin-right: 20px;
}

.menu-toggle-btn:focus {
  outline: none; /* Remove outline on focus */
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .menu-bar {
    flex-direction: row-reverse; /* Adjust layout for Hebrew */
    justify-content: space-between; /* Space between toggle and logo */
  }

  .menu-toggle-btn {
    display: block; /* Show hamburger menu */
  }

  /* Phone - Navigation bar (hidden by default) */
  .menu-bar .menu-items {
    display: none; /* Show menu items as a dropdown */
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 60px; /* Position below the menu bar */
    right: 0;
    width: 100%; /* Full-width dropdown */
    z-index: 999; /* Make sure it's on top */
    padding: 0; /* Remove default padding */
  }

  /* Phone - List of menu items */
  .menu-bar .menu-items li {
    margin: 10px 0; /* Add spacing between items in the dropdown */
    text-align: center; /* Center-align items */

  }
}


footer {
  text-align: center;
  padding: 10px;
  background: #333;
  color: #fff;
  margin-top: 30px;
}

/* Footer styling */
#footer-placeholder {
  text-align: center;  
}

#footer-placeholder.visible {
  opacity: 1;
}
.column {
  flex: 1; /* Make columns flexible to fill the available space equally */
  text-align: center;
  margin: 5px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  direction: rtl; /* Set direction for Hebrew text */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Adds a shadow to make the text stand out */
}

#instagram {
  flex: 1; /* Allow Instagram to take leftover space */
  text-align: center; /* Center within its space */
  outline: none; /* Remove outline */
  

}

#instagram a {
  text-decoration: none;
}

#instagram .instagram-icon {
  width: 50px; /* Adjust size as needed */
  height: 50px; /* Adjust size as needed */
  transition: transform 0.3s ease;
}

#instagram .instagram-icon:hover {
  transform: scale(1.1);
}

body-container {
  display: flex; /* Enables flexbox for stacking */
  flex-direction: column; /* Stacks elements vertically */
  position: absolute; /* Position relative to the viewport */
  top: 60px; /* Position below the menu bar */
  right: 0; /* Stretch to the right edge */
  left: 0; /* Stretch to the left edge */
  bottom: 0; /* Stretch to the bottom edge of the viewport */
  width: 100%; /* Ensures it spans the full width of the viewport */
  height: auto; /* Allows the container to grow with its content */
  z-index: 999; /* Keeps it on top of other elements */
  padding: 0; /* Removes default padding for clean edges */
  margin: 0; /* Removes any default margins */
  background: transparent; /* Ensures the container is invisible */
  overflow: visible; /* Allows content to extend naturally */
}