/* =====================================================
   BLACKBOX PIZZA CO — DARK NOIR STYLESHEET
   ===================================================== */

/* ── CSS Variables ── */
:root {
  --black:    #0a0a0a;
  --charcoal: #1a1a1a;
  --charcoal2:#222222;
  --red:      #e63946;
  --red-dark: #b52832;
  --gold:     #f4a261;
  --gold-dark:#d4833f;
  --cream:    #fff5e4;
  --grey:     #888888;
  --grey-light:#aaaaaa;
  --white:    #ffffff;
  --glass-bg: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --shadow-red: 0 0 30px rgba(230,57,70,0.3);
  --shadow-gold:0 0 30px rgba(244,162,97,0.3);
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body:    -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius:   12px;
  --radius-lg:20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.bbph-body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
#bbph-root { min-height: 100vh; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Loading Screen ── */
.bbph-loading {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; background: var(--black);
  flex-direction: column; gap: 20px;
}
.bbph-loading-spinner {
  width: 60px; height: 60px;
  border: 3px solid var(--charcoal);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: bbph-spin 0.8s linear infinite;
}
.bbph-loading p { color: var(--grey); font-size: 14px; letter-spacing: 2px; text-transform: uppercase; }

/* =====================================================
   NAVIGATION
   ===================================================== */
.bbph-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 40px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}
.bbph-nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.bbph-logo {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; transition: var(--transition);
}
.bbph-logo:hover { opacity: 0.8; }
.bbph-logo-icon {
  width: 38px; height: 38px;
  background: radial-gradient(circle, var(--gold) 0%, var(--red) 60%, #8b0000 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 0 15px rgba(244,162,97,0.4);
  animation: bbph-logo-pulse 3s ease-in-out infinite;
}
.bbph-logo-text {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700; letter-spacing: 1px;
  background: linear-gradient(135deg, var(--cream), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bbph-nav-links {
  display: flex; align-items: center; gap: 8px; list-style: none;
}
.bbph-nav-links li a,
.bbph-nav-links li button {
  background: none; border: none; color: var(--grey-light);
  font-size: 14px; font-family: var(--font-body);
  letter-spacing: 1px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 6px;
  cursor: pointer; transition: var(--transition); position: relative;
}
.bbph-nav-links li a:hover,
.bbph-nav-links li button:hover,
.bbph-nav-links li a.active,
.bbph-nav-links li button.active { color: var(--cream); background: var(--glass-bg); }
.bbph-nav-links li a.active::after,
.bbph-nav-links li button.active::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px; background: var(--red); border-radius: 2px;
}
.bbph-nav-cta { background: var(--red) !important; color: var(--white) !important; border-radius: 8px !important; font-weight: 600 !important; padding: 8px 20px !important; }
.bbph-nav-cta:hover { background: var(--red-dark) !important; box-shadow: var(--shadow-red) !important; transform: translateY(-1px); }
.bbph-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.bbph-hamburger span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: var(--transition); }

/* =====================================================
   HERO SECTION
   ===================================================== */
.bbph-hero {
  min-height: 100vh;
  background: radial-gradient(ellipse at 50% 0%, #1a0505 0%, #0d0000 30%, var(--black) 70%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding-top: 70px;
}
.bbph-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(230,57,70,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(230,57,70,0.05) 1px, transparent 1px);
  background-size: 60px 60px; animation: bbph-grid-shift 20s linear infinite;
}
.bbph-hero-inner {
  max-width: 1200px; width: 100%; margin: 0 auto; padding: 40px 40px;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px;
  position: relative; z-index: 2;
}
.bbph-hero-content { order: 1; }
.bbph-hero-visual  { order: 2; }
.bbph-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(230,57,70,0.1); border: 1px solid rgba(230,57,70,0.3);
  border-radius: 100px; padding: 6px 16px; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--red);
  margin-bottom: 24px; animation: bbph-fade-up 0.6s ease both;
}
.bbph-hero-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: bbph-blink 1.4s ease infinite; }
.bbph-hero-title {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 72px);
  font-weight: 700; line-height: 1.1; letter-spacing: -1px;
  margin-bottom: 24px; animation: bbph-fade-up 0.6s 0.1s ease both;
}
.bbph-hero-title .line1 { display: block; color: var(--cream); }
.bbph-hero-title .line2 {
  display: block;
  background: linear-gradient(135deg, var(--red), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.bbph-hero-subtitle { font-size: 18px; color: var(--grey-light); margin-bottom: 16px; font-style: italic; letter-spacing: 1px; animation: bbph-fade-up 0.6s 0.2s ease both; }
.bbph-hero-desc { font-size: 15px; color: var(--grey); margin-bottom: 40px; line-height: 1.8; max-width: 440px; animation: bbph-fade-up 0.6s 0.3s ease both; }
.bbph-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: bbph-fade-up 0.6s 0.4s ease both; }
.bbph-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white); border: none; padding: 14px 32px;
  border-radius: var(--radius); font-size: 15px; font-weight: 600;
  cursor: pointer; transition: var(--transition); letter-spacing: 0.5px;
}
.bbph-btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-red); }
.bbph-btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--cream); border: 1px solid var(--glass-border);
  padding: 14px 32px; border-radius: var(--radius); font-size: 15px; font-weight: 500;
  cursor: pointer; transition: var(--transition); backdrop-filter: blur(10px);
}
.bbph-btn-secondary:hover { background: var(--glass-bg); border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }

