/* ============================================================
   BADA BING BAKEHOUSE & PIZZERIA — GLOBAL STYLESHEET
   ============================================================ */

/* ---- LOCAL FONTS ---- */
@font-face {
  font-family: 'Montserrat';
  src: url('../assets/Fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../assets/Fonts/Montserrat-Italic.ttf') format('truetype');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../assets/Fonts/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../assets/Fonts/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../assets/Fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../assets/Fonts/Montserrat-ExtraBold.ttf') format('truetype');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Matrice';
  src: url('../assets/Fonts/Matrice-Black.otf') format('opentype');
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Matrice';
  src: url('../assets/Fonts/Matrice-BlackItalic.otf') format('opentype');
  font-weight: 900; font-style: italic; font-display: swap;
}

/* ---- CSS VARIABLES ---- */
:root {
  --green:  #07391A;
  --red:    #A72C0A;
  --pink:   #F28383;
  --beige:  #F1DED5;
  --dark:   #041A0D;
}

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--beige);
  color: var(--green);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: 'Montserrat', sans-serif; cursor: pointer; }

/* ============================================================
   PROMO BAR
   ============================================================ */
.promo-bar {
  background: var(--red);
  color: var(--beige);
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.promo-bar a {
  color: var(--beige);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 8px;
  font-weight: 700;
  white-space: nowrap;
}
.promo-bar a:hover { color: #fff; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  background: var(--green);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.35); }

.nav-logo img { height: 38px; width: auto; }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: rgba(241,222,213,0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--beige); }

.nav-cta {
  background: var(--red) !important;
  color: var(--beige) !important;
  padding: 10px 22px;
  border-radius: 100px;
  opacity: 1 !important;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover { background: var(--pink) !important; color: var(--green) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--beige);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: var(--red);
  color: var(--beige);
  padding: 15px 32px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  border: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--pink); color: var(--green); transform: translateY(-2px); }

.btn-secondary {
  border: 2px solid rgba(242,131,131,0.45);
  color: var(--pink);
  padding: 13px 30px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--pink); color: var(--green); border-color: var(--pink); }

/* ============================================================
   SHARED SECTION COMPONENTS
   ============================================================ */
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Matrice', 'Montserrat', sans-serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  color: var(--green);
}
.section-title em { font-style: italic; color: var(--red); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--green);
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-left {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(167,44,10,0.18);
  border: 1px solid rgba(167,44,10,0.4);
  color: var(--pink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  width: fit-content;
}
.hero-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

.hero-title {
  font-family: 'Matrice', 'Montserrat', sans-serif;
  font-size: clamp(56px, 6.5vw, 92px);
  font-weight: 900;
  line-height: 0.9;
  color: var(--beige);
  margin-bottom: 10px;
  letter-spacing: -3px;
}
.hero-title .accent  { color: var(--pink); }
.hero-title .red-txt { color: var(--red); }

.hero-sub {
  font-size: 12px;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0.85;
}

.hero-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(241,222,213,0.6);
  max-width: 420px;
  margin-bottom: 40px;
}
.hero-desc strong { color: var(--beige); }

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(242,131,131,0.15);
}
.hero-stat-num {
  font-family: 'Matrice', 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--pink);
  letter-spacing: -1px;
  line-height: 1;
}
.hero-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(241,222,213,0.38);
  margin-top: 4px;
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--red);
}
.hero-right .hero-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-character {
  position: absolute;
  bottom: 0; right: 0;
  width: 220px;
  z-index: 2;
  pointer-events: none;
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--red);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: tickerRoll 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--beige);
}
.ticker-dot { color: var(--pink); font-size: 14px; }

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

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-section { padding: 100px 64px; background: var(--beige); }
.why-section .section-title { margin-bottom: 56px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.why-card {
  background: var(--green);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s;
}
.why-card:hover { transform: translateY(-5px); }
.why-card:nth-child(2) { background: var(--red); margin-top: 28px; }
.why-card:nth-child(3) { margin-top: 56px; }

.why-num {
  font-family: 'Matrice', 'Montserrat', sans-serif;
  font-size: 88px;
  font-weight: 900;
  line-height: 1;
  color: rgba(242,131,131,0.1);
  position: absolute;
  top: 10px; right: 18px;
  letter-spacing: -5px;
  pointer-events: none;
}
.why-card:nth-child(2) .why-num { color: rgba(241,222,213,0.1); }

.why-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--pink);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.why-card-title {
  font-family: 'Matrice', 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--beige);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  line-height: 1.1;
}
.why-card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(241,222,213,0.58);
}

