/* ============================================================
   FUSION FEAST — Redesigned Stylesheet (matching template mockups)
   Light/cream design with botanical leaf decorations
   Colors: #1e2a14 dark green, #f5f3ee cream, #4a7c3f green accent,
           #c4a84d gold, #3d6b32 buttons, #1a2e0d footer
   Fonts: Playfair Display (headings) + Inter (body)
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; color: #2d2d2d; background: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ============ NAVBAR ============ */
.navbar {
  background: #fff;
  padding: 0;
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid #e8e5df;
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 90px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: #1a2e0d;
  line-height: 1.1;
}
.nav-logo-text span {
  display: block; font-size: 28px; letter-spacing: 2px;
}
.nav-logo-text small {
  display: block; font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: #666; font-family: 'Inter', sans-serif;
  font-weight: 400; margin-top: 2px;
}
.nav-logo img { height: 110px; width: auto; margin: -15px 0; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: #444;
  transition: color 0.2s; padding: 4px 0;
}
.nav-links a.active { color: #4a7c3f; font-weight: 600; }
.nav-links a:hover { color: #4a7c3f; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-icon {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; position: relative; color: #333;
}
.nav-icon svg { width: 20px; height: 20px; }
.cart-badge {
  position: absolute; top: 0; right: 0;
  background: #4a7c3f; color: #fff; font-size: 10px;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.btn-order {
  background: #4a7c3f; color: #fff; padding: 10px 22px;
  border-radius: 6px; font-size: 13px; font-weight: 600;
  border: none; cursor: pointer; transition: background 0.2s;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-order:hover { background: #3d6b32; }
.mobile-menu-btn { display: none; background: none; border: none; color: #333; cursor: pointer; }
.mobile-menu-btn svg { width: 28px; height: 28px; }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  background: #f5f3ee; padding: 56px 0; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before,
.page-hero::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 200px;
  background: url('images/leaves-decor.png') no-repeat center/contain;
  opacity: 0.15;
}
.page-hero::before { left: 0; }
.page-hero::after { right: 0; transform: scaleX(-1); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 44px; color: #1a2e0d; margin-bottom: 12px;
}
.page-hero p { color: #666; font-size: 16px; max-width: 560px; margin: 0 auto; }

/* ============ BUTTONS ============ */
.btn-primary {
  background: #4a7c3f; color: #fff; padding: 14px 28px;
  border-radius: 6px; font-size: 14px; font-weight: 600;
  border: none; cursor: pointer; transition: background 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-primary:hover { background: #3d6b32; }
.btn-outline {
  background: transparent; color: #1a2e0d; padding: 14px 28px;
  border-radius: 6px; font-size: 14px; font-weight: 600;
  border: 2px solid #1a2e0d; cursor: pointer; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-outline:hover { background: #1a2e0d; color: #fff; }
.btn-green-lg {
  background: #4a7c3f; color: #fff; padding: 16px 36px;
  border-radius: 6px; font-size: 16px; font-weight: 700;
  border: none; cursor: pointer; width: 100%; transition: background 0.2s;
  text-transform: uppercase;
}
.btn-green-lg:hover { background: #3d6b32; }

/* ============ SECTION SHARED ============ */
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: #4a7c3f; margin-bottom: 12px;
}
.section-center { text-align: center; margin-bottom: 44px; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px; color: #1a2e0d; margin-bottom: 10px; line-height: 1.2;
}
.section-desc { color: #666; font-size: 15px; line-height: 1.7; max-width: 600px; margin: 0 auto; }
.section-divider {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 16px;
}
.section-divider::before,
.section-divider::after {
  content: ''; width: 40px; height: 1px; background: #4a7c3f;
}
.section-divider svg { width: 20px; height: 20px; fill: #4a7c3f; }

/* ============ CTA BANNER (reusable) ============ */
.cta-banner {
  background: #f5f3ee; padding: 56px 0; text-align: center;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px; color: #1a2e0d; margin-bottom: 14px;
}
.cta-banner p { color: #666; font-size: 15px; margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.footer {
  background: #1a2e0d; color: rgba(255,255,255,0.6);
  padding: 56px 0 24px; font-size: 13px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 36px; margin-bottom: 36px;
}
.footer-simple {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 36px; margin-bottom: 36px;
}
.footer-brand { }
.footer-brand img { height: 180px; margin-bottom: 14px; }
.footer-brand .footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; color: #fff;
  margin-bottom: 12px; line-height: 1.2;
}
.footer-brand .footer-logo-text span { display: block; font-size: 24px; }
.footer-brand p { line-height: 1.8; font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-col h4 {
  color: #4a7c3f; font-size: 12px; font-weight: 700; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 1px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); transition: color 0.2s; font-size: 13px; }
.footer-col ul li a:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: all 0.2s;
}
.footer-social a:hover { background: #4a7c3f; color: #fff; }
.footer-social svg { width: 14px; height: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px; text-align: center; font-size: 12px;
}
.footer-leaf {
  position: absolute; bottom: 0; right: 40px;
  width: 60px; opacity: 0.3;
}

/* ============ FORMS SHARED ============ */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: #2d3a24; margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid #d4d4d4; border-radius: 8px;
  font-size: 14px; font-family: inherit; color: #1a1a1a;
  transition: border-color 0.2s; background: #fff;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: #4a7c3f;
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ============ CARDS ============ */
.card {
  background: #fff; border-radius: 14px; padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #eee;
}

/* ============ MOBILE MENU ============ */
.nav-links {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-links.open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-links.open a {
  font-size: 22px;
  font-weight: 600;
  color: #1a2e0d;
}
.mobile-menu-close {
  display: none;
  position: absolute;
  top: 28px; right: 28px;
  background: none; border: none;
  cursor: pointer; color: #333;
  z-index: 1001;
  padding: 8px;
}
.mobile-menu-close svg { width: 32px; height: 32px; }
.nav-links.open .mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .navbar .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .page-hero h1 { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-simple { grid-template-columns: 1fr; text-align: center; }
  .footer-brand img { margin: 0 auto 14px; }
  .footer-social { justify-content: center; }
  .section-title { font-size: 28px; }
  .btn-order { display: none; }
  .nav-right { order: 10; margin-left: auto; gap: 6px; }
  .nav-icon {
    width: 42px; height: 42px; border-radius: 50%;
    background: #f5f3ee; border: 1px solid #e8e5df;
    color: #1e2a14; transition: background 0.2s, border-color 0.2s;
  }
  .nav-icon:hover { background: #e8f5e0; border-color: #4a7c3f; }
  .mobile-menu-btn {
    order: 11;
    width: 42px; height: 42px; border-radius: 50%;
    background: #f5f3ee; border: 1px solid #e8e5df;
    display: flex; align-items: center; justify-content: center;
    margin-left: 8px; transition: background 0.2s, border-color 0.2s;
  }
  .mobile-menu-btn:hover { background: #e8f5e0; border-color: #4a7c3f; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 40px 0; }
  .page-hero h1 { font-size: 28px; }
  .container { padding: 0 16px; }
  .navbar .container { height: 70px; }
  .nav-logo img { height: 80px; margin: -10px 0; }
}