/* ── PIZZA ANIMATION STAGE ── */
.bbph-pizza-stage { position: relative; width: 420px; height: 420px; margin: 0 auto; }
.bbph-pizza-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 50%; pointer-events: none; }
.bbph-pizza-glow.g1 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(230,57,70,0.12) 0%, transparent 70%); animation: bbph-pulse-ring 3s ease-in-out infinite; }
.bbph-pizza-glow.g2 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(244,162,97,0.08) 0%, transparent 70%); animation: bbph-pulse-ring 3s 1s ease-in-out infinite; }
.bbph-pizza-wrapper {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 220px; height: 220px;
  animation: bbph-pizza-spin 20s linear infinite;
  filter: drop-shadow(0 0 20px rgba(244,162,97,0.4));
}
.bbph-pizza-wrapper:hover { animation-play-state: paused; }
.bbph-orbit-ring {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 320px; height: 320px; border: 1px dashed rgba(230,57,70,0.2); border-radius: 50%;
}
.bbph-ingredient {
  position: absolute; top: 50%; left: 50%; width: 44px; height: 44px;
  margin-top: -22px; margin-left: -22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 24px;
  background: var(--charcoal); border: 1px solid var(--glass-border);
  box-shadow: 0 4px 15px rgba(0,0,0,0.5); transform-origin: center center;
}
.bbph-ingredient.i1 { animation: bbph-orbit1 8s linear infinite; }
.bbph-ingredient.i2 { animation: bbph-orbit2 10s linear infinite; }
.bbph-ingredient.i3 { animation: bbph-orbit3 12s linear infinite; }
.bbph-ingredient.i4 { animation: bbph-orbit4 9s linear infinite; }
.bbph-ingredient.i5 { animation: bbph-orbit5 11s linear infinite; }
.bbph-embers { position: absolute; inset: 0; pointer-events: none; }
.bbph-ember { position: absolute; border-radius: 50%; opacity: 0; }
.bbph-ember.e1  { width:3px;height:3px;background:var(--red);  left:52%;bottom:10%;animation:bbph-ember 4s 0.0s ease-in infinite; }
.bbph-ember.e2  { width:2px;height:2px;background:var(--gold); left:48%;bottom:15%;animation:bbph-ember 4s 0.5s ease-in infinite; }
.bbph-ember.e3  { width:4px;height:4px;background:var(--red);  left:55%;bottom:8%; animation:bbph-ember 4s 1.0s ease-in infinite; }
.bbph-ember.e4  { width:2px;height:2px;background:var(--gold); left:45%;bottom:12%;animation:bbph-ember 4s 1.5s ease-in infinite; }
.bbph-ember.e5  { width:3px;height:3px;background:var(--cream);left:50%;bottom:5%; animation:bbph-ember 4s 2.0s ease-in infinite; }
.bbph-ember.e6  { width:2px;height:2px;background:var(--red);  left:53%;bottom:18%;animation:bbph-ember 4s 0.8s ease-in infinite; }
.bbph-ember.e7  { width:4px;height:4px;background:var(--gold); left:47%;bottom:9%; animation:bbph-ember 4s 1.3s ease-in infinite; }
.bbph-ember.e8  { width:2px;height:2px;background:var(--red);  left:57%;bottom:14%;animation:bbph-ember 4s 2.5s ease-in infinite; }
.bbph-ember.e9  { width:3px;height:3px;background:var(--gold); left:43%;bottom:7%; animation:bbph-ember 4s 3.0s ease-in infinite; }
.bbph-ember.e10 { width:2px;height:2px;background:var(--cream);left:51%;bottom:20%;animation:bbph-ember 4s 0.3s ease-in infinite; }
.bbph-scroll-down {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--grey); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; z-index: 3; animation: bbph-fade-up 1s 0.8s ease both; transition: var(--transition);
}
.bbph-scroll-down:hover { color: var(--cream); }
.bbph-scroll-arrow { width: 24px; height: 24px; border-right: 2px solid var(--red); border-bottom: 2px solid var(--red); transform: rotate(45deg); animation: bbph-bounce 2s ease-in-out infinite; }

