/* =========================================================
   BABA JON PIZZA — style.css
   Single stylesheet for the entire site
   ========================================================= */

/* ---------- 1. CSS VARIABLES ---------- */
:root {
  --primary: #C8102E;
  --primary-light: #E63946;
  --primary-dark: #8B0E22;
  --accent: #1A1A1A;
  --accent-light: #2A2A2A;
  --gold: #F5C518;
  --gold-light: #FFD95A;
  --cream: #FFF8F0;
  --off-white: #FAF6EE;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-medium: #4A4A4A;
  --text-light: #888888;
  --border: #EAE3D6;
  --shadow: 0 4px 15px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.15);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.20);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

/* ---------- 2. RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', 'Oswald', Impact, sans-serif;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--text-dark);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
p  { margin: 0 0 1rem; color: var(--text-medium); }
a  { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul  { padding-left: 1.2rem; }
section { padding: 4rem 0; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ---------- 3. BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-secondary:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-cta {
  background: var(--gold);
  color: var(--accent);
  border-color: var(--gold);
}
.btn-cta:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

/* ---------- 4. ANIMATIONS ---------- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px);} to { opacity: 1; transform: translateY(0);} }
@keyframes fadeIn   { from { opacity: 0;} to { opacity: 1;} }
@keyframes hvFloat  { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-15px);} }
@keyframes hvFloatCentered { 0%,100% { transform: translateX(-50%) translateY(0);} 50% { transform: translateX(-50%) translateY(-15px);} }
@keyframes hvSpin   { 0% { transform: rotate(0deg);} 100% { transform: rotate(360deg);} }
@keyframes hvSparkle{ 0%,100% { opacity: 0; transform: scale(0);} 50% { opacity: 1; transform: scale(1);} }
@keyframes pulseCentered { 0%,100% { transform: translate(-50%,-50%) scale(1);} 50% { transform: translate(-50%,-50%) scale(1.06);} }
@keyframes floatItem{ 0%,100% { transform: translateY(0) rotate(0deg);} 50% { transform: translateY(-20px) rotate(5deg);} }
@keyframes spinRing { 0% { transform: translate(-50%,-50%) rotate(0deg);} 100% { transform: translate(-50%,-50%) rotate(360deg);} }
@keyframes cheesePull { 0%,100% { transform: scaleY(1);} 50% { transform: scaleY(1.15);} }

/* ---------- 5. NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}
.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo-section {
  display: flex; align-items: center; gap: 0.5rem;
  text-decoration: none;
}
.logo-section svg { height: 44px; width: auto; }
.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--accent);
  line-height: 1;
}
.logo-text .logo-accent { color: var(--primary); }
.nav-menu {
  display: flex; gap: 1.8rem;
  list-style: none;
  margin: 0; padding: 0;
  align-items: center;
}
.nav-menu li { list-style: none; }
.nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute;
  left: 0; bottom: -6px;
  height: 2px; width: 0;
  background: var(--primary);
  transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--primary); }
.cta-button {
  background: var(--primary);
  color: var(--white) !important;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
}
.cta-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.cta-button::after { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  width: 26px; height: 3px;
  background: var(--accent);
  border-radius: 3px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- 6. PAGE HEADER (inner pages) ---------- */
.page-header {
  margin-top: 80px;
  padding: 5rem 1.5rem 4rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -60%; right: -5%;
  width: 350px; height: 350px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}
.page-header h1 { color: var(--white); margin: 0 0 0.5rem; position: relative; z-index: 2; }
.page-header .subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.95);
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ---------- 7. HERO (homepage) ---------- */
.hero {
  margin-top: 80px;
  padding: 5rem 1.5rem 4rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,16,46,0.10), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-text { animation: fadeInUp 1s ease-out; }
