.header {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
  }
  .menu {
    display: flex;
    justify-content: space-around;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .menu li {
    position: relative;
    font-size: 15px;
  }
  .menu a {
    display: block;
    padding: 15px 20px;
    color: #845f6c;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
  }
  .menu a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 0;
    height: 2px;
    background: #C9A4B2;
    transition: all 0.3s ease-out;
  }
  .menu a:hover::after {
    width: 100%;
    left: 0;
  }
  .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #B27E91;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 150px;
    z-index: 1000;
  }
  .dropdown li a {
    padding: 10px;
    color: #fff;
  }
  .menu li:hover .dropdown {
    display: block;
    animation: dropdownAnimation 0.3s ease-out;
  }
  @keyframes dropdownAnimation {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Hamburger Menu Styles */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 2000;
  }
  .hamburger div {
    width: 100%;
    height: 3px;
    background-color: #000;
    margin: 4px 0;
    transition: all 0.3s ease;
  }
  .hamburger span {
    font-size: 12px;
    color: #000;
    margin-top: 5px;
  }
  .menu-mobile {
    display: none;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #B27E91;
    position: fixed;
    top: 109px;
    width: 100%;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease, max-height 0.5s ease;
    max-height: 0;
    overflow: hidden;
  }
  .menu-mobile.show {
    opacity: 1;
    max-height: 500px; /* Adjust as needed */
  }
  .menu-mobile li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
	  line-height:40px;
	  display:block;
	  text-align:center;
  }
  .menu-mobile li a:hover {
    background-color: #9B5770;
  }
  .menu-mobile .dropdown {
    position: relative;
    background-color: #444;
  }
  .menu-mobile .dropdown li a {
    padding: 10px;
  }
.menu-mobile div{
	padding-top:15px;
	padding-bottom:15px;
}

  /* Responsive Styles */
  @media (max-width: 640px) {
    .header {
      width: 100%;
    }
    .menu {
      display: none;
    }
    .hamburger {
      display: flex;
    }
    .hamburger span {
      display: block;
	font-size:12px;
    }
    .hamburger.open span {
      display: none;
    }
	 
  }

  .open .line1 {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .open .line2 {
    opacity: 0;
  }
  .open .line3 {
    transform: rotate(-45deg) translate(8px, -8px);
  }