/*
Theme Name: Bebek Cak Ji
Theme URI: https://bebekcakji.id
Author: Bebek Cak Ji Team
Author URI: https://bebekcakji.id
Description: Official WordPress theme for Bebek Cak Ji - Bebek Goreng Khas Surabaya di Bandung
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bebekcakji
Tags: food, restaurant, indonesian, one-page
*/

/* =====================================================
   BEBEK CAK JI - WordPress Theme
   Color Palette:
   - Primary Yellow: #FFD600
   - Primary Red: #E31E24
   - Dark Brown: #3D1C02
   - Cream: #FFF8E7
   - Text Dark: #1A0A00
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Lilita+One&family=Nunito:wght@400;600;700;800&family=Playfair+Display:ital,wght@1,700&display=swap');

:root {
  --yellow: #FFD600;
  --yellow-dark: #E5B800;
  --yellow-light: #FFF3B0;
  --red: #E31E24;
  --red-dark: #B71518;
  --brown: #3D1C02;
  --brown-light: #6B3A1F;
  --cream: #FFF8E7;
  --cream-dark: #F5E6C8;
  --text: #1A0A00;
  --text-light: #5C3A1E;
  --white: #FFFFFF;
  --shadow: 0 8px 32px rgba(61,28,2,0.18);
  --shadow-sm: 0 4px 16px rgba(61,28,2,0.12);
  --radius: 20px;
  --radius-lg: 32px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===================== UTILITY ===================== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: 'Lilita One', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brown);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 48px;
  font-weight: 600;
}

.badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'Lilita One', cursive;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ===================== HEADER / NAV ===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* Dark brown header — clearly visible above yellow hero */
  background: var(--brown);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(61, 28, 2, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.site-logo {
  height: 50px;
  width: auto;
  border-radius: 10px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-logo:hover {
  transform: scale(1.06);
  opacity: 0.9;
}

.site-logo:hover {
  transform: scale(1.06);
  border-color: var(--yellow);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.nav-menu a {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  /* White text on dark brown header — high contrast */
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 100px;
  transition: all 0.2s ease;
  letter-spacing: 0.2px;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: rgba(255,214,0,0.18);
  color: var(--yellow);
}

.nav-menu .nav-order a {
  background: var(--yellow);
  color: var(--brown) !important;
  font-weight: 800;
  padding: 9px 20px;
}

.nav-menu .nav-order a:hover {
  background: #ffe033;
  color: var(--brown) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,214,0,0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  /* White lines on dark header */
  background: rgba(255,255,255,0.9);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  background: var(--yellow);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  /* Header (68px) + promo banner (~52px) = 120px */
  padding-top: 120px;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: var(--cream);
  clip-path: ellipse(60% 100% at 50% 100%);
}

/* Decorative circles */
.hero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(61,28,2,0.08) 1px, transparent 0);
  background-size: 32px 32px;
}

.hero-inner {
  container: hero / inline-size;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 24px;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  animation: fadeInUp 0.8s ease both;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: 'Lilita One', cursive;
  font-size: 0.9rem;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-eyebrow::before {
  content: '🔥';
}

.hero-title {
  font-family: 'Lilita One', cursive;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--brown);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-title span {
  color: var(--red);
  display: block;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--brown-light);
  font-weight: 600;
  margin-bottom: 36px;
  max-width: 420px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-family: 'Lilita One', cursive;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(227,30,36,0.35);
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(227,30,36,0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brown);
  color: var(--yellow);
  font-family: 'Lilita One', cursive;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--brown-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: 'Lilita One', cursive;
  font-size: 2rem;
  color: var(--red);
  display: block;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--brown-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeInRight 0.8s ease 0.2s both;
}

.hero-food-img {
  width: 100%;
  max-width: 480px;
  height: auto;           /* never stretch height */
  aspect-ratio: 1;        /* keep square aspect */
  object-fit: contain;    /* show full image, no crop */
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(61,28,2,0.25);
  transform: rotate(2deg);
  transition: transform 0.4s ease;
  position: relative;
  z-index: 2;
}

.hero-food-img:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-badge-float {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Lilita One', cursive;
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 8px 24px rgba(227,30,36,0.4);
  z-index: 3;
  animation: spin-slow 8s linear infinite;
}

.hero-badge-float span {
  font-size: 1.5rem;
  display: block;
}

/* ===================== ABOUT ===================== */
.about {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-logo {
  width: 280px;
  height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(61,28,2,0.2));
  animation: float 4s ease-in-out infinite;
}

.about-content .badge {
  margin-bottom: 16px;
}

.about-content h2 {
  font-family: 'Lilita One', cursive;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--brown);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-content p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
  font-weight: 600;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

.about-feature:hover {
  transform: translateY(-4px);
}

.about-feature-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
}