.hero-tagline {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.hero-title { color: var(--accent); margin-bottom: 1rem; }
.hero-title .accent { color: var(--primary); }
.hero-description {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  height: 480px;
  display: flex; align-items: center; justify-content: center;
  animation: fadeIn 1.2s ease-out;
}

/* Pizza orbit animation */
.orbit-container {
  position: relative;
  width: 380px; height: 380px;
}
.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 170px; height: 170px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--white);
  box-shadow: 0 15px 50px rgba(200,16,46,0.40);
  z-index: 3;
  animation: pulseCentered 3s ease-in-out infinite;
}
.orbit-center .center-text-large {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem; line-height: 1;
}
.orbit-center .center-text-small {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-top: 0.4rem;
  opacity: 0.95;
}
.orbit-ring {
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(200,16,46,0.30);
  border-radius: 50%;
  animation: hvSpin 25s linear infinite;
}
.food-emoji {
  position: absolute;
  font-size: 2.6rem;
  background: var(--white);
  width: 70px; height: 70px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  animation: hvFloat 3s ease-in-out infinite;
  z-index: 2;
}
.emoji-1 { top: 0; left: 50%; animation: hvFloatCentered 3s ease-in-out infinite; animation-delay: 0s; }
.emoji-2 { top: 25%; right: -10px; animation-delay: 0.4s; }
.emoji-3 { bottom: 25%; right: -10px; animation-delay: 0.8s; }
.emoji-4 { bottom: 0; left: 50%; animation: hvFloatCentered 3s ease-in-out infinite; animation-delay: 1.2s; }
.emoji-5 { bottom: 25%; left: -10px; animation-delay: 1.6s; }
.emoji-6 { top: 25%; left: -10px; animation-delay: 2s; }
.sparkle {
  position: absolute;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  animation: hvSparkle 2s ease-in-out infinite;
}
.sparkle:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 75%; right: 12%; animation-delay: 0.7s; }
.sparkle:nth-child(3) { bottom: 8%; left: 30%; animation-delay: 1.4s; }

/* ---------- 8. STATS SECTION ---------- */
.stats-section {
  background: var(--accent);
  color: var(--white);
  padding: 3rem 1.5rem;
}
.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-card { padding: 0.5rem; }
.stat-icon {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  display: block;
}
.stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  display: block;
}

/* ---------- 9. CONTENT SECTIONS ---------- */
.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  text-align: center;
  color: var(--text-medium);
  max-width: 680px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}
.section-tagline {
  display: block;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  color: var(--primary);
  letter-spacing: 0.18em;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

/* Feature / menu / value / contact / blog cards */
.features-grid,
.menu-grid,
.values-grid,
.contact-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card,
.menu-card,
.value-card,
.contact-card,
.blog-card {
  background: var(--white);
  padding: 2rem 1.6rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 3px solid transparent;
  text-align: left;
}
.feature-card:hover,
.menu-card:hover,
.value-card:hover,
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--primary);
}
.feature-icon,
.menu-icon,
.value-icon,
.card-icon {
  font-size: 2.4rem;
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(200,16,46,0.10), rgba(200,16,46,0.04));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.feature-card h3,
.menu-card h3,
.value-card h3,
.blog-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--accent);
}
.feature-card p,
.menu-card p,
.value-card p,
.blog-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

/* ---------- 10. FAQ ACCORDION ---------- */
.faq-section {
  background: var(--off-white);
  padding: 5rem 1.5rem;
}
.faq-container {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}
button.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: 0;
  padding: 1.3rem 1.5rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--accent);
  text-align: left;
  transition: var(--transition);
}
button.faq-question:hover { background: var(--cream); }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; line-height: 1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
button.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 1.5rem 1.4rem;
  color: var(--text-medium);
  font-size: 0.98rem;
  line-height: 1.7;
}
.faq-answer[hidden] { display: none; }

