.catering-section {
  max-width: 480px;
  margin: 48px auto 0 auto;
  background: #fff;
  padding: 36px 32px 25px 32px;
  border-radius: 19px;
  box-shadow: 0 6px 30px #6d33b51a, 0 1.5px 18px #ffd70015;
}
.catering-section h1 {
  text-align: center;
  font-size: 2em;
  color: #4b2e83;
  margin-bottom: 24px;
  letter-spacing: 1.1px;
}
.catering-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.catering-form label {
  font-weight: 600;
  margin-bottom: 3px;
  color: #442177;
}
.catering-form input,
.catering-form textarea,
.catering-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;
}
.catering-form textarea {
  min-height: 44px;
  resize: vertical;
}
.catering-form input:focus,
.catering-form textarea:focus {
  border-color: #ff2677;
}
.catering-form button {
  background: linear-gradient(90deg, #ffd700 0%, #ff2677 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.12em;
  margin-top: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.11s;
  box-shadow: 0 1.5px 8px #ffd70036;
}
.catering-form button:hover {
  background: #fffbe8;
  color: #ff2677;
  transform: scale(1.04);
}

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;
}
/* Footer - Grid Layout Horizontal */
.footer {
  background-color: #2e1a47;
  color: #eee;
  padding: 50px 20px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  align-items: start;
}

.footer-col h3,
.footer-col h4 {
  font-family: 'Cinzel', serif;
  color: #fff;
  margin-bottom: 10px;
}

.footer-col p {
  margin: 5px 0;
  line-height: 1.5;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 6px 0;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 15px;
  margin-top: 30px;
  font-size: 14px;
}
.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;
  }
}