.about-feature h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--brown);
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.4;
  font-weight: 600;
}

/* ===================== MENU / PRODUK ===================== */
.menu {
  padding: 100px 0;
  background: var(--brown);
  position: relative;
  overflow: hidden;
}

.menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 0%);
}

.menu::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--yellow-light);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.menu .section-title {
  color: var(--yellow);
}

.menu .section-subtitle {
  color: var(--cream-dark);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

.menu-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.menu-card.featured {
  grid-row: span 1;
  transform: scale(1.03);
}

.menu-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.menu-card-img {
  width: 100%;
  height: 200px;
  object-fit: contain;    /* show full plate, not cropped */
  background: #fff;       /* white bg matches the food photo bg */
  padding: 8px;
  transition: transform 0.4s ease;
}

.menu-card:hover .menu-card-img {
  transform: scale(1.05);
}

.menu-card-img-placeholder {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
}

.menu-card-body {
  padding: 20px;
}

.menu-card-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--brown);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-card.featured .menu-card-tag {
  background: var(--red);
  color: var(--white);
}

.menu-card-name {
  font-family: 'Lilita One', cursive;
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 8px;
}

.menu-card-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 16px;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-card-price {
  font-family: 'Lilita One', cursive;
  font-size: 1.2rem;
  color: var(--red);
}

.menu-card-order {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.menu-card-order:hover {
  background: var(--red-dark);
  transform: scale(1.05);
}

/* ===================== HOW TO ORDER ===================== */
.how-to-order {
  padding: 100px 0;
  background: var(--yellow-light);
  position: relative;
}

.order-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.order-steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--red));
  z-index: 0;
}

.order-step {
  text-align: center;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.5s ease both;
}

.order-step:nth-child(2) { animation-delay: 0.1s; }
.order-step:nth-child(3) { animation-delay: 0.2s; }
.order-step:nth-child(4) { animation-delay: 0.3s; }

.order-step-icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--yellow);
  border: 4px solid var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 28px rgba(61,28,2,0.18);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* SVG illustration inside the circle */
.step-svg {
  width: 72px;
  height: 72px;
  display: block;
  flex-shrink: 0;
}

.order-step:hover .order-step-icon {
  border-color: var(--red);
  transform: scale(1.08);
  box-shadow: 0 12px 36px rgba(61,28,2,0.25);
}

.order-step:hover .step-svg {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.order-step-number {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 30px;
  height: 30px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-family: 'Lilita One', cursive;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 2;
}

.order-step h3 {
  font-family: 'Lilita One', cursive;
  font-size: 1.1rem;
  color: var(--brown);
  margin-bottom: 8px;
}

.order-step p {
  font-size: 0.88rem;
  color: var(--text-light);
  font-weight: 600;
  line-height: 1.5;
}

/* ===================== ORDER PLATFORMS ===================== */
.order-platforms {
  margin-top: 60px;
  text-align: center;
}

.order-platforms h3 {
  font-family: 'Lilita One', cursive;
  font-size: 1.5rem;
  color: var(--brown);
  margin-bottom: 24px;
}

.platforms-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.platform-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.platform-btn.gofood {
  background: #EE3024;
  color: var(--white);
}

.platform-btn.grabfood {
  background: #00B14F;
  color: var(--white);
}

.platform-btn.shopee {
  background: #EE4D2D;
  color: var(--white);
}

.platform-btn.whatsapp {
  background: #25D366;
  color: var(--white);
}

.platform-btn-icon {
  font-size: 1.5rem;
}

/* ===================== TESTIMONIAL ===================== */
.testimonials {
  padding: 100px 0;
  background: var(--cream);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.3s ease;
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--yellow);
  line-height: 1;
  font-style: italic;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.testi-stars {
  color: var(--yellow-dark);
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 600;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brown);
  font-family: 'Lilita One', cursive;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 800;
  color: var(--brown);
  font-size: 0.95rem;
}

