/*
Theme Name: Yocto Jpeg Autorotate
Theme URI: https://humblethemes.com/themes/yocto
Template: yocto
Author: Humble Themes
Author URI: https://humblethemes.com
Description: Yocto is a lightweight and hyper-fast theme that is built for professional writers, bloggers and content marketers. It's also 100% Gutenberg ready.
Tags: one-column,accessibility-ready,custom-menu,custom-logo,featured-images,footer-widgets,sticky-post,theme-options,threaded-comments,translation-ready
Version: 1.0.8.1587151220
Updated: 2020-04-17 19:20:20

*/

/* Element | https://savolai.net/software/jpeg-autorotate/ */
/* Flexbox for top bar nav */
.top-bar nav {
  display: flex;
  align-items: center; /* Vertically center align items */
  justify-content: space-between; /* Space between SVG and menu */
}

/* Ensure the SVG does not shrink */
.top-bar nav svg {
  flex-shrink: 0;
}

/* Style for the menu container */
.menu-top-bar-container {
  display: flex;
}

/* Style for the menu items */
.site-top-bar-menu {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.site-top-bar-menu li {
  margin-right: 1em; /* Space between menu items */

}

.site-top-bar-menu a {
  color: #ccc; /* Adjust link color */
  text-decoration: none;
}
html body  .hamburger{
	display:none;
  /* border-radius: 1em; */
  background: none;
  border: 0 none;
  color: #ccc;


}

/* Responsive behavior for the hamburger menu */
@media (max-width: 1200px) {
  .top-bar nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-top-bar-menu {
    display: none; /* Initially hide the menu */
    flex-direction: column;
    width: 100%;
  }

  .site-top-bar-menu.show {
    display: flex;
  }  .sidebar-menu.show {
    display: flex;
  }

  /* Styles for a hamburger button if needed */
  .hamburger {
    display: block;
    cursor: pointer;
    color: #ccc;
    background: none;
    border: none;
    font-size: 1.5em;
    margin-top: 0.5em;
  }
}
.sidebar-menu {
  position: fixed;
  top: 0;
  left: -250px; /* Start off-screen */
  width: 250px;
  height: 100%;
  background-color: #333;
  overflow-x: hidden;
  transition: 0.3s; /* Transition for sliding effect */
  padding-top: 60px; /* Add some padding to position items */
}

.sidebar-menu ul {
  list-style-type: none;
  padding: 0;
}

.sidebar-menu ul li {
  padding: 8px 16px;
}

.sidebar-menu ul li a {
  color: #B9FAF8;
  text-decoration: none;
  display: block;
}

.sidebar-menu ul li a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  /* Hide the full-width menu and show the hamburger icon */
  .menu-top-bar-container {
    display: none; /* Hide the main menu on mobile */
  }

  .hamburger {
    display: block; /* Show the hamburger icon */
  }

  /* Display the sidebar menu */
  .sidebar-menu.show {
    left: 0; /* Slide into view */
  }
}
div.top-bar .primary-menu .menu-item a {
	padding: 0 !important;
	    color: #ccc !important;

}

