/*
  joes-enhanced.css
  Enhancement layer for Joe's Pizza Italian Cuisine & Bar
  Loaded AFTER the existing style.css — never modifies the base sheet.

  Color reference (from existing site):
    --accent:       #f15a24  (primary CTA orange-red)
    --accent-alt:   #EC5823  (section h5 / hover states)
    --btn-alt:      #BA5656  (secondary button)
    --link:         #ff6a00  (anchor color)
    --dark-bg:      #1a1a1a  (contact/dark sections)
    --footer-bg:    #2e2e2e  (footer)
    --text-dark:    #4d4d4d  (body copy on light)
    --text-mid:     #999999  (subdued text)

  Font reference:
    Body/headings:  Arial, sans-serif
    Display accent: 'Special Elite', cursive
    Menu headings:  Candara, Calibri, sans-serif
*/

/* ================================================================
   CSS CUSTOM PROPERTIES
================================================================ */
:root {
  --accent:           #f15a24;
  --accent-alt:       #EC5823;
  --btn-alt:          #BA5656;
  --link:             #ff6a00;
  --dark-bg:          #8B1A1A;   /* Italian red — replaces near-black */
  --mid-bg:           #6E1212;   /* Deeper red */
  --footer-bg:        #5A0D0D;   /* Deep red footer */
  --light-bg:         #f5ede0;   /* Warm cream */
  --site-yellow:      #FFFBEA;   /* Very light warm yellow */
  --site-yellow-mid:  #F0E4B8;   /* Shady warm yellow */
  --text-dark:        #4d4d4d;
  --text-mid:         #888888;
  --white:            #ffffff;
  --border:           #e0d5c8;
  --transition:       background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

/* ================================================================
   GLOBAL LINK COLORS — matches source: a { color: #ff6a00; }
================================================================ */
a {
  color: var(--link);
}
a:hover,
a:focus {
  color: var(--accent);
}

/* ================================================================
   BODY — base background and padding
================================================================ */
body {
  padding-top: 70px;
  background-color: var(--site-yellow);
}

/* Body paragraph sizing — bumped from 1.1em for readability */
p {
  font-size: 1.15em;
  line-height: 1.7;
}

/* ================================================================
   SHARED BUTTONS
================================================================ */
.btn-primary-cta,
.btn-section-cta {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
  border-radius: 6px;
  font-family: Arial, sans-serif;
  font-size: 1.1em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary-cta:hover,
.btn-primary-cta:focus,
.btn-section-cta:hover,
.btn-section-cta:focus {
  background-color: var(--accent-alt);
  border-color: var(--accent-alt);
  color: var(--white);
  text-decoration: none;
  opacity: 0.92;
}

.btn-secondary-cta-inner {
  display: inline-block;
  padding: 11px 26px;
  background-color: transparent;
  border: 2px solid var(--white);
  border-radius: 6px;
  font-family: Arial, sans-serif;
  font-size: 1.1em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: var(--transition);
}


.btn-secondary-cta {
  display: inline-block;
  padding: 11px 26px;
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 6px;
  font-family: Arial, sans-serif;
  font-size: 1.1em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: var(--transition);
}
.btn-secondary-cta:hover,
.btn-secondary-cta:focus {
  background-color: var(--white);
  color: var(--text-dark);
  text-decoration: none;
}

.btn-directions {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 22px;
  background-color: var(--accent);
  color: var(--white);
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.95em;
  transition: var(--transition);
}
.btn-directions:hover,
.btn-directions:focus {
  background-color: var(--accent-alt);
  color: var(--white);
  text-decoration: none;
}

/* ================================================================
   HEADER ENHANCEMENTS
================================================================ */
#site-header.navbar-fixed-top {
  z-index: 1050;
  background-color: var(--site-yellow);
  border-bottom: 2px solid var(--site-yellow-mid);
  padding: 0;
}

/* Logo — constrain to 1/3 natural height (500×120 → 500×40 displayed) */
.header-logo {
  display: inline-block;
  padding: 5px 0;
  line-height: 1;
}
.logo-top {
  max-height: 40px;
  width: auto;
  display: block;
}
@media (max-width: 767px) {
  .logo-top { max-height: 30px; }
}

/* Logo-to-nav breathing room — desktop only */
@media (min-width: 768px) {
  #site-header .navbar-header { margin-right: 28px; }
}

/* Nav link base color — dark text on light yellow header */
#site-header .navbar-nav > li > a {
  color: var(--text-dark);
}

