@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");


:root {
  --primary-color: #A90705;
  --bodycolor :white;
  --body-color: #ebe4d2;
  ----menutextcolo :white;
  ----menutextcolo2 :rgb(8, 8, 8)e;
}




* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--body-color);
  color: var(--body-color);
  font-family: "Poppins", sans-serif;
  
}

header a {
  text-decoration: none;
  
}

.paddinclass{
background-color: white;
  display: block;
  height: 71px;
  width: 100%;

}

header {
  padding: 0 20px;
  background-color: var(--body-color);
  height: 70px;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.maxdiv {max-width: 1200px;
  margin: 0 auto;}

#brand {
  padding-top: 10px ;
  
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
}

#brand a {
  color: var(--primary-color);
}

ul {
  list-style: none;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 1; /* Higher z-index to bring it to the front */
 

}



ul li {
  padding: 5px;
  margin-left: 10px;
}

ul li:hover {
  transform: scale(1.1);
  transition: 0.3s;
 
}


.menu-item{
  display: block;
  width: 500px;
  height: 50x;
  background: var(--primary-color);
  text-align: center;
  position: relative;
  animation-name: cap;
  animation-duration: 0.3s;

}

@keyframes cap {
   100%   { left:0px; top:0px;opacity: 1;}
   0%  { left:-200px; top:0px;opacity: 0;}
   
 }



#hamburger-icon {
  margin: auto 0;
  display: none;
  cursor: pointer;
}

#hamburger-icon div {
  width: 35px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 6px 0;
  transition: 0.4s;
}

.open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}

.open .bar2 {
  opacity: 0;
}

.open .bar3 {
  -webkit-transform: rotate(45deg) translate(-6px, -8px);
  transform: rotate(45deg) translate(-6px, -8px);
}

.open .mobile-menu {
  
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  
}


.menu-item {
    list-style: none;
}

.full-width-link {
    display: block; /* Makes the link fill the entire list item */
    padding: 10px; /* Adjust padding as needed */
    text-decoration: none; /* Removes the underline from links */
    color: inherit; /* Inherits the text color from the parent element */
    /* Add more styling as needed */
}

.full-width-link:hover {
    /* Add hover effects here if needed */
}



.mobile-menu {
  
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  
  width: 100%;
}

.mobile-menu li {
  margin-bottom: 10px;
}

.paddingclass{padding: 5px;}
.imglogo {
  width: 90px;
  width: 90px;
  
}

/* Page content */
.maxdiv {
  padding: 16px;
}


ul a {
  color: var(--primary-color);
}





@media only screen and (max-width: 600px) {
  header nav {
    display: none;
  }

  ul a {
    color: rgb(255, 255, 255);
  }

  #hamburger-icon {
    display: block;
  }


    /* For mobile phones: */
    .imglogo{
      
      width: 70px;
      height: 70px;
      
    }

   

}





