/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color:rgba(245, 222, 179, 0.575);
    padding: 1rem;
}

.navbar-brand {
    color: #2b00c7;
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar-menu {
    display: flex;
    list-style: none;
    padding-right: 50px;
}

.navbar-item {
    margin-left: 28px;
    
}

.navbar-menu a {
    color: #000000;
    text-decoration: none;
    font-size: 1rem;

}  

.navbar-item {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    height: 3px;
    width: 25px;
    background-color:wheat
 }
 .navbar-item {
    font-size: 18px;
    color: rgb(0, 0, 0);
    font-family: Poppins;
    font-weight: 400;
    cursor: pointer;
    position: relative;
    border: none;
    background: none;
  
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: color;
    display: inline-flex;
    align-items: center;
  }
  
  .navbar-item :focus,
  .navbar-item :hover {
    color: rgb(41, 41, 41);
  }
  
  .navbar-item :focus:after,
  .navbar-item :hover:after {
    width: 100%;
    right:0 ;
    left: ; /* Ensure left is auto to override the initial value */
  }
  
  .navbar-item :after {
    content: "";
    pointer-events: none;
    bottom: -7px;
    right: auto; /* Start from the right */
    left: 0; /* Ensure left is auto to override the initial value */
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #e70101;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 500ms;
    transition-property: width, right;
  }
  

 