/* ============================================================
   HOME PAGE — Section-specific styles
   ============================================================ */

/* ----------------------------------------------------------
   Hero
   PHOTO: pizzaria-patio.jpg — daytime patio with food.
   Currently used as hero background with dark scrim.
   Replace with dusk/night patio shot when available.
   See PHOTOGRAPHY_BRIEF.md — Tier 1, Item 1.
   background-position: center 60% keeps food in frame
   and pushes the blue tables toward the bottom edge.
---------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #1A1714;
  background-image:
    linear-gradient(
      to bottom,
      rgba(26, 23, 20, 0.68) 0%,
      rgba(26, 23, 20, 0.55) 40%,
      rgba(26, 23, 20, 0.75) 100%
    ),
    url('/assets/images/hero/pizzaria-patio.jpg');
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
}

/* Amber accent line at top of hero */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-amber) 25%,
    var(--color-amber) 75%,
    transparent 100%
  );
  opacity: 0.5;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: calc(var(--nav-height) + var(--space-3xl)) var(--container-padding) var(--space-3xl);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: heroFadeIn 0.7s ease both;
  animation-delay: 0.15s;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-amber);
  margin-bottom: var(--space-md);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.08;
  color: white;
  margin-bottom: var(--space-lg);
}

.hero__headline em {
  font-style: italic;
  color: var(--color-amber);
}

.hero__sub {
  font-size: var(--text-lg);
  color: rgba(245, 240, 232, 0.78);
  margin-bottom: var(--space-xl);
  font-weight: 400;
}

.hero__actions {
  margin-bottom: var(--space-lg);
}

/* Local note — speaks to regulars who know to call ahead */
.hero__local-note {
  font-size: var(--text-sm);
  color: rgba(245, 240, 232, 0.5);
  letter-spacing: 0.02em;
  margin: 0;
}

/* ----------------------------------------------------------
   Menu showcase
---------------------------------------------------------- */

.menu-showcase {
  background: var(--color-bg);
}

.menu-showcase .section-header h2 {
  color: var(--color-text);
}

/* 3-column grid with pizza dominant */
.menu-showcase__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

/* ----------------------------------------------------------
   Patio section
   Must render as categorically different from sections above.
   Dark, amber, atmospheric. This is the emotional exhale.
---------------------------------------------------------- */

.patio-section {
  position: relative;
  background-color: var(--color-dark-bg);
  color: var(--color-dark-text);
  overflow: hidden;
  padding: var(--space-3xl) 0;
}

/* String light row at top */
.patio-section__lights {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 28px,
    var(--color-amber) 28px,
    var(--color-amber) 32px
  );
  opacity: 0.45;
  pointer-events: none;
}

/* Amber glow from below — like light bouncing off a floor */
.patio-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(232, 164, 48, 0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(232, 164, 48, 0.06) 0%, transparent 60%);
  pointer-events: none;
  animation: amberPulse 6s ease-in-out infinite;
}

@keyframes amberPulse {
  0%, 100% { opacity: 0.10; }
  50%       { opacity: 0.16; }
}

.patio-section .container {
  position: relative;
  z-index: 1;
}

.patio-content {
  max-width: 600px;
}

.patio-section .eyebrow {
  color: var(--color-amber);
}

.patio-section h2 {
  color: var(--color-dark-text);
  margin-bottom: var(--space-lg);
}

.patio-section .patio-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-xl);
  color: rgba(245, 240, 232, 0.65);
  margin-bottom: var(--space-lg);
}

.patio-section p {
  color: rgba(245, 240, 232, 0.72);
  font-size: var(--text-lg);
  line-height: 1.7;
  max-width: 55ch;
}

.patio-cta {
  margin-top: var(--space-xl);
}

/* ----------------------------------------------------------
   Order / CTA section
---------------------------------------------------------- */

.order-cta-section {
  background: var(--color-bg-alt);
  padding: var(--space-3xl) 0;
}

.order-cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.order-cta-copy h2 {
  margin-bottom: var(--space-md);
}

.order-cta-copy p {
  color: var(--color-text-secondary);
  font-size: var(--text-lg);
  max-width: 55ch;
  margin-bottom: var(--space-lg);
}

.order-cta-phone {
  text-align: left;
}

.order-cta-phone__label {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.cta-phone-number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast);
}

.cta-phone-number:hover {
  color: var(--color-primary-dark);
}

.order-cta-phone__hours {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

/* ----------------------------------------------------------
   Trust strip (replaces fake testimonials section)
---------------------------------------------------------- */

.trust-strip {
  background: var(--color-bg-alt);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.trust-strip__items {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: var(--space-xl) var(--space-2xl);
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.trust-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-item__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-secondary);
}

.trust-item__value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
}
