/* Light theme + conversion UI (WhatsApp) */

:root{
  --bg:#ffffff;
  --card:#ffffff;
  --text:#121214;
  --muted:#5b5b63;
  --border:rgba(18,18,20,.12);
  --primary:#25D366;
  --primaryText:#06180d;
  --shadow: 0 12px 30px rgba(0,0,0,.10);
  --radius:18px;
  --container: 1120px;
}

html{ scroll-behavior:smooth; }
body{
  background: var(--bg);
  color: var(--text);
}

/* Improve general readability on top of template CSS */
p{ color: var(--muted); }
a{ text-decoration: none; }
.header-wrapper,
.header-area,
.menu-area{
  background:#fff;
}

/* Hero */
.lc-hero{
  position: relative;
  padding: 72px 0 48px;
  overflow:hidden;
  border-bottom: 1px solid var(--border);
}
.lc-hero__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.75) 45%, rgba(255,255,255,.35) 100%),
    url("/assets/img/gallery/la_chiacchieretta_cucina_tipica_salentina_orecchiette_e_maccheroni_1.jpg") center/cover no-repeat;
  transform: scale(1.02);
}
.lc-hero__content{ position:relative; z-index:1; }
.lc-kicker{
  display:inline-block;
  padding:6px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  background: rgba(255,255,255,.65);
  color: var(--muted);
  margin-bottom:14px;
}
.lc-title{
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin: 0 0 12px 0;
  color: var(--text);
  font-weight: 800;
}
.lc-subtitle{
  font-size: 1.05rem;
  max-width: 52ch;
  margin-bottom: 18px;
}
.lc-cta{ display:flex; flex-wrap:wrap; gap:12px; margin-bottom: 14px; }
.lc-btn-whatsapp{
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--primaryText) !important;
  font-weight: 800;
  box-shadow: var(--shadow);
}
.lc-btn-whatsapp:hover{ filter: brightness(.98); transform: translateY(-1px); }
.lc-btn-secondary{
  border-color: rgba(18,18,20,.25) !important;
  color: var(--text) !important;
  background: rgba(255,255,255,.6) !important;
}
.lc-trust{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  font-size:.95rem;
  color: var(--muted);
}
.lc-hero__card{
  background: rgba(255,255,255,.85);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.lc-card-title{
  font-size: 1.15rem;
  margin: 0 0 10px 0;
  color: var(--text);
  font-weight: 800;
}
.lc-card-list{ margin: 0 0 14px 18px; color: var(--muted); }

/* Floating WhatsApp */
.lc-fab{
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primaryText);
  font-weight: 800;
  box-shadow: var(--shadow);
}
.lc-fab__icon{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 18px;
}
.lc-fab:hover{ filter: brightness(.98); transform: translateY(-1px); color: var(--primaryText); }

/* Mobile sticky actions */
.lc-sticky{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
}
.lc-sticky__item{
  padding: 14px 10px;
  text-align: center;
  font-weight: 800;
  color: var(--text);
}
.lc-sticky__item:first-child{ color: #0b3a1e; }
@media (max-width: 767px){
  body{ padding-bottom: 58px; } /* avoid sticky covering content */
  .lc-fab{ bottom: 72px; } /* above sticky */
}

/* Make anchor targets not hidden behind sticky header */
a[id]{ scroll-margin-top: 90px; }

/* Informazioni utili */
.lc-info{
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}
.lc-info-item{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 8px 18px rgba(0,0,0,.04);
}
.lc-info-item h4{
  margin: 0 0 6px 0;
  font-size: 1rem;
}
.lc-info-item p{
  margin: 0;
  font-size: .95rem;
}
.lc-info-note{
  grid-column: 1 / -1;
  background: #f8fdf9;
  border-color: rgba(37,211,102,.35);
}
@media (max-width: 767px){
  .lc-info{
    grid-template-columns: 1fr;
  }
}

/* Review meta (titolo + data) */
.review-meta{
  margin: 4px 0 6px;
  font-size: .9rem;
  color: var(--muted);
}
.review-meta .review-date{
  opacity: .9;
}
