/* ========================================
   Little Italy 54 — Guide pizzerias Longwy & Mexy
   Couleurs: Rouge #c0392b / Vert #27ae60 / Blanc / Crème
   ======================================== */

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

:root {
  --red: #c0392b;
  --red-dark: #a93226;
  --red-light: #fdecea;
  --green: #27ae60;
  --green-dark: #1e8449;
  --green-light: #eafaf1;
  --white: #ffffff;
  --cream: #fdf6ee;
  --brown: #5d4037;
  --brown-light: #8d6e63;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e0e0e0;
  --gray-400: #9e9e9e;
  --gray-600: #757575;
  --gray-800: #2c2c2c;
  --text: #333333;
  --text-light: #666666;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 2px 8px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.12);
  --transition: .3s ease;
  --max-width: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green); }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Sale Banner --- */
.sale-banner {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sale-banner span { white-space: nowrap; }
.sale-banner form { display: inline-flex; margin: 0; }

.sale-banner .escrow-btn {
  background: var(--white);
  color: var(--green-dark);
  border: none;
  padding: 6px 18px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  font-family: inherit;
}

.sale-banner .escrow-btn:hover { background: var(--cream); }

/* --- Navigation --- */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 42px;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--red); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-dark) !important; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.burger span {
  width: 26px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gray-800);
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .4;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 60px 0;
}

.hero h1 {
  font-size: 42px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
  font-weight: 700;
}

.hero h1 span { color: var(--red); }
.hero h1 .accent-green { color: var(--green); }

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,.85);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-small { min-height: 320px; }
.hero-small h1 { font-size: 36px; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
}

.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(192,57,43,.4);
}

.btn-secondary { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--red); }

.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(39,174,96,.4);
}

/* --- Sections --- */
section { padding: 80px 0; }

.section-title {
  font-size: 32px;
  color: var(--brown);
  text-align: center;
  margin-bottom: 16px;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 50px;
}

.bg-cream { background: var(--cream); }
.bg-red { background: var(--red); color: var(--white); }

/* --- Cards (services / menu) --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body { padding: 24px; }

.card h3 {
  font-size: 20px;
  color: var(--brown);
  margin-bottom: 10px;
}

.card p {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 16px;
}

.card .card-link { font-weight: 600; color: var(--red); font-size: 15px; }
.card .card-link:hover { color: var(--green); }

/* --- Menu items --- */
.menu-category { margin-bottom: 50px; }

.menu-category h2 {
  font-size: 26px;
  color: var(--red);
  margin-bottom: 6px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green);
  display: inline-block;
}

.menu-category > p {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 15px;
}

.menu-items { display: grid; gap: 16px; }

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dashed var(--gray-200);
}

.menu-item-name { font-weight: 600; color: var(--brown); font-size: 16px; }
.menu-item-desc { font-size: 14px; color: var(--text-light); margin-top: 2px; }
.menu-item-price { font-weight: 700; color: var(--red); font-size: 17px; white-space: nowrap; margin-left: 20px; }

/* --- Features --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-item { text-align: center; padding: 30px 20px; }

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px;
}

.feature-item h3 { font-size: 18px; color: var(--brown); margin-bottom: 10px; }
.feature-item p { color: var(--text-light); font-size: 15px; }

/* --- CTA Section --- */
.cta-section {
  position: relative;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .2;
}

.cta-overlay { position: absolute; inset: 0; background: var(--gray-800); }

.cta-content { position: relative; z-index: 2; }
.cta-section h2 { font-size: 32px; color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.8); font-size: 18px; margin-bottom: 30px; }

/* --- Blog Cards --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card-date { font-size: 13px; color: var(--gray-400); margin-bottom: 8px; }
.blog-card h3 { font-size: 19px; color: var(--brown); margin-bottom: 10px; line-height: 1.4; }
.blog-card h3 a { color: inherit; }
.blog-card h3 a:hover { color: var(--red); }
.blog-card p { color: var(--text-light); font-size: 15px; margin-bottom: 16px; }

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 14px 0;
  font-size: 14px;
  color: var(--text-light);
  border-bottom: 1px solid var(--gray-200);
}

.breadcrumbs a { color: var(--red); }
.breadcrumbs a:hover { color: var(--green); }
.breadcrumbs span { margin: 0 8px; color: var(--gray-400); }

/* --- Article --- */
.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 0;
}

