/* ══════════════════════════════════════
   CHEF RO'S PITA BASKET  –  Main styles
   ══════════════════════════════════════ */

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

:root {
  --red:   #c8102e;
  --dark:  #111111;
  --cream: #f4efe6;
  --white: #ffffff;
  --serif: 'Montserrat', sans-serif;
  --script:'Dancing Script', cursive;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  background: var(--dark);
  color: var(--dark);
  overflow-x: hidden;
}

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

/* ── NAVBAR ────────────────────────────── */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  width: 100%;
  background: transparent;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

/* Logo — left aligned */
.navbar-logo {
  display: block;
  text-decoration: none;
  flex-shrink: 0;
}
.navbar-logo img {
  height: 150px;
  width: auto;
  display: block;
}

.btn-nav-order {
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background .2s;
  z-index: 1;
}
.btn-nav-order:hover,
.navbar .glf-button.btn-nav-order:hover {
  background: #a30d24 !important;
  background-color: #a30d24 !important;
  color: var(--white) !important;
}

/* Override GloriaFood default styles */
.glf-button {
  background-color: var(--red) !important;
  background: var(--red) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 6px !important;
  border: none !important;
  cursor: pointer !important;
  font-family: var(--serif) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  padding: 14px 32px !important;
  height: auto !important;
  width: auto !important;
  min-width: unset !important;
  min-height: unset !important;
  line-height: normal !important;
  box-shadow: none !important;
  display: inline-block !important;
  white-space: nowrap !important;
}
.glf-button:hover {
  background-color: #a30d24 !important;
  background: #a30d24 !important;
}

/* Hero ORDER ONLINE button — red */
.hero-ctas .glf-button.btn-primary {
  background-color: var(--red) !important;
  background: var(--red) !important;
  color: var(--white) !important;
  border: none !important;
  font-size: 14px !important;
  padding: 16px 36px !important;
}
.hero-ctas .glf-button.btn-primary:hover {
  background-color: #a30d24 !important;
  background: #a30d24 !important;
}

/* CTA ORDER ONLINE NOW button — white on red bg */
.cta-band .glf-button.btn-order-big,
.cta-band .glf-button.btn-order-big:link,
.cta-band .glf-button.btn-order-big:visited {
  background-color: var(--white) !important;
  background: var(--white) !important;
  color: var(--red) !important;
  border: 3px solid var(--white) !important;
}
.cta-band .glf-button.btn-order-big:hover,
.cta-band .glf-button.btn-order-big:focus {
  background-color: #f0f0f0 !important;
  background: #f0f0f0 !important;
  color: var(--red) !important;
  border-color: #f0f0f0 !important;
  transform: translateY(-2px);
}

.nav-buttons {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1;
}

.btn-nav-contact {
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.5);
  white-space: nowrap;
  transition: border-color .2s, color .2s;
}
.btn-nav-contact:hover { border-color: var(--white); color: var(--white); }

/* Mirror spacer — invisible, same size, keeps logo centred */
.btn-nav-mirror {
  visibility: hidden;
  pointer-events: none;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
}

/* ── MOBILE NAV OVERLAY ─────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: #0d0d0d;
  z-index: 300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.mobile-nav a:hover { color: var(--red); }
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
}

/* ── HERO ────────────────────────────────
   Text LEFT (45%), photo RIGHT (55%).
   Photo blends into dark bg via gradient.
   ────────────────────────────────────── */
.hero {
  width: 100%;
  height: clamp(560px, 70vh, 720px);
  display: flex;
  background: #000000;
  position: relative;
  overflow: hidden;
}

/* LEFT text column */
.hero-left {
  flex: 0 0 48%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 180px 40px 40px 72px;
  position: relative;
  z-index: 2;
}

.hero-welcome {
  font-family: var(--script);
  font-size: 38px;
  color: var(--red);
  margin-bottom: 2px;
}

.hero-title {
  font-size: clamp(60px, 7.5vw, 110px);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -2px;
  margin-bottom: 0;
  white-space: nowrap;
}

.hero-title-red {
  display: block;
  color: var(--red);
  font-size: clamp(60px, 7.5vw, 110px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 22px;
  white-space: nowrap;
}

.hero-tagline {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.7;
  margin-bottom: 16px;
}

.hero-rule {
  width: 52px;
  height: 3px;
  background: var(--red);
  margin-bottom: 0;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  transition: background .2s, transform .1s;
}
.btn-primary:hover { background: #a30d24; transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 32px;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 4px;
  transition: border-color .2s;
}
.btn-ghost:hover { border-color: var(--white); }

/* RIGHT photo column — bleeds to right & top/bottom edges */
.hero-right {
  flex: 0 0 52%;
  overflow: hidden;
  position: relative;
}

/* Subtle left-edge fade so text flows into the image */
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #000000 0%,
    rgba(0,0,0,0.3) 18%,
    transparent 40%
  );
  z-index: 1;
  pointer-events: none;
}

/* Transparent PNG — sits naturally on the dark hero */
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── OUR STORY ────────────────────────────
   Cream full-width bg.
   Mascot LEFT, text RIGHT.
   ────────────────────────────────────── */
.story {
  width: 100%;
  background: var(--cream);
  display: flex;
  align-items: stretch;
}