/* ============================================================
   MENU PREVIEW (HOMEPAGE)
   ============================================================ */
.menu-section { padding: 100px 64px; background: var(--green); }
.menu-section .section-label { color: var(--pink); }
.menu-section .section-title { color: var(--beige); margin-bottom: 44px; }

.menu-tabs { display: flex; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.menu-tab {
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid rgba(242,131,131,0.22);
  color: rgba(241,222,213,0.5);
  background: transparent;
  transition: all 0.2s;
}
.menu-tab.active { background: var(--red); border-color: var(--red); color: var(--beige); }
.menu-tab:hover:not(.active) { border-color: var(--pink); color: var(--pink); }

.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.menu-preview-card {
  background: rgba(241,222,213,0.05);
  border: 1px solid rgba(242,131,131,0.12);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.25s;
  display: block;
}
.menu-preview-card:hover {
  background: rgba(241,222,213,0.09);
  border-color: rgba(242,131,131,0.32);
  transform: translateY(-3px);
}
.menu-preview-photo {
  width: 100%; height: 185px;
  object-fit: cover;
  display: block;
  background: rgba(4,26,13,0.6);
}
.menu-preview-info { padding: 20px 22px; }
.menu-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 7px;
}
.menu-preview-name {
  font-size: 16px;
  font-weight: 900;
  color: var(--beige);
  letter-spacing: -0.3px;
  line-height: 1.15;
}
.menu-preview-price {
  font-size: 13px;
  font-weight: 900;
  color: var(--pink);
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-preview-desc {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(241,222,213,0.45);
}
.menu-preview-tag {
  display: inline-block;
  margin-top: 12px;
  background: rgba(167,44,10,0.28);
  color: var(--pink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.menu-section-cta { text-align: center; margin-top: 44px; }

/* ============================================================
   STORY SECTION
   ============================================================ */
.story-section {
  padding: 100px 64px;
  background: var(--beige);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-visual { position: relative; }
.story-bg-text {
  font-family: 'Matrice', 'Montserrat', sans-serif;
  font-size: clamp(100px, 12vw, 168px);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -6px;
  color: transparent;
  -webkit-text-stroke: 2px var(--green);
  opacity: 0.07;
  position: absolute;
  top: -24px; left: -16px;
  pointer-events: none;
  z-index: 0;
}
.story-card {
  background: var(--red);
  border-radius: 28px;
  padding: 44px;
  position: relative;
  z-index: 1;
}
.story-quote-mark {
  font-size: 80px;
  font-weight: 900;
  color: rgba(241,222,213,0.12);
  line-height: 0.5;
  margin-bottom: 20px;
  display: block;
  font-family: Georgia, serif;
}
.story-card-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--beige);
  line-height: 1.55;
  font-style: italic;
}
.story-card-attr {
  margin-top: 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
}
.story-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--green);
  border: 4px solid var(--beige);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.badge-num {
  font-family: 'Matrice', 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
}
.badge-text {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(241,222,213,0.65);
  text-align: center;
  line-height: 1.3;
}
.story-content .section-title { margin-bottom: 28px; }
.story-content p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(7,57,26,0.68);
  margin-bottom: 18px;
}
.story-content strong { color: var(--green); }

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 64px;
  grid-column: 1 / -1;
}
.gallery-strip img {
  width: 100%; height: 200px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s;
}
.gallery-strip img:hover { transform: scale(1.03); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { padding: 100px 64px; background: var(--beige); }
.reviews-section .section-title { margin-bottom: 48px; }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.review-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(7,57,26,0.07);
  transition: transform 0.2s;
}
.review-card:hover { transform: translateY(-3px); }
.review-stars { display: flex; gap: 3px; margin-bottom: 14px; color: #F5A623; font-size: 14px; }
.review-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--green);
  font-style: italic;
  margin-bottom: 20px;
}
.review-author { font-size: 13px; font-weight: 700; color: var(--red); letter-spacing: 1px; }