/* =====================================================
   FEATURES SECTION
   ===================================================== */
.bbph-features { padding: 100px 40px; background: var(--charcoal); position: relative; }
.bbph-features::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--red), transparent); }
.bbph-section-header { text-align: center; margin-bottom: 60px; }
.bbph-section-tag { display: inline-block; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.bbph-section-title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px); font-weight: 700; color: var(--cream); line-height: 1.2; }
.bbph-section-subtitle { font-size: 16px; color: var(--grey); margin-top: 12px; max-width: 500px; margin-left: auto; margin-right: auto; }
.bbph-features-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.bbph-feature-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
  padding: 40px 32px; text-align: center; transition: var(--transition); position: relative; overflow: hidden; cursor: default;
}
.bbph-feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--red), var(--gold)); transform: scaleX(0); transition: transform 0.4s ease; }
.bbph-feature-card:hover::before { transform: scaleX(1); }
.bbph-feature-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.bbph-feature-icon { width: 70px; height: 70px; margin: 0 auto 24px; background: radial-gradient(circle, rgba(230,57,70,0.15), rgba(244,162,97,0.05)); border-radius: 20px; border: 1px solid rgba(230,57,70,0.2); display: flex; align-items: center; justify-content: center; font-size: 36px; transition: var(--transition); }
.bbph-feature-card:hover .bbph-feature-icon { transform: scale(1.1) rotate(5deg); box-shadow: 0 0 20px rgba(230,57,70,0.3); }
.bbph-feature-title { font-size: 20px; font-weight: 700; color: var(--cream); margin-bottom: 12px; font-family: var(--font-display); }
.bbph-feature-desc { font-size: 14px; color: var(--grey); line-height: 1.7; }

/* =====================================================
   POSTS SECTION
   ===================================================== */
