/* ==========================================================================
   EVERIANO'S PIZZA ON 3 WHEELS
   Shared site styles — Italian flag palette + school-bus-yellow tuk-tuk
   ========================================================================== */

:root {
  --cream: #fdfbf3;
  --paper: #ffffff;
  --green: #0d4d2c;
  --green-mid: #1a6b3f;
  --green-deep: #083821;
  --red: #c41e3a;
  --red-dark: #9b1a2e;
  --yellow: #f8c300;
  --yellow-soft: #ffe066;
  --gold: #c9a04b;
  --ink: #2a2a2a;
  --soft: #5a5a5a;
  --muted: #a8a8a8;
  --border: rgba(13, 77, 44, .15);
  --border-gold: rgba(201, 160, 75, .45);
  --shadow-sm: 0 4px 12px rgba(13, 77, 44, .08);
  --shadow: 0 10px 30px rgba(13, 77, 44, .12);
  --shadow-lg: 0 20px 60px rgba(13, 77, 44, .18);
  --radius: 12px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
  margin: 0 0 .5em;
}
p { margin: 0 0 1em; }
a { color: var(--green); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--red); }

/* Italian flag stripe accent at top of every page */
.flag-stripe {
  height: 6px;
  background: linear-gradient(to right,
    var(--green) 0%, var(--green) 33.33%,
    var(--cream) 33.33%, var(--cream) 66.66%,
    var(--red) 66.66%, var(--red) 100%);
}

/* NAV */
nav.top {
  background: var(--cream);
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(8px);
  background: rgba(253, 251, 243, .95);
}
nav.top .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
nav.top .brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--green-deep);
  letter-spacing: -.005em;
}
nav.top .brand img {
  height: 60px;
  width: 60px;
  object-fit: contain;
}
nav.top ul {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}
nav.top a {
  font-size: .95rem;
  color: var(--ink);
  font-weight: 500;
  position: relative;
}
nav.top a:hover { color: var(--red); }
nav.top a.current::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--yellow);
}
nav.top .nav-cta {
  display: inline-block;
  padding: 9px 18px;
  background: var(--red);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .04em;
  transition: all .15s ease;
}
nav.top .nav-cta:hover {
  background: var(--red-dark);
  color: #fff !important;
  transform: translateY(-1px);
}
@media (max-width: 760px) {
  nav.top ul { gap: 14px; }
  nav.top .brand { font-size: 1.15rem; gap: 10px; }
  nav.top .brand img { height: 48px; width: 48px; }
}
@media (max-width: 480px) {
  nav.top .brand span { display: none; }
}

/* PAGE LAYOUT */
.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.page-narrow {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HERO */
.hero {
  background-color: var(--green);
  background-image:
    /* Warm radial highlights */
    radial-gradient(ellipse at top right, rgba(248,195,0,.28), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(196,30,58,.22), transparent 55%),
    /* Vintage diagonal hatch texture */
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,.025) 0px,
      rgba(255,255,255,.025) 1px,
      transparent 1px,
      transparent 8px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(0,0,0,.04) 0px,
      rgba(0,0,0,.04) 1px,
      transparent 1px,
      transparent 12px
    ),
    /* SVG noise/grain for organic texture */
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .35 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    /* Base gradient */
    linear-gradient(180deg, var(--green-mid) 0%, var(--green-deep) 100%);
  color: #fff;
  text-align: center;
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
}
/* Yellow accent slashes in the top corners */
.hero::before, .hero::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 6px;
  background: var(--yellow);
  opacity: .65;
  top: 24px;
  box-shadow: 0 0 24px rgba(248,195,0,.4);
}
.hero::before { left: -60px; transform: rotate(-12deg); }
.hero::after { right: -60px; transform: rotate(12deg); }
/* Italian flag stripe at the bottom of the hero */
.hero {
  border-bottom: 8px solid transparent;
  border-image: linear-gradient(to right,
    var(--green) 0%, var(--green) 33.33%,
    var(--cream) 33.33%, var(--cream) 66.66%,
    var(--red) 66.66%, var(--red) 100%) 1;
}