/* Mobile collapsed nav — match header yellow-mid */
#site-header .navbar-collapse {
  background-color: var(--site-yellow-mid);
  border-color: var(--border);
}
#site-header .navbar-toggle {
  border-color: rgba(0, 0, 0, 0.20);
}
#site-header .navbar-toggle .icon-bar {
  background-color: var(--text-dark);
}

.header-action-btns .btn-header-call {
  color: var(--accent) !important;
  font-weight: 700;
  font-size: 1em;
  padding: 18px 14px;
  transition: var(--transition);
}
.header-action-btns .btn-header-call:hover {
  color: var(--accent-alt) !important;
}

.header-action-btns .btn-header-order {
  background-color: var(--accent);
  color: var(--white) !important;
  border-radius: 4px;
  padding: 8px 16px;
  margin: 10px 8px;
  font-weight: 700;
  font-size: 0.95em;
  transition: var(--transition);
}
.header-action-btns .btn-header-order:hover,
.header-action-btns .btn-header-order:focus {
  background-color: var(--accent-alt);
}

/* Nav active state — accent highlight on light yellow header */
#site-header .navbar-nav > .active > a,
#site-header .navbar-nav > .active > a:hover,
#site-header .navbar-nav > .active > a:focus {
  color: var(--accent);
  background-color: transparent;
  border: 1px solid var(--accent);
  border-radius: 3px;
}

/* Nav link hover */
#site-header .navbar-nav > li > a:hover,
#site-header .navbar-nav > li > a:focus {
  color: var(--accent);
  background-color: transparent;
}

.order-dropdown {
  min-width: 160px;
}
.order-dropdown > li > a {
  font-size: 0.95em;
  padding: 8px 16px;
}

/* Compact nav — accommodates expanded menu set */
.nav-v4 .navbar-nav > li > a {
  font-size: 1.05em;
  font-weight: 600;
  padding-left: 8px;
  padding-right: 8px;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .nav-v4 .navbar-nav > li > a {
    font-size: 1.0em;
    padding: 10px 15px;
    letter-spacing: 0;
  }
}

/* ================================================================
   HERO SECTION
================================================================ */
.hero-section {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 !important;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  background: rgba(80, 5, 5, 0.55);
  padding: 44px 0 40px;
}

/* ================================================================
   HERO + ORDERING COMBINED BACKGROUND WRAPPER (homepage)
   Storefront images span hero → quick-actions → ordering sections
================================================================ */
.hero-ordering-wrapper {
  position: relative;
  overflow: hidden;
  background-color: var(--dark-bg);
}

