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 {
  margin-left: auto;
  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;
}

.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);
}

/* === MOBILE NAV === */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .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;
  }

  nav {
    height: auto;
  }
}

.contact-section {
  padding: 80px 20px;
  background: linear-gradient(to right, #1a1423, #24152e);
  text-align: center;
}

.contact-section h1 {
  font-size: 42px;
  color: #ffd700;
  margin-bottom: 30px;
}

.contact-section p {
  font-size: 18px;
  margin: 10px 0;
  line-height: 1.8;
  color: #eee;
}

.contact-section a {
  color: #ffd700;
  font-weight: bold;
  text-decoration: none;
}

/* === FOOTER === */
.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;
}

/* === FIXED ACTION BAR === */
.fixed-action-bar {
  position: fixed;
  left: 0;
  bottom: 24px;
  width: 100vw;
  display: flex;
  justify-content: center;
  gap: 20px;
  z-index: 99999;
  pointer-events: auto;
  background: none;
}

.fixed-action-bar .action-btn {
  pointer-events: auto;
  padding: 7px 15px;
  border-radius: 10px;
  font-size: 0.99em;
  font-weight: 700;
  background: linear-gradient(135deg, #ffe8ef 0%, #ffe16b 100%);
  color: #4b2e83;
  border: 2px solid #ffd700;
  margin: 0 4px;
  transition: background 0.19s, color 0.19s, transform 0.13s, box-shadow 0.18s;
  cursor: pointer;
  letter-spacing: .3px;
  text-shadow: 0 1.5px 8px #fff9bb6d;
  box-shadow: 0 3px 12px #ff267715, 0 1px 5px #ffd70012;
}

.fixed-action-bar .order-btn {
  background: linear-gradient(135deg, #fffbe8 0%, #ff2677 100%);
  color: #fff;
  border: 3px solid #ff2677;
  box-shadow: 0 7px 26px #ff267755, 0 2px 11px #ffd70022;
}

.fixed-action-bar .pickup-btn {
  background: linear-gradient(135deg, #e9d3ff 0%, #ffd700 100%);
  color: #4b2e83;
  border: 3px solid #ffd700;
}

.fixed-action-bar .delivery-btn {
  background: linear-gradient(135deg, #ffe8ef 0%, #a5f7c4 100%);
  color: #168b53;
  border: 3px solid #3cf797;
}

.fixed-action-bar .action-btn:hover {
  transform: translateY(-7px) scale(1.05);
  box-shadow: 0 12px 36px #ff2677aa, 0 4px 24px #ffd70055;
  filter: brightness(1.09);
}

@media (max-width: 600px) {
  .fixed-action-bar {
    gap: 13px;
    bottom: 8px;
  }

  .fixed-action-bar .action-btn {
    padding: 13px 14px;
    font-size: 1em;
    border-radius: 10px;
    margin: 0 3px;
  }
}