.hero h1, .hero h2, .hero h3, .hero p { color: #fff; }
.hero .eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid rgba(248,195,0,.4);
  border-radius: 999px;
}
.hero .display {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -.02em;
  text-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.hero .lead {
  font-style: italic;
  font-size: 1.12rem;
  color: rgba(255,255,255,.92);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.hero img.logo {
  width: 220px;
  height: auto;
  margin: 0 auto 28px;
  display: block;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.3));
  border-radius: 50%;
}
.hero-tuktuk {
  width: 100%;
  max-width: 460px;
  height: auto;
  margin-top: 40px;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,.35));
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .06em;
  transition: all .2s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.btn-primary { background: var(--red); color: #fff !important; }
.btn-primary:hover {
  background: var(--red-dark);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-yellow { background: var(--yellow); color: var(--green-deep) !important; }
.btn-yellow:hover {
  background: var(--yellow-soft);
  color: var(--green-deep) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: #fff;
  color: var(--green) !important;
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--green) !important;
  border-color: var(--green);
}
.btn-ghost:hover {
  background: var(--green);
  color: #fff !important;
}

/* SECTIONS */
section {
  padding: 80px 0;
}
section.tight { padding: 56px 0; }
section.alt { background: #fff; }
section.green {
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green) 100%);
  color: #fff;
}
section.green h1, section.green h2, section.green h3, section.green p { color: #fff; }
section.cream { background: var(--cream); }
section.parchment {
  background: var(--paper);
  background-image:
    repeating-linear-gradient(45deg,
      transparent, transparent 24px,
      rgba(248,195,0,.03) 24px, rgba(248,195,0,.03) 48px);
}

.section-head { text-align: center; margin-bottom: 56px; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-head .eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--green-deep);
  margin-bottom: 12px;
}
section.green .section-head .eyebrow { color: var(--yellow); }
section.green .section-head h2 { color: #fff; }
.section-head p { color: var(--soft); font-size: 1.05rem; }
section.green .section-head p { color: rgba(255,255,255,.85); }

/* CARDS / DEPOSIT */
.deposit {
  border: 1px solid var(--border);
  padding: 32px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: center;
  background: #fff;
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 600px) {
  .deposit { grid-template-columns: 1fr; text-align: center; padding: 24px; }
}
.deposit h3 { font-size: 1.2rem; color: var(--green-deep); margin: 0 0 8px; }
.deposit p { font-size: .94rem; color: var(--soft); margin: 0; line-height: 1.5; }
.deposit .price-row { text-align: right; }
@media (max-width: 600px) { .deposit .price-row { text-align: center; } }
.deposit .price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--yellow);
  -webkit-text-stroke: 1px var(--green-deep);
}
.deposit .price-suffix { color: var(--soft); font-size: .9rem; margin-left: 6px; }

/* PACKAGES */
.packages { display: grid; gap: 22px; }
.package {
  border: 1px solid var(--border);
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.package:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
@media (max-width: 680px) { .package { grid-template-columns: 1fr; } }
.package.featured {
  border: 2px solid var(--yellow);
  box-shadow: 0 0 0 4px rgba(248,195,0,.12), var(--shadow);
}
.package .left {
  padding: 32px;
  border-right: 1px solid var(--border);
  position: relative;
}
@media (max-width: 680px) { .package .left { border-right: none; border-bottom: 1px solid var(--border); } }
.package .right { padding: 32px; }
.package .tier {
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .26em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.package h3 {
  font-size: 1.95rem;
  color: var(--green);
  margin: 0 0 4px;
  font-weight: 800;
}
.package .tagline {
  font-size: .98rem;
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 18px;
}
.package .price {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.package.featured .price { color: var(--green); }
.package .per { color: var(--soft); font-size: .95rem; margin-left: 6px; font-weight: 500; }
.package ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.package li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink);
  font-size: .98rem;
  line-height: 1.5;
}
.package li::before {
  content: "✦";
  color: var(--yellow);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
  text-shadow: 0 1px 0 rgba(13,77,44,.2);
}
.best-value {
  position: absolute;
  top: 14px; right: 14px;
  width: 96px; height: 96px;
  pointer-events: none;
  z-index: 2;
}
.best-value text {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .22em;
  fill: var(--green-deep);
  text-transform: uppercase;
}

/* ADD-ONS */
.addons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 720px; margin: 0 auto; }
@media (max-width: 680px) { .addons { grid-template-columns: 1fr; } }
.addon {
  border: 1px solid var(--border);
  padding: 28px 22px;
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  border-top: 4px solid var(--yellow);
  transition: transform .2s ease;
}
.addon:hover { transform: translateY(-3px); }
.addon h4 { font-size: 1.15rem; color: var(--green); margin: 0 0 12px; }
.addon .price {
  font-family: 'Playfair Display', serif;
  color: var(--red);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
}
.addon .per { color: var(--soft); font-size: .85rem; margin-left: 4px; font-weight: 500; }
.addon p { margin: 14px 0 0; font-size: .9rem; color: var(--soft); line-height: 1.5; }