/* ---------- 11. CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 4rem 1.5rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40px; left: -40px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -30px;
  width: 240px; height: 240px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}
.cta-content {
  max-width: 740px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.cta-banner p  { color: rgba(255,255,255,0.95); font-size: 1.1rem; margin-bottom: 1.6rem; }
.cta-banner .btn-cta { background: var(--gold); color: var(--accent); border-color: var(--gold); }
.cta-banner .btn-secondary { color: var(--white); border-color: var(--white); }
.cta-banner .btn-secondary:hover { background: var(--white); color: var(--primary); }

/* ---------- 12. REVIEWS / TESTIMONIALS ---------- */
.reviews-section { background: var(--cream); padding: 5rem 1.5rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.review-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.8rem; letter-spacing: 0.08em; }
.review-text { font-style: italic; color: var(--text-medium); margin-bottom: 1rem; }
.review-author { font-weight: 600; color: var(--accent); font-size: 0.95rem; }

/* ---------- 13. FOOTER ---------- */
.footer {
  background: var(--accent);
  color: rgba(255,255,255,0.85);
  padding: 4rem 1.5rem 1.5rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-column h4 {
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
}
.footer-column p,
.footer-column a {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
}
.footer-column a:hover { color: var(--gold); }
.footer-column ul { list-style: none; padding: 0; margin: 0; }
.footer-column li { margin-bottom: 0.5rem; }
.footer-brand .logo-text { color: var(--white); font-size: 1.6rem; }
.footer-brand .logo-text .logo-accent { color: var(--primary-light); }
.footer-brand p { font-size: 0.95rem; line-height: 1.7; }
.footer-contact-line {
  display: flex; align-items: flex-start; gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}
.footer-contact-line span:first-child { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* ---------- 14. PAGE-SPECIFIC ---------- */

/* Menu page (Coming Soon) */
.menu-coming-soon {
  text-align: center;
  padding: 4rem 1.5rem;
  max-width: 820px;
  margin: 0 auto;
}
.menu-coming-soon .badge {
  display: inline-block;
  background: var(--gold);
  color: var(--accent);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.menu-coming-soon h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.menu-coming-soon p { font-size: 1.1rem; margin-bottom: 2rem; }
.menu-categories-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin: 2.5rem 0;
}
.menu-category-tile {
  background: var(--white);
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.menu-category-tile .icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
  display: block;
}
.menu-category-tile h3 {
  font-size: 1.05rem;
  margin: 0 0 0.3rem;
  color: var(--accent);
}
.menu-category-tile p { font-size: 0.85rem; color: var(--text-light); margin: 0; }
.menu-call-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 2rem;
}
.menu-call-banner h3 { color: var(--white); }
.menu-call-banner p { color: rgba(255,255,255,0.95); }
.menu-call-banner a { color: var(--gold); font-weight: 700; }

/* About page */
.about-content {
  max-width: 920px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.about-content p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.4rem; }
.about-content h2 { margin-top: 2.5rem; }
.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}
.about-highlight {
  background: var(--white);
  padding: 1.6rem 1.2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--primary);
}
.about-highlight .icon { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.about-highlight h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.15rem; margin: 0 0 0.3rem; color: var(--primary); }
.about-highlight p { margin: 0; font-size: 0.92rem; color: var(--text-medium); }

