/* ============================================
   STUFFED CHICKEN PEOPLE — Global Stylesheet
   ============================================ */

:root {
  --saffron: #F4C430;
  --olive: #3D5A2C;
  --cream: #FFFBF0;
  --spice: #E85D3D;
  --ink: #2A2A1F;
  --olive-light: #6B8E4E;
  --cream-alt: #FBF3DC;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Work Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

/* ============================================
   ANNOUNCEMENT BANNER
   ============================================ */
.announcement-bar {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 10px 6%;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}

.announcement-bar a {
  color: var(--saffron);
  text-decoration: underline;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6%;
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
}

.nav-logo span { color: var(--spice); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--ink);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--spice); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 15px 30px;
  border-radius: 100px;
  text-decoration: none;
  border: 3px solid var(--ink);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.btn:hover { transform: translateY(-3px) rotate(-1deg); }

.btn-primary { background: var(--spice); color: var(--cream); }
.btn-secondary { background: var(--cream); color: var(--ink); }
.btn-saffron { background: var(--saffron); color: var(--ink); }
.btn-olive { background: var(--olive); color: var(--cream); }

/* ============================================
   SECTION UTILITIES
   ============================================ */
section { padding: 72px 6%; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.eyebrow {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: var(--spice);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.section-head { margin-bottom: 40px; }

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 10px;
}

.section-head p {
  font-size: 1rem;
  max-width: 600px;
}

.alt-bg {
  background: var(--cream-alt);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.olive-bg {
  background: var(--olive);
  color: var(--cream);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: var(--saffron);
  padding: 80px 6% 100px;
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
}

.hero-content {
  max-width: 640px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero h1 .outline {
  -webkit-text-stroke: 2px var(--ink);
  color: var(--cream);
}

.hero p {
  font-size: 1.15rem;
  max-width: 480px;
  margin-bottom: 32px;
  font-weight: 500;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.stamp {
  position: absolute;
  top: 40px;
  right: 6%;
  width: 140px;
  height: 140px;
  border: 4px solid var(--spice);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(12deg);
  color: var(--spice);
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.3;
  background: var(--cream);
  z-index: 3;
}

.stamp::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1.5px dashed var(--spice);
  border-radius: 50%;
}

/* ============================================
   STORY SECTION
   ============================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.story-grid h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--olive);
  margin-bottom: 20px;
}

.story-grid p {
  font-size: 1.02rem;
  margin-bottom: 18px;
}

.story-grid p:last-child { margin-bottom: 0; }

.story-card {
  background: var(--olive);
  border-radius: 20px;
  padding: 36px;
  color: var(--cream);
  border: 3px solid var(--ink);
}

.story-card h3 {
  font-size: 1.5rem;
  color: var(--saffron);
  margin-bottom: 20px;
}

.timeline-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--saffron);
  margin-top: 6px;
  flex-shrink: 0;
}

.timeline-item p { font-size: 0.95rem; margin: 0; }

/* ============================================
   HALAL BANNER
   ============================================ */
.halal-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.halal-badge {
  width: 120px;
  height: 120px;
  background: var(--saffron);
  border-radius: 16px;
  border: 3px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transform: rotate(-4deg);
}

.halal-badge span {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.3;
}

.halal-grid h2 {
  color: var(--saffron);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 10px;
}

.halal-grid p { font-size: 1.05rem; max-width: 600px; }

/* ============================================
   WHAT WE CATER
   ============================================ */
.catering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.catering-card {
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 28px 22px;
  background: var(--cream);
}

.catering-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.catering-card h3 {
  font-size: 1.2rem;
  color: var(--olive);
  margin-bottom: 8px;
}

.catering-card p { font-size: 0.92rem; }

.callout-strip {
  background: var(--spice);
  color: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 100px;
  padding: 18px 32px;
  text-align: center;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

/* ============================================
   FLAVOR GRID (Homepage Teaser + Menu Page)
   ============================================ */
.flavor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.flavor-card {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: 18px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: all 0.15s ease;
}

.flavor-card:hover {
  background: var(--saffron);
  transform: translateY(-4px);
}

.flavor-card p {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 0.82rem;
  margin-top: 6px;
  color: var(--ink);
  opacity: 0.8;
}

.badge {
  display: inline-block;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  margin-top: 6px;
}

.badge.halal { background: var(--spice); color: var(--cream); }
.badge.turkey { background: var(--olive-light); color: var(--cream); }

/* ============================================
   PACKAGES
   ============================================ */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.package-card {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.package-card.featured {
  background: var(--olive);
  color: var(--cream);
}

.package-name {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.package-price {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--spice);
  margin-bottom: 10px;
}

.package-card.featured .package-price { color: var(--saffron); }

.package-price span {
  font-size: 0.85rem;
  font-weight: 500;
}

.package-card p { font-size: 0.9rem; }

.package-min {
  margin-top: auto;
  padding-top: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.65;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   SIDES GRID
   ============================================ */
.sides-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.sides-columns h3 {
  font-size: 1.1rem;
  color: var(--olive);
  margin-bottom: 12px;
}

.sides-columns ul { list-style: none; font-size: 0.93rem; }

.sides-columns li {
  padding: 7px 0;
  border-bottom: 1px dashed rgba(42,42,31,0.2);
}

.sides-columns li:last-child { border-bottom: none; }

/* ============================================
   LEGEND
   ============================================ */
.legend {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 100px;
  padding: 5px 14px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot.halal { background: var(--spice); }
.dot.turkey { background: var(--olive-light); }
.dot.veg { background: var(--olive); }

/* ============================================
   ORDER FORM
   ============================================ */
.order-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}

.order-form-card {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 32px;
}

.order-form-card h2 {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.order-form-card > p {
  font-size: 0.93rem;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}

.form-row .form-group { margin-bottom: 0; }

label {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
}

input, select, textarea {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.93rem;
  padding: 11px 13px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}

input:focus, select:focus, textarea:focus {
  outline: 3px solid var(--saffron);
  outline-offset: 1px;
}

textarea { resize: vertical; min-height: 90px; }

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  padding: 14px;
  background: #fff;
  max-height: 200px;
  overflow-y: auto;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
}

.checkbox-item input { width: auto; padding: 0; }

.submit-btn {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 15px 30px;
  border-radius: 100px;
  border: 3px solid var(--ink);
  background: var(--spice);
  color: var(--cream);
  cursor: pointer;
  transition: transform 0.15s ease;
  width: 100%;
  margin-top: 4px;
}

.submit-btn:hover { transform: translateY(-3px); }

.form-note {
  font-size: 0.78rem;
  opacity: 0.65;
  margin-top: 10px;
  text-align: center;
}

/* ============================================
   EZCATER CARD
   ============================================ */
.ezcater-card {
  background: var(--olive);
  color: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 32px;
}

.ezcater-card h2 {
  color: var(--saffron);
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.ezcater-card p { font-size: 0.93rem; margin-bottom: 16px; }

.ezcater-perks { list-style: none; margin: 16px 0 24px; }

.ezcater-perks li {
  font-size: 0.9rem;
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ezcater-perks li::before {
  content: '✓';
  color: var(--saffron);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 780px; }

.faq-item {
  border: 3px solid var(--ink);
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-question {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--cream);
  transition: background 0.15s;
}

.faq-question:hover { background: var(--saffron); }

.faq-question .icon { font-size: 1.2rem; flex-shrink: 0; }

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  font-size: 0.95rem;
  background: #fff;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 16px 24px 20px;
}

.faq-item.open .faq-question { background: var(--saffron); }

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
  background: var(--saffron);
  padding: 60px 6% 70px;
  border-bottom: 3px solid var(--ink);
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin-bottom: 12px;
}

.page-header p {
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 48px 6% 28px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-logo {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-logo span { color: var(--saffron); }

.footer-tagline {
  font-size: 0.85rem;
  opacity: 0.65;
  margin-top: 6px;
}

.footer-col h4 {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 12px;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 8px; }

.footer-col a {
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-col a:hover { opacity: 1; }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  font-size: 0.8rem;
  opacity: 0.5;
  display: flex;
  justify-content: space-between;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .story-grid,
  .order-grid { grid-template-columns: 1fr; gap: 28px; }

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

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

  .footer-inner { grid-template-columns: 1fr; gap: 24px; }

  .footer-bottom { flex-direction: column; gap: 6px; }

  .stamp { width: 100px; height: 100px; font-size: 0.65rem; top: 20px; }
}

@media (max-width: 600px) {
  .nav-links { gap: 16px; font-size: 0.85rem; }
  .form-row, .checkbox-grid { grid-template-columns: 1fr; }
  .hero { padding: 50px 6% 70px; }
}

@media (prefers-reduced-motion: reduce) {
  .btn, .flavor-card, .submit-btn { transition: none; }
  .btn:hover, .flavor-card:hover, .submit-btn:hover { transform: none; }
}

a:focus-visible, .btn:focus-visible, .submit-btn:focus-visible {
  outline: 3px solid var(--spice);
  outline-offset: 3px;
}