/* NOTES BOX */
.notes {
  border-left: 5px solid var(--yellow);
  padding: 22px 30px;
  background: #fff;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
  margin: 32px 0;
}
.notes p { font-size: .95rem; color: var(--ink); margin: 0; line-height: 1.7; }
.notes strong { color: var(--green-deep); }

/* CTA BLOCK */
.cta-block {
  text-align: center;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  color: #fff;
  padding: 56px 32px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
  opacity: .25;
}
.cta-block h2, .cta-block h3 { color: #fff; }
.cta-block h2 { font-size: 2rem; margin-bottom: 10px; }
.cta-block p { color: rgba(255,255,255,.85); max-width: 540px; margin: 0 auto 24px; }

/* FORMS */
form { display: grid; gap: 16px; max-width: 600px; margin: 0 auto; }
label {
  font-weight: 600;
  font-size: .8rem;
  color: var(--green-deep);
  letter-spacing: .06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
input, textarea, select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  background: #fff;
  font: inherit;
  color: var(--ink);
  border-radius: 8px;
  transition: border-color .15s, box-shadow .15s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(13,77,44,.12);
}
textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
form button { border: none; margin-top: 8px; justify-self: center; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 700;
  color: var(--green-deep);
  font-size: 1.05rem;
  list-style: none;
  position: relative;
  padding-right: 56px;
  font-family: 'Playfair Display', serif;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  background: var(--yellow);
  color: var(--green-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { background: rgba(248,195,0,.06); }
.faq-item .answer {
  padding: 0 26px 22px;
  color: var(--soft);
  font-size: .98rem;
  line-height: 1.7;
}
.faq-item .answer p:last-child { margin-bottom: 0; }

/* PAYMENT CARDS */
.pay-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 920px; margin: 0 auto; }
@media (max-width: 680px) { .pay-grid { grid-template-columns: 1fr; } }
.pay-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  border-top: 4px solid;
}
.pay-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pay-card.cashapp { border-top-color: #00d632; }
.pay-card.venmo { border-top-color: #008cff; }
.pay-card.zelle { border-top-color: #6d1ed4; }
.pay-card.square { border-top-color: #000; }
.pay-card .pay-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  font-family: 'Inter', sans-serif;
}
.pay-card.cashapp .pay-icon { background: #00d632; }
.pay-card.venmo .pay-icon { background: #008cff; }
.pay-card.zelle .pay-icon { background: #6d1ed4; }
.pay-card.square .pay-icon { background: #000; }
.pay-card h3 { color: var(--green-deep); margin: 0 0 6px; font-size: 1.4rem; }
.pay-card .handle {
  display: inline-block;
  font-family: 'Inter', monospace, monospace;
  font-size: 1rem;
  background: var(--cream);
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--green-deep);
  margin: 12px 0;
  font-weight: 600;
  border: 1px dashed var(--gold);
}
.pay-card p { font-size: .92rem; color: var(--soft); margin: 0 0 18px; line-height: 1.5; }

/* FOOTER */
footer {
  background: var(--green-deep);
  color: rgba(255,255,255,.85);
  padding: 48px 24px 24px;
  margin-top: 0;
}
footer .row {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
@media (max-width: 760px) { footer .row { grid-template-columns: 1fr; gap: 24px; } }
footer h4 { color: var(--yellow); margin: 0 0 14px; font-family: 'Playfair Display', serif; font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; }
footer a { color: rgba(255,255,255,.85); }
footer a:hover { color: var(--yellow); }
footer p { font-size: .92rem; line-height: 1.6; margin: 0 0 8px; }
footer .socials { display: flex; gap: 12px; margin-top: 12px; }
footer .socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
footer .socials a:hover { background: var(--yellow); }
footer .socials a:hover svg { fill: var(--green-deep); }
footer .socials svg { width: 18px; height: 18px; fill: #fff; }
footer .copy {
  text-align: center;
  padding-top: 24px;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}
footer .copy .tuktuk-mini { display: inline-block; vertical-align: middle; margin: 0 8px; }

/* DECORATIVE TUK-TUK */
.deco-tuktuk {
  display: block;
  margin: 0 auto;
  max-width: 360px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(13,77,44,.15));
}
.tuktuk-band {
  background: var(--cream);
  padding: 56px 24px;
  text-align: center;
  border-top: 6px solid var(--yellow);
  border-bottom: 6px solid var(--yellow);
}
.tuktuk-band h3 {
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: 16px;
}

/* UTILITIES */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