/* ============================================================
   DELIVERY SECTION
   ============================================================ */
.delivery-section {
  padding: 80px 64px;
  background: var(--red);
  text-align: center;
}
.delivery-section .section-label { color: var(--pink); }
.delivery-section .section-title { color: var(--beige); margin-bottom: 44px; }

.platforms { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.platform-pill {
  background: var(--green);
  color: var(--beige);
  padding: 15px 28px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.platform-pill:hover { background: var(--beige); color: var(--green); transform: translateY(-3px); }
.platform-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
}

/* ============================================================
   LOCATION SECTION
   ============================================================ */
.location-section {
  background: var(--green);
  padding: 100px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.location-section .section-label { color: var(--pink); }
.location-section .section-title { color: var(--beige); margin-bottom: 36px; }

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.loc-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--red);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.loc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  opacity: 0.7;
  margin-bottom: 4px;
}
.loc-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--beige);
  line-height: 1.5;
}

.map-embed {
  border-radius: 24px;
  overflow: hidden;
  height: 340px;
  border: 1px solid rgba(242,131,131,0.18);
}
.map-embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--dark); padding: 64px 64px 32px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(242,131,131,0.1);
  margin-bottom: 36px;
}
.footer-logo img { height: 40px; width: auto; margin-bottom: 14px; }
.footer-tagline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(241,222,213,0.28);
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(241,222,213,0.36);
  max-width: 280px;
}
.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: 14px;
  color: rgba(241,222,213,0.4);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--beige); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 12px; color: rgba(241,222,213,0.22); }