.testi-source {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ===================== CONTACT / FOOTER ===================== */
.contact {
  padding: 80px 0 0;
  background: var(--brown);
  color: var(--cream);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.contact-brand img {
  height: 80px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.contact-brand p {
  font-size: 0.95rem;
  color: var(--cream-dark);
  line-height: 1.7;
  font-weight: 600;
  max-width: 280px;
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-btn:hover {
  background: var(--yellow);
  color: var(--brown);
  transform: scale(1.1);
}

.contact-col h4 {
  font-family: 'Lilita One', cursive;
  font-size: 1.1rem;
  color: var(--yellow);
  margin-bottom: 20px;
}

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

.contact-col ul li {
  margin-bottom: 10px;
}

.contact-col ul li a {
  color: var(--cream-dark);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-col ul li a:hover {
  color: var(--yellow);
}

.contact-col .info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--cream-dark);
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-col .info-item .icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,248,231,0.6);
  font-weight: 600;
}

.footer-halal {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lilita One', cursive;
  font-size: 0.9rem;
  color: var(--yellow);
}

/* ===================== PROMO BANNER ===================== */
.promo-banner {
  background: var(--red);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}

.promo-ticker {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
}

.promo-ticker span {
  font-family: 'Lilita One', cursive;
  font-size: 0.95rem;
  color: var(--white);
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.promo-ticker span::after {
  content: '🦆';
}

/* ===================== FLOATING WA BUTTON ===================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  animation: pulse-wa 2s ease-in-out infinite;
}

.wa-float a {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: var(--white);
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 100px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  transition: all 0.3s ease;
}

.wa-float a:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(37,211,102,0.6);
}

.wa-float-icon {
  font-size: 1.4rem;
}

/* ===================== BACK TO TOP ===================== */
#back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9998;
  width: 44px;
  height: 44px;
  background: var(--yellow);
  color: var(--brown);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

#back-to-top.visible {
  display: flex;
}

#back-to-top:hover {
  background: var(--brown);
  color: var(--yellow);
  transform: translateY(-4px);
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-16px) rotate(2deg); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes pulse-wa {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ===================== MENU TABS ===================== */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}

.menu-tab {
  background: rgba(255,255,255,0.15);
  color: var(--yellow);
  border: 2px solid rgba(255,214,0,0.4);
  font-family: 'Lilita One', cursive;
  font-size: 0.88rem;
  padding: 8px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
}

.menu-tab:hover,
.menu-tab.active {
  background: var(--yellow);
  color: var(--brown);
  border-color: var(--yellow);
}

.menu-category {
  display: none;
  position: relative;
  z-index: 2;
}

.menu-category.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.menu-card-img-placeholder.duck    { background: linear-gradient(135deg, #FFD600, #E5B800); }
.menu-card-img-placeholder.chicken { background: linear-gradient(135deg, #FFA500, #E8890B); }
.menu-card-img-placeholder.side    { background: linear-gradient(135deg, #7DC77D, #4A9A4A); }
.menu-card-img-placeholder.drink   { background: linear-gradient(135deg, #87CEEB, #4A9FD0); }
.menu-card-img-placeholder.sambal  { background: linear-gradient(135deg, #FF4500, #CC2200); }
.menu-card-img-placeholder.tamarind { background: linear-gradient(135deg, #8B4513, #D2691E); }
.menu-card-img-placeholder.tempe   { background: linear-gradient(135deg, #C49A6C, #8B6914); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-category.active { grid-template-columns: repeat(2, 1fr); }
  .order-steps { grid-template-columns: repeat(2, 1fr); }
  .order-steps::before { display: none; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    /* Dark brown dropdown — readable */
    background: var(--brown);
    border-top: 2px solid rgba(255,214,0,0.3);
    flex-direction: column;
    padding: 16px 20px 20px;
    gap: 4px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  }
  
  .nav-menu.open { display: flex; }
  .nav-menu a {
    display: block;
    text-align: center;
    padding: 12px 20px;
    color: rgba(255,255,255,0.9);
    border-radius: 10px;
  }
  .nav-menu a:hover {
    background: rgba(255,214,0,0.15);
    color: var(--yellow);
  }
  .nav-menu .nav-order a {
    background: var(--yellow);
    color: var(--brown) !important;
    margin-top: 8px;
  }
  
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 20px 60px;
    gap: 0;
  }
  
  .hero-image {
    order: -1;
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
  }
  
  /* Natural image sizing on mobile — no stretch */
  .hero-food-img {
    max-width: min(320px, 85vw);
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
    transform: none;
  }
  
  .hero-badge-float {
    top: -10px;
    right: calc(50% - 160px);
    width: 64px;
    height: 64px;
    font-size: 0.55rem;
  }
  
  .hero-cta { justify-content: center; flex-wrap: wrap; gap: 10px; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin: 0 auto 28px; max-width: 380px; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  
  .about-inner { grid-template-columns: 1fr; }
  .about-logo-wrap { order: -1; }
  .about-logo { width: 180px; height: 180px; }
  .about-features { grid-template-columns: 1fr; }
  
  .menu-tabs { gap: 8px; }
  .menu-tab { font-size: 0.8rem; padding: 7px 14px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-category.active { grid-template-columns: 1fr; }
  .menu-card.featured { transform: none; }
  
  .order-steps { grid-template-columns: 1fr 1fr; }
  
  .testi-grid { grid-template-columns: 1fr; }
  
  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
  
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .order-steps { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .hero-stat-number { font-size: 1.5rem; }
  .platforms-grid { flex-direction: column; align-items: center; }
  .platform-btn { width: 100%; max-width: 280px; justify-content: center; }

  /* Ensure hero image never stretches on small phones */
  .hero-food-img {
    max-width: min(280px, 80vw);
    aspect-ratio: 1;
    object-fit: contain;
  }

  /* Hero title scale */
  .hero-title { font-size: 2rem; }

  /* Menu tabs scroll on small screen */
  .menu-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .menu-tab { white-space: nowrap; flex-shrink: 0; }

  /* Menu cards full width */
  .menu-category.active { grid-template-columns: 1fr; }

  /* About logo smaller */
  .about-logo { width: 150px; height: 150px; }

  /* News grid 1 col */
  .news-grid { grid-template-columns: 1fr; }
}

/* ===================== FOOTER LOGO ===================== */
.footer-logo {
  width: 110px !important;
  height: 110px !important;
  min-width: 110px;
  min-height: 110px;
  max-width: 110px;
  max-height: 110px;
  border-radius: 16px !important;
  /* contain shows full image including yellow bg, no cropping */
  object-fit: contain !important;
  object-position: center center !important;
  margin-bottom: 16px;
  display: block !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  /* Yellow background as fallback so it never shows white */
  background-color: #FFD600 !important;
  flex-shrink: 0;
}

/* ===================== SOCIAL BTN TEXT ===================== */
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.social-btn:hover { background: var(--yellow); color: var(--brown); }

/* ===================== NEWS SECTION ===================== */
.news-section {
  background: #fff;
  padding: 96px 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(61,28,2,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(61,28,2,0.14);
}

.news-card-img-link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.news-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.news-card:hover .news-card-img { transform: scale(1.05); }

.news-card-img-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FFD600 0%, #E5A800 100%);
}

.news-card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.news-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-card-date {
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 6px;
  display: block;
}
.news-card-title {
  font-family: 'Lilita One', cursive;
  font-size: 1rem;
  color: var(--brown);
  margin: 0 0 8px;
  line-height: 1.3;
}
.news-card-title a {
  color: inherit;
  text-decoration: none;
}
.news-card-title a:hover { color: var(--red); }
.news-card-excerpt {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
  flex: 1;
  margin-bottom: 14px;
}
.news-card-read {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.news-card-read:hover { color: var(--brown); }
.news-card-read--ph { opacity: 0.4; cursor: default; }

.news-cta {
  text-align: center;
  margin-top: 40px;
}
.news-card--placeholder { opacity: 0.7; }

/* ===================== SINGLE POST ===================== */
.single-post-wrap {
  background: #fff;
  padding: 60px 0 80px;
}
.breadcrumb {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--red); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

.single-article { max-width: 780px; margin: 0 auto; }

.single-header { margin-bottom: 28px; }
.single-cats { margin-bottom: 12px; display: flex; gap: 8px; flex-wrap: wrap; }
.single-title {
  font-family: 'Lilita One', cursive;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--brown);
  line-height: 1.2;
  margin: 0 0 12px;
}
.single-meta { font-size: 0.82rem; color: #888; }

.single-thumb { margin-bottom: 36px; }
.single-thumb img {
  width: 100%;
  border-radius: 16px;
  max-height: 480px;
  object-fit: cover;
}

.single-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}
.single-content h2 { font-family: 'Lilita One', cursive; color: var(--brown); margin: 32px 0 12px; font-size: 1.4rem; }
.single-content h3 { font-family: 'Lilita One', cursive; color: var(--brown); margin: 24px 0 10px; font-size: 1.15rem; }
.single-content p  { margin-bottom: 18px; }
.single-content img { max-width: 100%; border-radius: 12px; margin: 16px 0; }
.single-content a  { color: var(--red); }
.single-content ul, .single-content ol { padding-left: 24px; margin-bottom: 18px; }
.single-content li { margin-bottom: 6px; }
.single-content blockquote {
  border-left: 4px solid var(--yellow);
  padding: 12px 20px;
  background: #fffbe6;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-style: italic;
  color: #555;
}

.single-tags { margin-top: 32px; display: flex; gap: 8px; flex-wrap: wrap; }
.single-tag {
  background: #f5f5f5;
  color: #555;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s;
}
.single-tag:hover { background: var(--yellow); color: var(--brown); }

.single-share {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #888;
}
.share-btn {
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}
.share-btn:hover { opacity: 0.85; }
.share-wa { background: #25D366; color: #fff; }
.share-fb { background: #1877F2; color: #fff; }
.share-tw { background: #000; color: #fff; }

.single-cta-banner {
  max-width: 780px;
  margin: 48px auto 0;
  background: linear-gradient(135deg, var(--brown) 0%, #5c2c00 100%);
  border-radius: 20px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.single-cta-content h3 {
  font-family: 'Lilita One', cursive;
  color: var(--yellow);
  font-size: 1.3rem;
  margin: 0 0 6px;
}
.single-cta-content p { color: #ddd; font-size: 0.88rem; margin: 0; }
.single-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.related-posts { max-width: 780px; margin: 56px auto 0; }
.related-title {
  font-family: 'Lilita One', cursive;
  font-size: 1.3rem;
  color: var(--brown);
  margin-bottom: 20px;
}
.related-posts .news-grid { grid-template-columns: repeat(3, 1fr); }

/* ===================== ARCHIVE ===================== */
.archive-wrap {
  background: #fff;
  padding: 60px 0 80px;
}
.archive-header {
  text-align: center;
  margin-bottom: 48px;
}
.archive-title {
  font-family: 'Lilita One', cursive;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--brown);
  margin: 8px 0 12px;
}
.archive-desc { color: #666; font-size: 1rem; }
.archive-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.archive-pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.archive-pagination .page-numbers {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: #f5f5f5;
  color: var(--brown);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.archive-pagination .page-numbers.current,
.archive-pagination .page-numbers:hover { background: var(--yellow); color: var(--brown); }
.archive-pagination .prev, .archive-pagination .next { width: auto; padding: 0 16px; }

.no-posts { text-align: center; padding: 60px 0; color: #888; }
.no-posts .btn-primary { margin-top: 20px; display: inline-block; }

/* ===================== RESPONSIVE NEWS ===================== */
@media (max-width: 1200px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .news-grid { grid-template-columns: 1fr; }
  .single-cta-banner { flex-direction: column; text-align: center; }
  .single-cta-btns { justify-content: center; }
  .related-posts .news-grid { grid-template-columns: 1fr; }
}