.story-image {
  flex: 0 0 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px 0 48px;
}
/* Transparent PNG — no crop wrapper needed */
.story-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
}

.story-content {
  flex: 1;
  padding: 72px 80px 72px 40px;
}

.section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 10px;
}
.red { color: var(--red); }

.red-bar {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin-bottom: 28px;
}

.story-content p {
  font-size: 14px;
  line-height: 1.85;
  color: #3a3a3a;
  margin-bottom: 14px;
}

.story-sign {
  font-family: var(--script);
  font-size: 26px !important;
  color: var(--red) !important;
  margin-top: 20px !important;
  margin-bottom: 0 !important;
}

.story-socials {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}

.story-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555555;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: color .2s;
}
.story-social-link svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.story-social-link:hover { color: var(--red); }

/* ── VALUES ───────────────────────────────
   Full-width dark, red top border, 5 cols.
   Bottom: torn SVG edge into red CTA.
   ────────────────────────────────────── */
.values {
  width: 100%;
  background: #000000;
  border-top: 4px solid var(--red);
  padding: 56px 48px 0;
  position: relative;
}

.values-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding-bottom: 48px;
}

.value-col {
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid #2a2a2a;
}
.value-col:last-child { border-right: none; }

.val-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
}
.val-icon svg {
  width: 100%;
  height: 100%;
}

.value-col h3 {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.4;
}
.value-col p {
  font-size: 13px;
  color: #999;
  line-height: 1.7;
}


/* ── CTA BANNER ───────────────────────────
   RED background, script + white button.
   ────────────────────────────────────── */

/* ── GOOGLE REVIEWS ── */
.eapps-link,
.eapps-google-reviews-title-link,
[class*="eapps-link"] {
  display: none !important;
  visibility: hidden !important;
}

.reviews-section {
  width: 100%;
  background: #000000 !important;
  border-top: 4px solid var(--red);
  padding: 80px 48px 64px;
}

.reviews-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cta-band {
  width: 100%;
  background: url('assets/red-footer.png') center top / cover no-repeat;
  padding: 80px 80px 52px;
}

.cta-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-left-block {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.cta-script {
  font-family: var(--script);
  font-size: 34px;
  color: var(--white);
  line-height: 1.25;
}

.cta-arrow {
  font-size: 28px;
  color: var(--white);
  line-height: 1;
  flex-shrink: 0;
}

/* White button, RED text */
.btn-order-big {
  background: var(--white);
  color: var(--red);
  border: 3px solid var(--white);
  text-decoration: none;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 22px 52px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-order-big svg { color: var(--red); flex-shrink: 0; }
.btn-order-big:hover { background: #f5f5f5; transform: translateY(-2px); }

.cta-right-text {
  flex: 1;
  text-align: right;
}

/* ── FOOTER ───────────────────────────── */
.footer {
  background: #000000;
  padding: 28px 40px;
  text-align: center;
}
.footer-brand {
  font-family: var(--script);
  font-size: 26px;
  color: var(--red);
  margin-bottom: 4px;
}
.footer-copy {
  font-size: 12px;
  color: var(--white);
}

.footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin: 16px 0;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aaaaaa;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color .2s;
}
.footer-social-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.footer-social-link:hover { color: var(--red); }

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 900px) {
  /* Navbar: mobile — show both buttons, no hamburger */
  .hamburger { display: none; }
  .navbar { padding: 0 16px; height: 120px; justify-content: space-between; gap: 16px; }
  .navbar-logo { flex-shrink: 1; min-width: 0; }
  .navbar-logo img { height: 110px; max-width: 200px; object-fit: contain; }

  /* Both buttons visible, stacked vertically on mobile */
  .nav-buttons {
    position: static;
    transform: none;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
  }
  .btn-nav-order,
  .btn-nav-contact,
  .glf-button.btn-nav-order {
    font-size: 11px !important;
    padding: 10px 14px !important;
    letter-spacing: 0.8px !important;
    width: 100% !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  /* Hero: stack vertically */
  .hero { flex-direction: column; min-height: auto; height: auto; }
  .hero-left {
    flex: none;
    padding: 140px 24px 40px;
    text-align: center;
    align-items: center;
  }
  .hero-right {
    flex: none;
    height: 360px;
    width: 100%;
  }
  .hero-ctas { justify-content: center; }

  /* Story: stack */
  .story { flex-direction: column; }
  .story-image {
    flex: none;
    padding: 40px 24px 0;
    justify-content: center;
  }
  .story-image img { max-width: 240px; }
  .story-content { padding: 32px 24px 48px; text-align: center; }
  .red-bar { margin: 0 auto 28px; }

  /* Values: 2 cols */
  .values { padding: 40px 20px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-col { border-right: none; border-bottom: 1px solid #222; }
  .value-col:last-child { border-bottom: none; }

  /* Values: 2 cols */
  .values { padding: 40px 20px 0; }

  /* CTA: stack */
  .cta-band { padding: 36px 24px 40px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-left-block { flex-direction: column; gap: 8px; }
  .cta-arrow { display: none; }
}

@media (max-width: 480px) {
  .hero-title,
  .hero-title-red { font-size: 42px; }
  .values-grid { grid-template-columns: 1fr; }
  .btn-order-big { padding: 16px 28px; font-size: 13px; }
}