/* Left panel — bar/cuisine signboard */
.hero-ordering-wrapper::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0; right: 50%;
  background-image: url('../assets/images/joes-pizza-italian-cuisine-bar-signboard.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Right panel — pizza/pasta signboard; top-anchored so sign is visible */
.hero-ordering-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 50%; right: 0;
  background-image: url('../assets/images/joes-pizza-pasta-signboard.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Lift direct children above the background image panels */
.hero-ordering-wrapper > section,
.hero-ordering-wrapper > nav {
  position: relative;
  z-index: 2;
}

/* Hero area: warm translucent so storefront images show through */
.hero-ordering-wrapper .hero-section {
  background-color: rgba(55, 4, 4, 0.42);
}

/* Hero text overlay: lighter since section provides the main tint */
.hero-ordering-wrapper .hero-overlay {
  background: rgba(50, 4, 4, 0.28);
}

/* Quick-actions: more opaque so icons/labels stay legible.
   margin-top creates a gap that reveals the "Cuisine & Bar" sign text on the left image. */
.hero-ordering-wrapper .quick-actions-bar {
  background-color: rgba(80, 8, 8, 0.84);
  margin-top: 38px;
}

/* Ordering: warm semi-transparent — image visible behind platform tiles */
.hero-ordering-wrapper .ordering-section {
  background-color: rgba(60, 5, 5, 0.65);
}

.hero-content {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-eyebrow {
  font-size: 0.82em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  margin: 0 0 10px;
}

.hero-headline {
  font-family: 'Special Elite', cursive;
  font-size: 2.2em;
  color: var(--white);
  margin: 0 0 10px;
  line-height: 1.2;
  text-shadow: 1px 2px 6px rgba(0,0,0,0.7);
}

.hero-subhead {
  font-size: 1.3em;
  color: rgba(255,255,255,0.88);
  margin-bottom: 18px;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .hero-headline { font-size: 1.65em; }
  .hero-subhead  { font-size: 0.95em; }
  .hero-ctas     { flex-direction: column; align-items: center; }
  .hero-ctas a   { width: 220px; text-align: center; }
}

/* ================================================================
   QUICK ACTIONS BAR
================================================================ */
.quick-actions-bar {
  background-color: var(--dark-bg);
  border-top: 3px solid var(--accent);
  padding: 0;
}

.quick-actions-row {
  display: flex;
  margin: 0;
}

.quick-action {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  padding: 0 !important;
}
.quick-action:last-child { border-right: none; }

.quick-action a {
  display: block;
  padding: 18px 12px;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}
.quick-action a:hover,
.quick-action a:focus {
  background-color: var(--accent);
  color: var(--white);
  text-decoration: none;
}

.qa-icon {
  display: block;
  font-size: 1.6em;
  line-height: 1;
  margin-bottom: 4px;
}

.qa-label {
  display: block;
  font-size: 1.2em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ================================================================
   SHARED SECTION STYLES
================================================================ */

/* h5 accent color — matches source:
   .food-menu-section h5, .drink-menu-section h5 { color: #EC5823; } */
h5 {
  color: var(--accent-alt);
}

.section-title {
  font-family: 'Special Elite', cursive;
  font-size: 2.1em;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.section-intro {
  font-size: 1.1em;
  color: var(--text-mid);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.section-header { margin-bottom: 30px; }

.section-cta-wrap {
  margin-top: 36px;
}

.section-cta-wrap .slice-note {
  font-size: 0.88em;
  color: var(--text-mid);
  margin-top: 10px;
}

/* ================================================================
   DISH CARDS (shared by Pizza and Pasta sections)
================================================================ */

/* Make dish-grid a flex container so Bootstrap-floated columns
   become flex items and all cards in a row match height */
.dish-grid {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* Each Bootstrap column is a flex column so image + info stretch */
.dish-card {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
  float: none; /* override Bootstrap float inside flexbox */
}

.dish-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  flex-shrink: 0; /* image never compresses */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #c4a882;
  border-radius: 4px 4px 0 0;
}

/* dish-info fills remaining card height and becomes its own flex column */
.dish-info {
  display: flex;
  flex-direction: column;
  flex: 1;           /* stretch to fill card below the image */
  background-color: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 4px 4px;
  padding: 16px;
}

.dish-info .item-name {
  font-family: Candara, Calibri, Arial, sans-serif;
  font-size: 1.5em;
  font-weight: 900;
  color: var(--text-dark);
  text-transform: uppercase;
  display: block;
  margin-top: 0;
  margin-bottom: 6px;
}

/* Description fills the flexible middle zone, pushing price to bottom */
.dish-info .item-description {
  font-size: 1.2em;
  color: #666;
  display: block;
  flex: 1;           /* grow to fill space between name and price */
  margin-bottom: 12px;
  line-height: 1.45;
}

/* Price is always at the bottom of the card */
.dish-info .item-price {
  font-size: 1.5em;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-top: auto;  /* belt-and-suspenders: pin price to bottom */
}

/* ================================================================
   PIZZA SECTION
================================================================ */
.pizza-section {
  background-color: var(--light-bg);
  padding: 4em 0;
}

.pizza-section .section-title { color: var(--text-dark); }

/* ================================================================
   PASTA SECTION
================================================================ */
.pasta-section {
  background-color: var(--site-yellow);
  padding: 4em 0;
}

/* ================================================================
   MENU CTA STRIP
================================================================ */
.menu-cta-strip {
  background-color: var(--dark-bg);
  padding: 40px 20px;
  text-align: center;
}

.menu-strip-categories {
  color: rgba(255,255,255,0.65);
  font-size: 0.95em;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* ================================================================
   ABOUT SNIPPET
================================================================ */
.about-snippet {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  padding: 0 !important;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-color: var(--dark-bg);
}

.about-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 4em 0;
}

.about-snippet .text-wrapper {
  background-color: rgba(75, 5, 5, 0.85);
  padding: 36px 40px;
  border-radius: 4px;
}

.about-snippet .text-wrapper h2 {
  font-family: 'Special Elite', cursive;
  font-size: 1.9em;
  color: var(--white);
  margin-top: 0;
  margin-bottom: 16px;
}

.about-snippet .text-wrapper p {
  color: rgba(255,255,255,0.85);
  font-size: 1em;
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ================================================================
   BAR SECTION
================================================================ */
.bar-section {
  background-color: var(--light-bg);
  padding: 4em 0;
}

.bar-section .section-title { margin-bottom: 16px; }

.bar-text p {
  color: var(--text-dark);
  line-height: 1.65;
  margin-bottom: 18px;
}

.bar-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.bar-highlights li {
  padding: 6px 0 6px 22px;
  position: relative;
  color: var(--text-dark);
  font-size: 1em;
}
.bar-highlights li::before {
  content: '\2714';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.bar-image {
  height: 320px;
  background-size: cover;
  background-position: center;
  background-color: #c4a882;
  border-radius: 4px;
}

@media (max-width: 767px) {
  .bar-image { margin-top: 28px; height: 240px; }
}

/* ================================================================
   CATERING STRIP
================================================================ */
.catering-strip {
  background-color: var(--accent);
  padding: 48px 20px;
  color: var(--white);
}

.catering-strip .section-title {
  color: var(--white);
  font-family: 'Special Elite', cursive;
  margin-bottom: 12px;
}

.catering-text p {
  color: rgba(255,255,255,0.9);
  font-size: 1em;
  line-height: 1.6;
  margin: 0;
}

.catering-cta-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-top: 10px;
}

.catering-strip .btn-primary-cta {
  background-color: var(--white);
  color: var(--accent);
  border-color: var(--white);
}
.catering-strip .btn-primary-cta:hover {
  background-color: rgba(255,255,255,0.88);
  color: var(--accent-alt);
}

.catering-email-btn {
  border-color: var(--white);
  color: var(--white);
  padding: 10px 22px;
}

@media (max-width: 767px) {
  .catering-cta-col { margin-top: 24px; }
}

/* ================================================================
   HOURS + LOCATION SECTION
================================================================ */
.hours-location-section {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 4em 0;
}

.hours-location-section .section-title {
  color: var(--white);
  margin-bottom: 20px;
}

.hours-location-section address {
  font-style: normal;
  line-height: 1.9;
  color: rgba(255,255,255,0.82);
  margin-bottom: 24px;
  font-size: 1em;
}

.hours-location-section address a {
  color: var(--accent);
  text-decoration: none;
}
.hours-location-section address a:hover {
  color: var(--white);
  text-decoration: underline;
}

.hours-table {
  width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
}
.hours-table th,
.hours-table td {
  padding: 6px 10px 6px 0;
  font-size: 0.95em;
  color: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  vertical-align: top;
}
.hours-table th {
  font-weight: 700;
  text-align: left;
  min-width: 110px;
  color: var(--white);
}

.neighborhood-note {
  font-size: 0.88em;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
  font-style: italic;
}

#google-map {
  border-radius: 4px;
  display: block;
  min-height: 420px;
}

@media (max-width: 767px) {
  #google-map { min-height: 280px; margin-top: 32px; }
}

/* ================================================================
   GOOGLE REVIEWS SECTION
================================================================ */
.reviews-section {
  background-color: var(--light-bg);
  padding: 60px 20px;
}

.reviews-section .section-title {
  margin-bottom: 30px;
}

/* Static review cards (fallback until live widget installed) */
.reviews-static-grid {
  margin-bottom: 32px;
}

.review-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px 22px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.review-stars {
  color: #f5a623;
  font-size: 1.1em;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.review-text {
  font-size: 0.97em;
  color: #555;
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 14px;
  padding: 0;
  border: none;
}

.review-attribution {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-style: normal;
}

.reviewer-name {
  font-weight: 700;
  font-size: 0.93em;
  color: var(--text-dark);
}

.review-date {
  font-size: 0.82em;
  color: var(--text-mid);
}

.review-source-link {
  font-size: 0.8em;
  color: var(--accent);
  text-decoration: none;
  margin-left: auto;
}
.review-source-link:hover { color: var(--accent-alt); text-decoration: underline; }

.reviews-cta-row {
  margin-top: 12px;
}

.reviews-write-btn {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
  margin-left: 12px;
}
.reviews-write-btn:hover {
  background-color: var(--accent) !important;
  color: var(--white) !important;
}

/* ================================================================
   FAQ SECTION
================================================================ */
.faq-section {
  background-color: var(--site-yellow);
  padding: 4em 0;
}

.faq-section .section-title {
  margin-bottom: 36px;
}

.faq-item {
  margin-bottom: 30px;
  padding-right: 30px;
}

.faq-question {
  font-family: Candara, Calibri, Arial, sans-serif;
  font-size: 1.15em;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 8px;
  margin-top: 0;
}

.faq-answer {
  font-size: 1.0em;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.faq-answer a {
  color: var(--accent);
}
.faq-answer a:hover {
  color: var(--accent-alt);
}

/* ================================================================
   FOOTER ENHANCEMENTS
================================================================ */
.footer {
  background-color: var(--footer-bg);
  color: var(--white);
  padding-top: 50px;
  padding-bottom: 0;
}

.footer-main { padding-bottom: 30px; }

.footer-logo {
  max-height: 60px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}

.footer-col h4 {
  font-family: 'Special Elite', cursive;
  font-size: 1.05em;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  margin-top: 18px;
}
.footer-col h4:first-child { margin-top: 0; }

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.footer-links li { line-height: 2em; }

.footer-links a,
.footer-social a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 1.0em;
  transition: var(--transition);
}
.footer-links a:hover,
.footer-social a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.footer-contact-col address {
  font-style: normal;
  line-height: 1.9;
  color: rgba(255,255,255,0.75);
  font-size: 1.0em;
  margin-bottom: 16px;
}
.footer-contact-col address a {
  color: var(--accent);
  text-decoration: none;
}
.footer-contact-col address a:hover {
  color: var(--white);
}

.footer-contact-col p {
  font-size: 1.0em;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* Explore row — full-width inline link list above footer-bottom */
.footer-explore {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0 8px;
}
.footer-explore-title {
  font-family: 'Special Elite', cursive;
  font-size: 0.95em;
  color: rgba(255,255,255,0.5);
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-links--explore {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2px 0;
}
.footer-links--explore li {
  line-height: 1.8em;
}
.footer-links--explore li:not(:last-child)::after {
  content: '\00a0\00b7\00a0';
  color: rgba(255,255,255,0.25);
}
.footer-links--explore a {
  color: rgba(255,255,255,0.65);
  font-size: 0.85em;
  text-decoration: none;
}
.footer-links--explore a:hover {
  color: var(--accent);
}

.footer-bottom {
  background-color: rgba(0,0,0,0.18);
  padding: 16px 0;
  margin-top: 10px;
}

.footer-bottom p {
  font-size: 0.82em;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

/* ================================================================
   RESPONSIVE — MOBILE SPECIFICS
================================================================ */
@media (max-width: 767px) {
  body { padding-top: 56px; }

  .hero-section  { min-height: 300px; }
  .hero-overlay  { padding: 36px 0 30px; }

  .hero-ordering-wrapper .quick-actions-bar { margin-top: 20px; }

  .quick-action a { padding: 14px 6px; }
  .qa-icon        { font-size: 1.3em; }
  .qa-label       { font-size: 0.72em; }

  .dish-card     { margin-bottom: 20px; }

  .faq-item      { padding-right: 0; }

  .footer-col    { margin-bottom: 28px; }
}

@media (max-width: 420px) {
  .hero-eyebrow  { font-size: 0.75em; }
  .hero-headline { font-size: 1.5em; }
  .section-title { font-size: 1.65em; }
}

/* ================================================================
   ORDERING SECTION (homepage)
================================================================ */
.ordering-section {
  background-color: var(--dark-bg);
  padding: 56px 0 48px;
}

.ordering-section .section-title {
  color: #fff;
}

.ordering-intro {
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.ordering-platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
  margin-bottom: 28px;
}

.ordering-platform-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 248, 230, 0.12);
  border: 1px solid rgba(255, 248, 230, 0.20);
  border-top: 4px solid #f15a24;
  border-radius: 8px;
  padding: 30px 18px 24px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, border-top-color 0.2s ease;
}

.ordering-platform-tile:hover,
.ordering-platform-tile:focus {
  background: rgba(241, 90, 36, 0.22);
  transform: translateY(-3px);
  text-decoration: none;
  outline: 2px solid #f15a24;
  outline-offset: 2px;
}

.ordering-platform-name {
  font-family: 'Special Elite', cursive;
  font-size: 1.5em;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.2;
}

.ordering-platform-type {
  font-size: 1em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 20px;
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.ordering-platform-cta {
  background-color: #f15a24;
  color: #fff;
  font-size: 1.1em;
  font-weight: 700;
  padding: 11px 16px;
  border-radius: 4px;
  width: 100%;
  text-align: center;
  transition: background 0.2s ease;
  line-height: 1.3;
}

.ordering-platform-tile:hover .ordering-platform-cta {
  background-color: #d44e1e;
}

.ordering-phone-note {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.2em;
  margin: 0;
}

.ordering-phone-note a {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  text-decoration: none;
}

.ordering-phone-note a:hover {
  color: #f15a24;
  text-decoration: underline;
}

@media (max-width: 991px) {
  .ordering-platforms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .ordering-platforms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .ordering-platform-tile {
    padding: 22px 12px 18px;
  }

  .ordering-platform-name {
    font-size: 1.2em;
  }

  .ordering-platform-cta {
    font-size: 0.82em;
    padding: 9px 10px;
  }
}

/* ================================================================
   BEST PIZZA PASTA ITALIAN RESTAURANT SECTION
================================================================ */
.best-section {
  background-color: var(--white);
  padding: 4em 0;
}

.best-section .section-title {
  font-size: 1.9em;
}

.best-qualities-grid {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.best-quality-card-col {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  float: none;
}

.best-quality-card {
  background-color: var(--site-yellow);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 6px;
  padding: 24px 22px;
  flex: 1;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.best-quality-title {
  font-family: Candara, Calibri, Arial, sans-serif;
  font-size: 1.2em;
  font-weight: 900;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 0;
  margin-bottom: 10px;
}

.best-quality-desc {
  font-size: 1.0em;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

.best-section-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.btn-outline-cta {
  display: inline-block;
  padding: 11px 26px;
  background-color: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 6px;
  font-family: Arial, sans-serif;
  font-size: 1.1em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: var(--transition);
}
.btn-outline-cta:hover,
.btn-outline-cta:focus {
  background-color: var(--accent);
  color: var(--white);
  text-decoration: none;
}

/* ================================================================
   BEST PIZZA PASTA FAQ SECTION
================================================================ */
.best-faq-section {
  background-color: var(--light-bg);
  padding: 4em 0;
}

.best-faq-section .section-title {
  font-size: 1.65em;
  margin-bottom: 36px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .best-section-cta { flex-direction: column; align-items: center; }
  .best-section-cta a { width: 220px; text-align: center; }
  .best-faq-section .section-title { font-size: 1.4em; }
}
