/* Reset basics */
* {
  box-sizing: border-box;
}
.logo {
  font-size: 1.5rem;
}


.nav a {
    color: black;
    background-color: transparent;
    text-decoration: none;
  text-decoration: none;
  padding: 0 1rem;
}

/* Hamburger button */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.1rem;
  min-width: 44px;
  min-height: 44px;
}

.hamburger line {
  stroke: #000;        /* black lines */
  stroke-width: 3.5;
  stroke-linecap: round;
  transform-box: fill-box;
  transform-origin: center;

  transition: transform 0.3s ease, opacity 0.2s ease;
}
@media (min-width: 768px) {
  .header {
    position: relative;
    display: flex;
/*    flex-direction: column; */  /* 👈 stack vertically */
    background: #f9f5f0;
  }

  nav.nav {
    font-size: 1.5vw;
    font-weight: lighter;
    display: block;
    justify-content: center;
    padding-right:3%;
    padding-top:1%;
  }

  .nav ul {
    display: flex;
    list-style: none;
  }
  li {
  }

}
/* Mobile styles */
@media (max-width: 767px) {
.header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: #f9f5f0;
  color: #fff;
  padding-bottom:1%;
}
nav.nav{
    font-size: 2.2vw;
/*    font-size: 28px; */
    font-weight: lighter;
    display: flex;
    justify-content: center;
  }
/* Navigation */
.nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1001;
    color: #000;
  }
.logo-img {
  width: 40%;
  height: auto;
  padding-top:4%;
}

  .nav {
    position: absolute;
    top: 100%;
    left: 4%;
    width: 90%;
    /* background: #ece6ddd0; transparant */
    background: #ece6dd;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 1000;
  }

  .nav.open {
    max-height: 600px;
  }

  .nav ul {
display: block;
flex-direction: column;
text-align: center;
  }
 .nav ul li{
    padding: 4.5px;
    font-size: 4.6vw;
    font-weight:bold;
  }
}
.menu-toggle.open .hamburger line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.menu-toggle.open .hamburger line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open .hamburger line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