.footer-copy span { color: var(--pink); }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(242,131,131,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-size: 11px;
  font-weight: 900;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--red); border-color: var(--red); color: var(--beige); }

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-hero { background: var(--green); padding: 80px 64px 60px; text-align: center; }
.menu-hero .section-label { color: var(--pink); }
.menu-hero-title {
  font-family: 'Matrice', 'Montserrat', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  color: var(--beige);
  letter-spacing: -3px;
  line-height: 0.95;
  margin-bottom: 16px;
}
.menu-hero-sub {
  font-size: 14px;
  color: rgba(241,222,213,0.5);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

.menu-nav {
  background: var(--green);
  border-bottom: 1px solid rgba(242,131,131,0.12);
  position: sticky;
  top: 72px;
  z-index: 100;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.menu-nav::-webkit-scrollbar { display: none; }
.menu-nav-inner { display: flex; padding: 0 64px; min-width: max-content; }
.menu-nav-tab {
  padding: 16px 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(241,222,213,0.44);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.menu-nav-tab.active { color: var(--pink); border-bottom-color: var(--pink); }
.menu-nav-tab:hover:not(.active) { color: rgba(241,222,213,0.75); }

.menu-cat-section { padding: 72px 64px; border-bottom: 1px solid rgba(7,57,26,0.09); }
.menu-cat-section:nth-child(odd) { background: var(--beige); }
.menu-cat-section:nth-child(even) { background: #fff; }

.menu-cat-header { margin-bottom: 40px; }
.menu-cat-title {
  font-family: 'Matrice', 'Montserrat', sans-serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 900;
  color: var(--green);
  letter-spacing: -2px;
  line-height: 0.95;
  margin-bottom: 8px;
}
.menu-cat-desc {
  font-size: 14px;
  color: rgba(7,57,26,0.5);
  max-width: 560px;
  line-height: 1.65;
  margin-top: 8px;
}

.pizza-info-bar {
  background: var(--green);
  color: var(--beige);
  border-radius: 16px;
  padding: 18px 28px;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.pizza-info-item { font-size: 13px; line-height: 1.6; color: rgba(241,222,213,0.65); }
.pizza-info-item strong { color: var(--beige); }

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.menu-item-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(7,57,26,0.08);
  transition: all 0.25s;
}
.menu-item-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(7,57,26,0.1); }
.menu-item-photo {
  width: 100%; height: 200px;
  object-fit: cover;
  display: block;
  background: var(--green);
}
.menu-item-info { padding: 20px 22px; }
.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 7px;
}
.menu-item-name {
  font-size: 16px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.menu-item-price {
  font-size: 14px;
  font-weight: 900;
  color: var(--red);
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-item-desc {
  font-size: 12px;
  line-height: 1.65;
  color: rgba(7,57,26,0.5);
}

/* ============================================================
   PAGE HERO (ABOUT / ORDER / LOCATIONS)
   ============================================================ */
.page-hero { background: var(--green); padding: 100px 64px; text-align: center; }
.page-hero .section-label { color: var(--pink); }
.page-hero-title {
  font-family: 'Matrice', 'Montserrat', sans-serif;
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 900;
  color: var(--beige);
  letter-spacing: -4px;
  line-height: 0.9;
}
.page-hero-title em { font-style: italic; color: var(--pink); }
.page-hero-sub {
  font-size: 15px;
  color: rgba(241,222,213,0.5);
  max-width: 480px;
  margin: 20px auto 0;
  line-height: 1.7;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story-section {
  padding: 100px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-story-section p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(7,57,26,0.68);
  margin-bottom: 18px;
}
.about-story-section strong { color: var(--green); }

.values-section { padding: 80px 64px; background: var(--green); }
.values-section .section-label { color: var(--pink); }
.values-section .section-title { color: var(--beige); margin-bottom: 44px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value-tag {
  background: rgba(241,222,213,0.06);
  border: 1px solid rgba(242,131,131,0.18);
  border-radius: 16px;
  padding: 24px 28px;
  font-size: 18px;
  font-weight: 900;
  color: var(--beige);
  letter-spacing: -0.5px;
  transition: background 0.2s;
}
.value-tag:hover { background: rgba(241,222,213,0.12); }

.about-gallery { padding: 80px 64px; background: var(--beige); }
.about-gallery .section-title { margin-bottom: 40px; }
.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.about-gallery-grid img {
  width: 100%; height: 220px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s;
}
.about-gallery-grid img:hover { transform: scale(1.03); }

/* ============================================================
   ORDER PAGE
   ============================================================ */
.order-platforms-section { padding: 80px 64px; background: var(--beige); }
.order-platforms-section .section-title { margin-bottom: 48px; }
.order-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.order-card {
  background: var(--green);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s;
}
.order-card:hover { transform: translateY(-4px); }
.order-card-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.order-card-name {
  font-size: 22px;
  font-weight: 900;
  color: var(--beige);
  letter-spacing: -0.5px;
}
.order-card-desc {
  font-size: 13px;
  color: rgba(241,222,213,0.48);
  line-height: 1.6;
}

.order-instore {
  padding: 80px 64px;
  background: var(--green);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.order-instore .section-label { color: var(--pink); }
.order-instore .section-title { color: var(--beige); margin-bottom: 36px; }

/* ============================================================
   LOCATIONS PAGE
   ============================================================ */
.locations-details {
  padding: 80px 64px;
  background: var(--beige);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.locations-details .loc-value { color: var(--dark); }
.locations-details .loc-label { color: var(--green); opacity: 1; }
.locations-details .section-title { color: var(--dark); }
.locations-details .section-label { color: var(--red); }
.location-map-full {
  border-radius: 24px;
  overflow: hidden;
  height: 420px;
  border: 1px solid rgba(7,57,26,0.12);
}
.location-map-full iframe { width: 100%; height: 100%; border: none; display: block; }

.hours-table { width: 100%; margin-top: 8px; border-collapse: collapse; }
.hours-table td {
  font-size: 14px;
  color: rgba(7,57,26,0.68);
  padding: 7px 0;
  border-bottom: 1px solid rgba(7,57,26,0.07);
}
.hours-table td:first-child { font-weight: 700; color: var(--green); min-width: 120px; }

/* ============================================================
   FADE IN ANIMATION
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-card:nth-child(2),
  .why-card:nth-child(3) { margin-top: 0; }
  .menu-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .menu-items-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .order-grid { grid-template-columns: repeat(2, 1fr); }
  .about-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--green);
    padding: 24px 20px;
    gap: 16px;
    border-top: 1px solid rgba(242,131,131,0.1);
    z-index: 199;
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  }
  .nav-hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 56px 24px; }
  .hero-right { display: none; }
  .hero-stats { gap: 24px; }

  .why-section,
  .menu-section,
  .delivery-section,
  .reviews-section { padding: 60px 24px; }

  .story-section {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 56px;
  }
  .gallery-strip { grid-template-columns: 1fr 1fr; }

  .location-section {
    grid-template-columns: 1fr;
    padding: 60px 24px;
  }
  .order-instore {
    grid-template-columns: 1fr;
    padding: 60px 24px;
  }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  footer { padding: 48px 24px 28px; }

  .menu-hero { padding-left: 20px; padding-right: 20px; }
  .menu-cat-section { padding: 56px 20px; }
  .menu-nav-inner { padding: 0 20px; }
  .menu-items-grid { grid-template-columns: 1fr; }
  .menu-preview-grid { grid-template-columns: 1fr; }

  .page-hero { padding: 72px 24px; }
  .about-story-section { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
  .values-section,
  .about-gallery { padding: 60px 24px; }
  .values-grid,
  .order-grid { grid-template-columns: 1fr; }
  .about-gallery-grid { grid-template-columns: 1fr 1fr; }

  .order-platforms-section { padding: 60px 24px; }
  .locations-details { grid-template-columns: 1fr; padding: 60px 24px; }
  .pizza-info-bar { gap: 16px; }
}

@media (max-width: 480px) {
  .gallery-strip,
  .about-gallery-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PHOTO CAROUSEL
   ============================================================ */
.photo-carousel {
  overflow: hidden;
  background: var(--dark);
  padding: 80px 0;
}
.photo-carousel-header {
  text-align: center;
  padding: 0 24px 48px;
}
.carousel-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.carousel-row {
  display: flex;
  gap: 12px;
  width: max-content;
  will-change: transform;
}
.carousel-row img {
  height: 240px;
  width: auto;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  display: block;
}
.carousel-row--left  { animation: carousel-left  50s linear infinite; }
.carousel-row--right { animation: carousel-right 50s linear infinite; }
.photo-carousel:hover .carousel-row { animation-play-state: paused; }

@keyframes carousel-left  {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes carousel-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.blog-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}
.blog-card-title {
  font-family: 'Matrice', 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 12px;
}
.blog-card-excerpt {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}
.blog-card-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
}

/* Blog post page */
.blog-post-hero {
  background: var(--green);
  padding: 100px 64px 72px;
}
.blog-post-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 24px 100px;
}
.blog-post-body h2 {
  font-family: 'Matrice', 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--dark);
  margin: 40px 0 16px;
}
.blog-post-body p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}
.blog-post-body img {
  width: 100%;
  border-radius: 16px;
  margin: 32px 0;
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-post-hero { padding: 80px 24px 56px; }
  .photo-carousel { padding: 60px 0; }
  .carousel-row img { height: 180px; }
}