.bbph-posts-section { padding: 100px 40px; background: var(--black); }
.bbph-posts-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.bbph-post-card { background: var(--charcoal); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); cursor: pointer; display: flex; flex-direction: column; }
.bbph-post-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.5); border-color: rgba(230,57,70,0.3); }
.bbph-post-img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s ease; }
.bbph-post-card:hover .bbph-post-img { transform: scale(1.05); }
.bbph-post-img-placeholder { width: 100%; height: 200px; background: linear-gradient(135deg, var(--charcoal2), #0d0000); display: flex; align-items: center; justify-content: center; font-size: 64px; }
.bbph-post-img-wrap { overflow: hidden; }
.bbph-post-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.bbph-post-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.bbph-post-date { font-size: 12px; color: var(--grey); letter-spacing: 1px; }
.bbph-post-cat { font-size: 11px; background: rgba(230,57,70,0.1); color: var(--red); border: 1px solid rgba(230,57,70,0.2); padding: 2px 10px; border-radius: 100px; letter-spacing: 1px; text-transform: uppercase; }
.bbph-post-title { font-size: 17px; font-weight: 700; color: var(--cream); margin-bottom: 10px; line-height: 1.4; font-family: var(--font-display); transition: color 0.2s; }
.bbph-post-card:hover .bbph-post-title { color: var(--gold); }
.bbph-post-excerpt { font-size: 13px; color: var(--grey); line-height: 1.6; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.bbph-post-footer { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: space-between; }
.bbph-post-author { font-size: 12px; color: var(--grey); }
.bbph-read-more { font-size: 13px; color: var(--gold); font-weight: 600; display: flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.bbph-post-card:hover .bbph-read-more { gap: 10px; }

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.bbph-about { min-height: 100vh; background: var(--black); padding-top: 70px; }
.bbph-about-hero { background: radial-gradient(ellipse at 30% 50%, #1a0a00 0%, var(--black) 60%); padding: 100px 40px; position: relative; overflow: hidden; }
.bbph-about-hero::after { content: "🍕"; position: absolute; right: 10%; top: 50%; transform: translateY(-50%); font-size: 200px; opacity: 0.04; animation: bbph-pizza-spin 40s linear infinite; }
.bbph-about-inner { max-width: 800px; margin: 0 auto; }
.bbph-about-tag { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.bbph-about-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px); font-weight: 700; line-height: 1.1; color: var(--cream); margin-bottom: 32px; }
.bbph-about-title em { color: var(--red); font-style: normal; }
.bbph-about-lead { font-size: 20px; color: var(--gold); font-style: italic; margin-bottom: 24px; line-height: 1.5; }
.bbph-about-body { font-size: 16px; color: var(--grey-light); line-height: 1.9; }
.bbph-about-body p { margin-bottom: 20px; }
.bbph-about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin: 80px 0 0; background: var(--glass-border); }
.bbph-stat { background: var(--charcoal); padding: 40px 30px; text-align: center; }
.bbph-stat-number { font-family: var(--font-display); font-size: 48px; font-weight: 700; background: linear-gradient(135deg, var(--red), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; }
.bbph-stat-label { font-size: 13px; color: var(--grey); margin-top: 8px; letter-spacing: 1px; text-transform: uppercase; }
.bbph-about-story { background: var(--charcoal); padding: 80px 40px; }
.bbph-about-story-inner { max-width: 800px; margin: 0 auto; }
.bbph-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; }
.bbph-story-block { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 28px; }
.bbph-story-year { font-size: 12px; letter-spacing: 2px; color: var(--red); text-transform: uppercase; margin-bottom: 8px; }
.bbph-story-block h3 { font-family: var(--font-display); font-size: 20px; color: var(--cream); margin-bottom: 12px; }
.bbph-story-block p { font-size: 14px; color: var(--grey); line-height: 1.7; }

/* =====================================================
   MENU PAGE
   ===================================================== */
.bbph-menu-page { min-height: 100vh; background: var(--black); padding-top: 70px; }
.bbph-menu-hero { background: radial-gradient(ellipse at 70% 50%, #0d0a00 0%, var(--black) 60%); padding: 80px 40px 60px; text-align: center; }
.bbph-menu-body { padding: 60px 40px 100px; max-width: 1200px; margin: 0 auto; }
.bbph-menu-categories { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.bbph-menu-tab { background: var(--charcoal); border: 1px solid var(--glass-border); color: var(--grey-light); padding: 10px 22px; border-radius: 100px; font-size: 13px; letter-spacing: 1px; cursor: pointer; transition: var(--transition); }
.bbph-menu-tab:hover,.bbph-menu-tab.active { background: var(--red); border-color: var(--red); color: var(--white); }
.bbph-menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.bbph-menu-card { background: var(--charcoal); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); position: relative; }
.bbph-menu-card:hover { transform: translateY(-6px); border-color: rgba(244,162,97,0.4); box-shadow: var(--shadow-gold); }
.bbph-menu-card-img { height: 180px; background: linear-gradient(135deg, #1a0505 0%, #0d0000 100%); display: flex; align-items: center; justify-content: center; font-size: 72px; position: relative; overflow: hidden; }
.bbph-menu-card-img::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 100%, rgba(230,57,70,0.2), transparent 60%); }
.bbph-menu-emoji { animation: bbph-float 3s ease-in-out infinite; }
.bbph-menu-badge { position: absolute; top: 12px; right: 12px; background: var(--red); color: var(--white); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px; letter-spacing: 1px; text-transform: uppercase; z-index: 2; }
.bbph-menu-card-body { padding: 24px; }
.bbph-menu-card-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--cream); margin-bottom: 8px; }
.bbph-menu-card-desc { font-size: 13px; color: var(--grey); line-height: 1.6; margin-bottom: 20px; }
.bbph-menu-card-footer { display: flex; align-items: center; justify-content: space-between; }
.bbph-menu-price { font-size: 22px; font-weight: 700; color: var(--gold); }
.bbph-menu-order { background: var(--red); color: var(--white); border: none; padding: 8px 18px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition); }
.bbph-menu-order:hover { background: var(--red-dark); transform: scale(1.05); }

/* =====================================================
   BLOG PAGE
   ===================================================== */
.bbph-blog-page { min-height: 100vh; background: var(--black); padding-top: 70px; }
.bbph-blog-hero { background: radial-gradient(ellipse at 50% 0%, #050010 0%, var(--black) 60%); padding: 80px 40px 60px; text-align: center; }
.bbph-blog-body { padding: 60px 40px 100px; max-width: 1200px; margin: 0 auto; }
.bbph-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 60px; }
.bbph-blog-featured { grid-column: 1 / -1; }
.bbph-post-card.featured { flex-direction: row; }
.bbph-post-card.featured .bbph-post-img-wrap { width: 45%; flex-shrink: 0; }
.bbph-post-card.featured .bbph-post-img { height: 100%; min-height: 280px; }
.bbph-post-card.featured .bbph-post-img-placeholder { height: 100%; min-height: 280px; font-size: 100px; }
.bbph-post-card.featured .bbph-post-body { padding: 36px; }
.bbph-post-card.featured .bbph-post-title { font-size: 24px; }
.bbph-pagination { display: flex; align-items: center; justify-content: center; gap: 8px; }
.bbph-page-btn { background: var(--charcoal); border: 1px solid var(--glass-border); color: var(--grey-light); width: 40px; height: 40px; border-radius: 8px; font-size: 14px; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.bbph-page-btn:hover,.bbph-page-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }
.bbph-page-btn:disabled { opacity: 0.3; cursor: not-allowed; }

/* =====================================================
   FOOTER
   ===================================================== */
.bbph-footer { background: #050505; border-top: 1px solid var(--glass-border); padding: 60px 40px 30px; }
.bbph-footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.bbph-footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.bbph-footer-logo-icon { width: 40px; height: 40px; background: radial-gradient(circle, var(--gold), var(--red)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.bbph-footer-brand-name { font-family: var(--font-display); font-size: 18px; background: linear-gradient(135deg, var(--cream), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.bbph-footer-tagline { font-size: 14px; color: var(--grey); margin-bottom: 20px; font-style: italic; }
.bbph-footer-socials { display: flex; gap: 10px; }
.bbph-social-btn { width: 36px; height: 36px; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; cursor: pointer; transition: var(--transition); }
.bbph-social-btn:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); }
.bbph-footer-col h4 { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--cream); margin-bottom: 20px; }
.bbph-footer-col ul { list-style: none; }
.bbph-footer-col ul li { margin-bottom: 10px; }
.bbph-footer-col ul li button { background: none; border: none; font-size: 14px; color: var(--grey); cursor: pointer; transition: color 0.2s; font-family: var(--font-body); padding: 0; }
.bbph-footer-col ul li button:hover { color: var(--cream); }
.bbph-footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid var(--glass-border); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.bbph-footer-copy { font-size: 13px; color: var(--grey); }
.bbph-footer-copy span { color: var(--red); }

/* =====================================================
   KEYFRAME ANIMATIONS
   ===================================================== */
@keyframes bbph-pizza-spin { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes bbph-orbit1 { from { transform: rotate(0deg)   translateX(160px) rotate(0deg); } to { transform: rotate(360deg) translateX(160px) rotate(-360deg); } }
@keyframes bbph-orbit2 { from { transform: rotate(72deg)  translateX(160px) rotate(-72deg); } to { transform: rotate(432deg) translateX(160px) rotate(-432deg); } }
@keyframes bbph-orbit3 { from { transform: rotate(144deg) translateX(160px) rotate(-144deg); } to { transform: rotate(504deg) translateX(160px) rotate(-504deg); } }
@keyframes bbph-orbit4 { from { transform: rotate(216deg) translateX(160px) rotate(-216deg); } to { transform: rotate(576deg) translateX(160px) rotate(-576deg); } }
@keyframes bbph-orbit5 { from { transform: rotate(288deg) translateX(160px) rotate(-288deg); } to { transform: rotate(648deg) translateX(160px) rotate(-648deg); } }
@keyframes bbph-ember { 0% { opacity: 0; transform: translateY(0) translateX(0) scale(1); } 10% { opacity: 1; } 50% { opacity: 0.8; transform: translateY(-80px) translateX(15px) scale(0.9); } 80% { opacity: 0.3; transform: translateY(-160px) translateX(-8px) scale(0.6); } 100% { opacity: 0; transform: translateY(-240px) translateX(5px) scale(0.2); } }
@keyframes bbph-logo-pulse { 0%,100% { box-shadow: 0 0 15px rgba(244,162,97,0.4); } 50% { box-shadow: 0 0 25px rgba(244,162,97,0.7); } }
@keyframes bbph-fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bbph-bounce { 0%,100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(6px); } }
@keyframes bbph-pulse-ring { 0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; } 50% { transform: translate(-50%,-50%) scale(1.05); opacity: 1; } }
@keyframes bbph-blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes bbph-spin { to { transform: rotate(360deg); } }
@keyframes bbph-grid-shift { 0% { background-position: 0 0; } 100% { background-position: 60px 60px; } }
@keyframes bbph-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .bbph-hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .bbph-hero-content { order: 2; } .bbph-hero-visual { order: 1; }
  .bbph-hero-actions { justify-content: center; } .bbph-hero-desc { margin: 0 auto 40px; }
  .bbph-pizza-stage { width: 300px; height: 300px; } .bbph-pizza-wrapper { width: 160px; height: 160px; }
  .bbph-orbit-ring { width: 240px; height: 240px; }
  .bbph-ingredient.i1 { animation: bbph-orbit1-sm 8s linear infinite; }
  .bbph-ingredient.i2 { animation: bbph-orbit2-sm 10s linear infinite; }
  .bbph-ingredient.i3 { animation: bbph-orbit3-sm 12s linear infinite; }
  .bbph-ingredient.i4 { animation: bbph-orbit4-sm 9s linear infinite; }
  .bbph-ingredient.i5 { animation: bbph-orbit5-sm 11s linear infinite; }
  .bbph-features-grid { grid-template-columns: 1fr 1fr; }
  .bbph-posts-grid,.bbph-menu-grid,.bbph-blog-grid { grid-template-columns: 1fr 1fr; }
  .bbph-footer-inner { grid-template-columns: 1fr 1fr; }
  .bbph-about-stats { grid-template-columns: 1fr 1fr; }
  .bbph-story-grid { grid-template-columns: 1fr; }
  .bbph-post-card.featured { flex-direction: column; }
  .bbph-post-card.featured .bbph-post-img-wrap { width: 100%; }
}
@keyframes bbph-orbit1-sm { from { transform: rotate(0deg)   translateX(120px) rotate(0deg); } to { transform: rotate(360deg) translateX(120px) rotate(-360deg); } }
@keyframes bbph-orbit2-sm { from { transform: rotate(72deg)  translateX(120px) rotate(-72deg); } to { transform: rotate(432deg) translateX(120px) rotate(-432deg); } }
@keyframes bbph-orbit3-sm { from { transform: rotate(144deg) translateX(120px) rotate(-144deg); } to { transform: rotate(504deg) translateX(120px) rotate(-504deg); } }
@keyframes bbph-orbit4-sm { from { transform: rotate(216deg) translateX(120px) rotate(-216deg); } to { transform: rotate(576deg) translateX(120px) rotate(-576deg); } }
@keyframes bbph-orbit5-sm { from { transform: rotate(288deg) translateX(120px) rotate(-288deg); } to { transform: rotate(648deg) translateX(120px) rotate(-648deg); } }
@media (max-width: 768px) {
  .bbph-nav { padding: 0 20px; } .bbph-nav-links { display: none; } .bbph-hamburger { display: flex; }
  .bbph-hero-inner { padding: 60px 20px; } .bbph-features { padding: 60px 20px; }
  .bbph-features-grid { grid-template-columns: 1fr; } .bbph-posts-section { padding: 60px 20px; }
  .bbph-posts-grid { grid-template-columns: 1fr; } .bbph-menu-grid { grid-template-columns: 1fr; }
  .bbph-blog-grid { grid-template-columns: 1fr; } .bbph-footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .bbph-about-stats { grid-template-columns: 1fr; }
  .bbph-about-hero,.bbph-about-story,.bbph-menu-hero,.bbph-menu-body,.bbph-blog-hero,.bbph-blog-body { padding-left: 20px; padding-right: 20px; }
}