/* Contact page */
.contact-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
}
.contact-grid { grid-template-columns: repeat(3, 1fr); }
.contact-card { text-align: center; padding: 2.2rem 1.5rem; }
.contact-card .card-icon { margin: 0 auto 1rem; }
.contact-card h3 { font-size: 1.2rem; margin-bottom: 0.8rem; }
.contact-card p,
.contact-card a {
  font-size: 1.02rem;
  color: var(--text-medium);
  margin: 0.2rem 0;
}
.contact-card a { color: var(--primary); font-weight: 600; }
.map-section {
  max-width: 1200px;
  margin: 2rem auto 5rem;
  padding: 0 1.5rem;
}
.map-section iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* Blog list */
.blog-list-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
}
.blog-card .blog-image {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  border-radius: var(--radius) var(--radius) 0 0;
  margin: -2rem -1.6rem 1.2rem;
}
.blog-card .blog-tag {
  display: inline-block;
  background: rgba(200,16,46,0.10);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.blog-card h3 a { color: var(--accent); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card .read-more {
  margin-top: auto;
  padding-top: 0.8rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
  display: inline-block;
}
.blog-card .read-more::after {
  content: ' →';
  transition: transform 0.3s ease;
  display: inline-block;
}
.blog-card .read-more:hover::after { transform: translateX(4px); }

/* Blog post (single) */
.post-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
}
.post-article {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.post-article h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--accent);
  margin-bottom: 1rem;
}
.post-article h2 { font-size: 1.5rem; color: var(--primary); margin-top: 2rem; }
.post-article p { font-size: 1.02rem; line-height: 1.8; }
.post-article ul, .post-article ol { padding-left: 1.5rem; line-height: 1.8; color: var(--text-medium); }
.post-article li { margin-bottom: 0.4rem; }
.post-tag {
  display: inline-block;
  background: rgba(200,16,46,0.10);
  color: var(--primary);
  padding: 0.3rem 0.85rem;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.post-cta {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(200,16,46,0.06), rgba(200,16,46,0.02));
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
}
.post-cta p { margin-bottom: 0.8rem; font-size: 1.05rem; }
.post-sidebar {
  display: flex; flex-direction: column; gap: 1.5rem;
}
.sidebar-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.sidebar-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--primary);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  margin: 0 0 1rem;
}
.sidebar-card ul { list-style: none; padding: 0; margin: 0; }
.sidebar-card li { margin-bottom: 0.6rem; }
.sidebar-card a { color: var(--accent); font-size: 0.95rem; font-weight: 500; }
.sidebar-card a:hover { color: var(--primary); }
.sidebar-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}
.sidebar-cta h4 { color: var(--white); }
.sidebar-cta p { color: rgba(255,255,255,0.92); font-size: 0.95rem; margin-bottom: 1rem; }
.sidebar-cta a { color: var(--gold); font-weight: 700; }

/* 404 page */
.error-wrap {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
  display: flex; align-items: center; justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
}
.error-content { max-width: 620px; }
.error-content .big-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(6rem, 18vw, 12rem);
  color: var(--primary);
  line-height: 1;
  margin: 0;
}
.error-content h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 0.5rem 0 1rem; }
.error-content p { font-size: 1.05rem; margin-bottom: 1.5rem; }
.error-buttons { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

/* ---------- 15. UTILITIES ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.hidden-mobile { display: initial; }

/* ---------- 16. RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-description { margin-left: auto; margin-right: auto; }
  .hero-visual { height: 380px; }
  .orbit-container { width: 320px; height: 320px; }
  .features-grid, .menu-grid, .values-grid, .reviews-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-container { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-container { grid-template-columns: 1.4fr 1fr 1fr; }
  .post-wrap { grid-template-columns: 1fr; }
  .menu-categories-preview { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 3rem 0; }
  .nav-menu {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition);
  }
  .nav-menu.active { transform: translateY(0); opacity: 1; }
  .hamburger { display: flex; }
  .cta-button { display: none; }
  .features-grid, .menu-grid, .values-grid, .reviews-grid, .blog-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-highlights { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero { padding: 4rem 1rem 3rem; }
  .hero-visual { height: 320px; }
  .orbit-container { width: 270px; height: 270px; }
  .orbit-center { width: 130px; height: 130px; }
  .orbit-center .center-text-large { font-size: 2rem; }
  .food-emoji { width: 56px; height: 56px; font-size: 2rem; }
  .stats-container { grid-template-columns: 1fr 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .page-header { padding: 4rem 1rem 3rem; }
  .post-article { padding: 1.5rem 1.2rem; }
  .menu-categories-preview { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}
