/* Montserrat Fonts */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-BoldItalic.woff') format('woff');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-ThinItalic.woff') format('woff');
    font-weight: 100;
    font-style: italic;
}


/* Vollkorn Fonts */
@font-face {
    font-family: 'Vollkorn';
    src: url('../fonts/Vollkorn-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

/* BlackerProDisplay Fonts */
@font-face {
    font-family: 'BlackerProDisplay';
    src: url('../fonts/Zetafonts-Italic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
}



.logo img {
    width: 127px;
    height: 44px;
    object-fit: contain;
}

 .header{
   background-color: #560834 !important;
   position: sticky;
   position: -webkit-sticky;
   top: 0;
   left: 0;
   height: 80px;
   padding: 0 27px;
   z-index: 9999;

 }

 .navbar-expand-lg .navbar-nav {
   gap: 30px;
 }

 .navbar-toggler-icon {
   background-image: url(../images/header_bar.webp);
   width: 43.3px;
   height: 20px;

 }

 .navbar-brand img {
   width: 100%;
   height: 46px;
   object-fit: cover;
 }


 /* Navbar link styling */
 .navbar-nav .nav-link {
   position: relative;
   font-family: Montserrat;
   font-size: 16px;
   font-weight: 500;
   font-stretch: normal;
   font-style: normal;
   line-height: normal;
   letter-spacing: normal;
   text-align: center;
   color: #fff;
   text-transform: uppercase;
   transition: all 0.3s ease;
 }

  .navbar-nav .menu-item.active .nav-link {
   color: #e2b792;
 }

 .nav-link:hover {
    color: #e2b792 !important;
}

.nav-link:focus {
    color: #e2b792 !important;
}
 .navbar-toggler {
   border: none;
 }

 .navbar-toggler:focus {
   outline: none;
   box-shadow: none;
 }


 @media (max-width: 900px) {
  
 .header{
   background-color: #560834 !important;
   position: sticky;
   position: -webkit-sticky;
   top: 0;
   left: 0;
   height: 100%;
   padding: 3px 20px;
   z-index: 9999;

 }

   .navbar-brand img {
        width: 100%;
     height: 30px;
     object-fit: cover;
   }
.navbar-nav{
  margin: 50px auto;
}
   .navbar-nav .nav-link {
     font-size: 14px;
     text-align: left;
   }

   .navbar-expand-lg .navbar-nav {
     gap: 30px;
   }
   
/* Custom Hamburger Icon */
#nav-icon1 {
  width: 28px;
  height: 25px;
  position: relative;
  cursor: pointer;
  display: inline-block;
}

#nav-icon1 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff; /* You can change color here */
  border-radius: 4px;
  opacity: 1;
  left: 0;
  transition: all 0.25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
  top: 3px;
}

#nav-icon1 span:nth-child(2), 
#nav-icon1 span:nth-child(3) {
  top: 12px;
}

#nav-icon1 span:nth-child(4) {
  top: 21px;
}

#nav-icon1.open span:nth-child(1) {
  top: 12px;
  width: 0%;
  left: 50%;
}

#nav-icon1.open span:nth-child(2) {
  transform: rotate(45deg);
}

#nav-icon1.open span:nth-child(3) {
  transform: rotate(-45deg);
}

#nav-icon1.open span:nth-child(4) {
  top: 12px;
  width: 0%;
  left: 50%;
}
.navbar-toggler:focus {
    box-shadow: none;
}
 }
