body {
  background: linear-gradient(135deg, #f9f7fa 0%, #e9e3ff 100%);
  font-family: 'Playfair Display', serif;
  color: #3d125b;
  margin: 0;
  padding: 0;
}
header {
  background: #4b2e83;
  color: #fff;
  padding: 12px 0; /* adds vertical space */
  min-height: auto;
}


@media (max-width: 600px) {
  .logo-img {
    height: 58px;
  }
}
.container.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  height: 54px;
}

.logo-link {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-img {
  height: 85px;
  width: auto;
  margin-right: 12px;
}

nav {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin-left: 22px;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 2.5px;
  transition: background 0.2s;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.nav-menu a:hover {
  background: #ffd700;
  color: #463075;
}






.reservation-section {
  max-width: 430px;
  margin: 48px auto 0 auto;
  background: #fff;
  padding: 35px 32px 25px 32px;
  border-radius: 19px;
  box-shadow: 0 6px 30px #6d33b51a, 0 1.5px 18px #ffd70015;
}
.reservation-section h1 {
  text-align: center;
  font-size: 2em;
  color: #4b2e83;
  margin-bottom: 24px;
  letter-spacing: 1.1px;
}
.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.reservation-form label {
  font-weight: 600;
  margin-bottom: 3px;
  color: #442177;
}
.reservation-form input, .reservation-form button {
  font-family: inherit;
  font-size: 1.08em;
  border-radius: 7px;
  border: 1.7px solid #ffe16b;
  padding: 11px;
  outline: none;
  transition: border 0.18s;
  background: #fffbe8;
}
.reservation-form input:focus {
  border-color: #ff2677;
}
.reservation-form button {
  background: linear-gradient(90deg, #ffd700 0%, #ff2677 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.12em;
  margin-top: 9px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.11s;
  box-shadow: 0 1.5px 8px #ffd70036;
}
.reservation-form button:hover {
  background: #fffbe8;
  color: #ff2677;
  transform: scale(1.04);
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
  margin-left: 10px;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 4px;
  background: #ffd700;
  border-radius: 3px;
  margin: 4px 0;
  transition: all 0.28s cubic-bezier(.68,-0.55,.27,1.55);
}

@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    top: 0; right: 0;
    background: #4b2e83;
    flex-direction: column;
    align-items: flex-start;
    width: 210px;
    height: 100vh;
    padding-top: 78px;
    box-shadow: -4px 0 18px #2e1a4744;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(.7,0,.18,1);
    z-index: 1001;
  }
  .nav-menu.open {
    transform: translateX(0);
  }
  .nav-menu li {
    margin: 24px 0 0 22px;
  }
  .hamburger {
    display: flex;
  }
  nav {
    height: auto;
  }
  nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
}

.hamburger {
  width: 38px;
  min-width: 38px;
  max-width: 44px;
}

}