/* Base colors inspired by Honeybear */
:root {
  --hb-pink: #fbe9e7;
  --hb-pink-soft: #ffeef2;
  --hb-cream: #fff9f3;
  --hb-brown: #5a4634;
  --hb-gold: #f4c16d;
  --hb-accent: #ff8fa3;
  --hb-text: #3a2b23;
  --hb-muted: #8b6f5a;
  --hb-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  --hb-radius-lg: 18px;
  --hb-radius-sm: 8px;
  --hb-font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Global layout */
body {
  margin: 0;
  padding: 0;
  font-family: var(--hb-font-main);
  color: var(--hb-text);
  background: linear-gradient(180deg, var(--hb-pink-soft), var(--hb-cream));
}

/* For each page wrapper */
.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

/* Header / nav */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background-color: #ffffff;
  box-shadow: var(--hb-shadow);
  border-radius: 999px;
  margin: 1.5rem auto 2.5rem;
  max-width: 1100px;
  position: sticky;
  top: 1rem;
  z-index: 10;
}

.site-logo {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--hb-brown);
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--hb-muted);
  position: relative;
  padding-bottom: 0.2rem;
}

.site-nav a:hover {
  color: var(--hb-brown);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--hb-accent);
  transition: width 0.2s ease-out;
}

.site-nav a:hover::after {
  width: 100%;
}

/* Hero section for each page */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

.hero-content h1 {
  font-size: 2.7rem;
  line-height: 1.1;
  color: var(--hb-brown);
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--hb-muted);
  margin-bottom: 1.5rem;
}

.hero-card {
  background: #ffffffcc;
  border-radius: var(--hb-radius-lg);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--hb-shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Primary button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: var(--hb-accent);
  color: #ffffff;
  cursor: pointer;
  box-shadow: var(--hb-shadow);
  transition: transform 0.08s ease-out, box-shadow 0.08s ease-out, background 0.2s ease-out;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  background: #ff6e8b;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.3rem;
  margin-left: 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(90, 70, 52, 0.15);
  background: #ffffffaa;
  color: var(--hb-brown);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
}

/* “Card” sections for products or content blocks */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}

.card {
  background: #ffffff;
  border-radius: var(--hb-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--hb-shadow);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  color: var(--hb-brown);
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--hb-muted);
  font-size: 0.95rem;
}

/* Venmo / info box for your payment section */
.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--hb-pink);
  color: var(--hb-brown);
  font-size: 0.85rem;
}

/* Footer */
.site-footer {
  padding: 2rem 1.5rem 3rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--hb-muted);
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .site-header {
    border-radius: 16px;
    padding-inline: 1rem;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .site-nav {
    gap: 1rem;
    font-size: 0.85rem;
  }
}

/* Page titles */
.page-title {
  font-size: 2rem;
  color: var(--hb-brown);
  margin-bottom: 0.5rem;
}

.page-intro {
  font-size: 1rem;
  color: var(--hb-muted);
  max-width: 40rem;
  margin-bottom: 2rem;
}

/* Generic section block */
.section {
  margin: 3rem 0;
}

.section-header {
  margin-bottom: 1.5rem;
}

.section-header h2 {
  font-size: 1.5rem;
  color: var(--hb-brown);
  margin: 0 0 0.3rem;
}

.section-header p {
  margin: 0;
  color: var(--hb-muted);
  font-size: 0.95rem;
}

/* Two-column layout for About page or info sections */
.section-two-column {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2rem;
  align-items: flex-start;
}

.section-panel {
  background: #ffffff;
  border-radius: var(--hb-radius-lg);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--hb-shadow);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

/* Simple list styling for menu items */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.menu-item {
  background: #ffffff;
  border-radius: var(--hb-radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--hb-shadow);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.menu-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--hb-brown);
}

.menu-item .category {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hb-muted);
  margin-bottom: 0.4rem;
}

.menu-item .description {
  font-size: 0.9rem;
  color: var(--hb-muted);
  margin-bottom: 0.4rem;
}

.menu-item .price {
  font-weight: 600;
  color: var(--hb-brown);
  font-size: 0.95rem;
}

.menu-image {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 0.75rem;
  object-fit: cover;
  max-height: 190px;
}

.menu-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.8rem;
}

.menu-actions label {
  font-size: 0.8rem;
  color: var(--hb-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.qty-input {
  width: 3.2rem;
  padding: 0.3rem 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.9rem;
  text-align: center;
}

/* Reuse your pink button style but smaller for cards */
.btn-add-to-cart {
  flex-shrink: 0;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: none;
  background: var(--hb-accent);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--hb-shadow);
  transition: transform 0.08s ease-out, box-shadow 0.08s ease-out, background 0.2s ease-out;
}

.btn-add-to-cart:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  background: #ff6e8b;
}


@media (max-width: 640px) {
  .page {
    padding: 1.5rem 1rem 3rem;
  }

  /* Stack the two columns on About and Order */
  .section-two-column {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .section-panel {
    padding: 1.25rem 1.3rem;
  }

  .page-title {
    font-size: 1.7rem;
  }

  .page-intro {
    font-size: 0.95rem;
  }
}

@media (max-width: 640px) {
  .section-panel form label {
    display: block;
    font-size: 0.95rem;
  }

  .section-panel input[type="text"],
  .section-panel input[type="email"],
  .section-panel textarea {
    width: 100%;
    box-sizing: border-box;
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
    padding: 0.6rem 0.7rem;
    font-size: 1rem;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
  }
}

.cart-badge {
  background: #ff8fa3;
  color: white;
  border-radius: 999px;
  padding: 0.2rem 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 0.4rem;
  cursor: pointer;
  transition: background 0.2s;
}

.cart-badge:hover {
  background: #ff6e8b;
}

.floating-cart-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #ff8fa3;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  z-index: 100;
  display: none;
}

.floating-cart-btn:hover {
  background: #ff6e8b;
  transform: scale(1.05);
}


.cart-badge {
  background: var(--hb-accent);
  color: white;
  border-radius: 999px;
  padding: 0.2rem 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 0.4rem;
}

.floating-cart-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: var(--hb-accent);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: var(--hb-shadow);
  z-index: 100;
  display: none;
}

.floating-cart-btn:hover {
  background: #ff6e8b;
  transform: scale(1.05);
}