.article-content h1 { font-size: 34px; color: var(--brown); margin-bottom: 16px; line-height: 1.3; }
.article-meta { color: var(--text-light); font-size: 14px; margin-bottom: 30px; }
.article-content h2 { font-size: 24px; color: var(--red); margin: 36px 0 14px; }
.article-content h3 { font-size: 20px; color: var(--brown); margin: 28px 0 12px; }
.article-content p { margin-bottom: 18px; font-size: 16px; line-height: 1.8; }
.article-content ul, .article-content ol { margin: 18px 0; padding-left: 28px; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: 8px; line-height: 1.7; }

.article-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 30px;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info h2 { font-size: 28px; color: var(--brown); margin-bottom: 20px; }
.contact-info p { font-size: 16px; margin-bottom: 14px; color: var(--text-light); }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-detail h4 { font-size: 15px; color: var(--brown); margin-bottom: 2px; }
.contact-detail p { margin: 0; font-size: 14px; }

/* --- Steps --- */
.steps-list { display: grid; gap: 24px; }

.step-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.step-num {
  width: 52px;
  height: 52px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-item h3 { font-size: 18px; color: var(--brown); margin-bottom: 8px; }
.step-item p { color: var(--text-light); font-size: 15px; }

/* --- Delivery zones --- */
.zone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.zone-item {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--green);
}

.zone-item h3 { color: var(--brown); font-size: 17px; }

/* --- Footer --- */
.footer {
  background: var(--gray-800);
  color: rgba(255,255,255,.7);
  padding: 50px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer h4 { color: var(--white); font-size: 17px; margin-bottom: 18px; }
.footer p { font-size: 14px; line-height: 1.7; margin-bottom: 10px; }
.footer-links a { display: block; color: rgba(255,255,255,.7); font-size: 14px; padding: 4px 0; }
.footer-links a:hover { color: var(--red); }

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

/* --- Lead Form --- */
.lead-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.lead-form h3 {
  font-size: 22px;
  color: var(--brown);
  margin-bottom: 6px;
}

.lead-form > p {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 24px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--brown);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  transition: border-color var(--transition);
  background: var(--gray-50);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(192,57,43,.4);
}

.form-note {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 12px;
  text-align: center;
}

.lead-form-inline {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  padding: 30px;
  border-radius: var(--radius-lg);
  max-width: 500px;
}

.lead-form-inline h3 { color: var(--white); }
.lead-form-inline .form-group label { color: rgba(255,255,255,.9); }
.lead-form-inline .form-group input,
.lead-form-inline .form-group select {
  background: rgba(255,255,255,.95);
}

.lead-form-inline .form-submit {
  background: var(--green);
}
.lead-form-inline .form-submit:hover {
  background: var(--green-dark);
  box-shadow: 0 4px 15px rgba(39,174,96,.4);
}

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .lead-form { padding: 24px; }
}

/* --- Disclaimer --- */
.disclaimer {
  font-size: 12px;
  color: #888;
  text-align: center;
  padding: 12px 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  line-height: 1.6;
  background: rgba(0,0,0,.1);
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .hero h1 { font-size: 34px; }
  .hero-small h1 { font-size: 28px; }
  .section-title { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    gap: 16px;
  }

  .nav-links.active { display: flex; }
  .burger { display: flex; }

  .hero { min-height: 400px; }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 16px; }
  .hero-small { min-height: 250px; }

  section { padding: 50px 0; }
  .section-title { font-size: 24px; }
  .section-subtitle { font-size: 16px; }

  .cards-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  .article-content h1 { font-size: 26px; }
  .article-hero-img { height: 250px; }

  .menu-item { flex-direction: column; }
  .menu-item-price { margin-left: 0; margin-top: 4px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .sale-banner { font-size: 12px; padding: 8px 12px; gap: 8px; }
  .sale-banner .escrow-btn { padding: 5px 12px; font-size: 12px; }
  .zone-grid { grid-template-columns: 1fr; }
}
