:root {
	--display-font-family: PT Serif;
	--body-font-family: PT Sans;

	--font-size: 18px

	--logo-padding: 26px;
	--logo-height: 92px;

	--header-width: 100%;
	--header-border-position: bottom;
	--header-border-size: 6px;
	--header-bg-color: 254 254 254;
	--header-border-color: 215 215 215;

	--brand-color: 50 50 50;
	--brand-color-inverted: 255 15 ;

	--background-color: 255 15 ;
	--text-color: 61 61 61;
	--link-color: 61 61 61;

	--action-color: 114 156 35;
	--action-color-inverted: 255 255 255;

	--announcement-bar-bg-color: 245 220 220;
	--announcement-bar-text-color: 201 0 0;
	--announcement-bar-link-color: 61 61 61;

	--main-navigation-bg-color: 254 254 254;
	--main-navigation-link-color: 50 48 52;
	--main-navigation-link-color-hover: 255 255 255;
	--main-navigation-link-bg-color: 255 255 255;
	--main-navigation-link-font-size: 16px;
	--main-navigation-link-alignment: right;

	--auxiliary-bg-color: transparent;
	--auxiliary-border-color: transparent;
	--auxiliary-link-color: 61 61 61;

	--order-status-bg-color: 66 66 66;
	--order-status-color: 171 171 171;

	--store-menu-bg_color: 248 248 248;
	--store-menu-color: 119 7 ;

	--footer-bg-color: 53 95 8;
	--footer-color: 254 254 254;
	--footer-link-color: 255 255 255;
}

/*Custom Styles*/
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333; /* Set your nav background color */
  padding: 30px 30px;
  height: 200px; /* Explicit height to make it thicker */
  position: relative; /* Allows for absolute positioning within */
  overflow: visible; /* Ensures content can overflow outside the nav */
}

.nav-left, .nav-right {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav-left li, .nav-right li {
  margin: 0 10px;
}

.nav-left a, .nav-right a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-left a:hover, .nav-right a:hover {
  color: #4da3a5; /* Example hover color */
}

.logo {
  position: absolute; /* Position the logo absolutely within the nav */
  left: 15%; /* Center horizontally */
  transform: translateX(-40%); /* Adjust for centering */
  top: -30px; /* Pull the logo out of the nav */
  z-index: 1; /* Ensure it appears above the nav if needed */
}

.logo-img {
  max-height: 200px; /* Adjust based on your logo size */
  height: auto;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
  .nav-container {
    flex-direction: column;
    padding: 20px;
    position: static;
    align-items: center; /* Center all children horizontally */
  }

  .nav-left, .nav-right {
    width: 100%;
    justify-content: center;
    margin: 10px 0;
  }

  .logo {
    position: static;
    display: block;
    margin: 20px 0; /* Removed auto to avoid unnecessary horizontal margin */
    top: auto;
    left: auto;
    transform: none;
    text-align: center; /* Ensures inline-block elements like img are centered if needed */
  }

  .logo-img {
    max-width: 100%; /* Ensures the logo doesn't exceed container width */
    height: auto;
  
  }
