@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

:root {
  --red: #c92a20;
  --dark: #1f1713;
  --cream: #fff7ec;
  --gold: #f5b642;
  --muted: #6f625a;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(31, 23, 19, 0.14);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--dark);
  background: linear-gradient(180deg, var(--cream), #ffffff 45%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 247, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 42, 32, 0.18);
}

.navbar {
  max-width: 1100px;
  margin: auto;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--red);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
}

.nav-links a:hover {
  background: var(--red);
  color: var(--white);
}

.hero {
  max-width: 1100px;
  margin: 40px auto 20px;
  padding: 40px 22px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 30px;
}

.eyebrow {
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1.02;
  margin: 10px 0 18px;
}

.hero p, .page-title p, .location-card p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.18));
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn, button {
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn-primary, button {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(201, 42, 32, .25);
}

.btn-secondary {
  background: var(--white);
  color: var(--red);
  box-shadow: var(--shadow);
}

.btn:hover, button:hover {
  transform: translateY(-2px);
}

.cards-section, .location-grid {
  max-width: 1100px;
  margin: 20px auto 60px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card, .location-card, .contact-card {
  background: var(--white);
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(31, 23, 19, 0.08);
}

.info-card span { font-size: 2rem; }
.info-card h2, .location-card h2 { margin-bottom: 8px; }

.page {
  max-width: 1100px;
  margin: auto;
  padding: 42px 22px 70px;
}

.page-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}

.menu-preview {
  display: grid;
  justify-items: center;
  gap: 22px;
}

.menu-preview img {
  width: min(100%, 850px);
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: var(--white);
}

.location-card { text-align: center; }
.location-card button { margin-top: 12px; }

.contact-card {
  max-width: 650px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
  text-align: center;
}

.contact-link {
  color: var(--red);
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: 800;
  text-decoration: none;
}

.contact-link:hover { text-decoration: underline; }

dialog {
  width: min(92vw, 760px);
  border: 0;
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
}

dialog::backdrop { background: rgba(31, 23, 19, .62); }

dialog iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 18px;
}

.close {
  float: right;
  width: 40px;
  height: 40px;
  padding: 0;
  font-size: 1.4rem;
}


.hero-photo {
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
  filter: none;
}

.contact-layout {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 24px;
  align-items: center;
}

.contact-photo {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: var(--white);
  border: 1px solid rgba(31, 23, 19, 0.08);
}

@media (max-width: 760px) {
  .navbar, .hero { flex-direction: column; text-align: center; }
  .navbar { justify-content: center; }
  .hero { grid-template-columns: 1fr; padding-top: 25px; }
  .hero-actions { justify-content: center; }
  .cards-section, .location-grid, .contact-layout { grid-template-columns: 1fr; }
  .contact-photo { max-width: 420px; margin: 0 auto; }
  dialog iframe { height: 260px; }
}

.location-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
}

@media (max-width: 760px) {
  .location-grid-two { grid-template-columns: 1fr; }
}

.lead {
  font-size: 1.2rem !important;
  font-weight: 600;
}

.hero-full {
  margin-top: 28px;
}

.hero-image-card {
  background: linear-gradient(135deg, #ffffff, #fff1e2);
  border: 1px solid rgba(201, 42, 32, .16);
  border-radius: 34px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.hero-image-card .hero-photo {
  display: block;
  height: 360px;
  max-height: none;
}

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

.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}

.small {
  padding: 12px 18px;
  font-size: .95rem;
}

.highlight-card {
  background: linear-gradient(135deg, #fff, #fff0ed);
  border-color: rgba(201, 42, 32, .22);
}

.event-banner, .event-list {
  max-width: 1100px;
  margin: 0 auto 70px;
  padding: 32px;
  border-radius: 30px;
  background: var(--dark);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow);
}

.event-banner p {
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  margin-bottom: 0;
}

.event-banner .eyebrow { color: var(--gold); }
.event-banner h2 { margin: 6px 0 10px; font-size: clamp(1.6rem, 3vw, 2.4rem); }

.day-badge {
  display: inline-flex;
  background: rgba(201, 42, 32, .1);
  color: var(--red);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  margin-bottom: 10px;
}

.card-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.location-card button { margin-top: 0; }

.contact-card h2 { margin: 0 0 6px; }
.contact-note { color: var(--muted); margin: 8px 0 0; line-height: 1.6; }

.event-list {
  display: block;
  background: var(--white);
  color: var(--dark);
  text-align: center;
}

.event-list h2 { margin-top: 0; }

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.event-grid span {
  background: var(--cream);
  border: 1px solid rgba(31, 23, 19, .08);
  border-radius: 18px;
  padding: 16px;
  font-weight: 800;
}

@media (max-width: 760px) {
  .hero-image-card .hero-photo { height: 240px; }
  .event-banner { display: grid; text-align: center; }
  .event-banner .btn { justify-self: center; }
  .event-grid { grid-template-columns: 1fr; }
}


/* Améliorations design */
body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 10%, rgba(245, 182, 66, .22), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(201, 42, 32, .12), transparent 26%),
    linear-gradient(180deg, #fff7ec 0%, #fff 48%, #fff7ec 100%);
}

.site-header {
  box-shadow: 0 8px 24px rgba(31, 23, 19, .06);
}

.brand::before {
  content: "🍕";
  margin-right: 8px;
}

.hero-full {
  position: relative;
  overflow: hidden;
  max-width: 1140px;
  margin-top: 34px;
  padding: 46px 28px;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(31, 23, 19, .96), rgba(89, 24, 17, .9)),
    url('../images/camion.jpg') center/cover;
  box-shadow: var(--shadow);
}

.hero-full::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }
.hero-full h1, .hero-full .lead { color: var(--white); }
.hero-full .lead { color: rgba(255,255,255,.82) !important; }
.hero-full .eyebrow { color: var(--gold); }

.hero-image-card {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.35);
  transform: rotate(1deg);
}

.hero-image-card .hero-photo {
  border-radius: 24px;
}

.info-card {
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.info-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 999px 999px 0 0;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(31, 23, 19, .16);
}

.info-card span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--cream);
  margin-bottom: 8px;
}

.page-title h1 {
  position: relative;
  display: inline-block;
}

.page-title h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green, #198754), var(--red));
}

.menu-preview img,
.contact-photo,
dialog {
  border: 1px solid rgba(201, 42, 32, .16);
}

.location-card,
.contact-card,
.event-list {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
}

@media (max-width: 760px) {
  .hero-full {
    margin: 18px 14px 20px;
    border-radius: 26px;
    padding: 34px 20px;
  }
  .hero-full::after { inset: 10px; border-radius: 20px; }
  .hero-image-card { transform: none; }
}

/* Version design améliorée */
.trust-strip {
  max-width: 1080px;
  margin: -10px auto 65px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-strip div {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(201, 42, 32, .14);
  border-radius: 22px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(31, 23, 19, .08);
}

.trust-strip strong {
  display: block;
  color: var(--red);
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.trust-strip span {
  color: var(--muted);
  font-weight: 700;
  font-size: .9rem;
}

.section {
  max-width: 1100px;
  margin: 0 auto 72px;
  padding: 0 22px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.split-section h2,
.section-title h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
  margin: 8px 0 16px;
}

.split-section p,
.section-title p,
.featured-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.photo-stack {
  position: relative;
  min-height: 330px;
}

.photo-stack img {
  position: absolute;
  width: 72%;
  height: 250px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 8px solid #fff;
}

.photo-stack img:first-child {
  top: 0;
  left: 0;
  transform: rotate(-3deg);
}

.photo-stack img:last-child {
  right: 0;
  bottom: 0;
  transform: rotate(4deg);
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.featured-grid article {
  background: #fff;
  border: 1px solid rgba(31, 23, 19, .08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

.featured-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(31, 23, 19, .16);
}

.featured-grid span {
  font-size: 2rem;
}

.featured-grid h3 {
  margin: 12px 0 8px;
  font-size: 1.15rem;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.pro-contact {
  margin-bottom: 54px;
}

@media (max-width: 900px) {
  .trust-strip, .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .split-section { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .trust-strip, .featured-grid { grid-template-columns: 1fr; }
  .photo-stack { min-height: auto; display: grid; gap: 16px; }
  .photo-stack img { position: static; width: 100%; height: auto; transform: none !important; }
  .email-link { font-size: 1rem; word-break: break-word; }
}


/* Finitions version avancée */
.nav-links a.nav-pill {
  background: var(--red);
  color: var(--white);
  border-radius: 999px;
  padding: 13px 22px;
  box-shadow: 0 10px 25px rgba(201, 42, 32, .22);
  border: 0;
}
.nav-links a.nav-pill:hover {
  background: var(--red);
  color: var(--white);
  transform: none;
  box-shadow: 0 10px 25px rgba(201, 42, 32, .22);
}
.nav-links a:hover { background: var(--red); color: var(--white); }

.section-soft {
  background: rgba(255,255,255,.64);
  border: 1px solid rgba(201,42,32,.10);
}
.gallery-section, .reviews-section {
  max-width: 1100px;
  margin: 0 auto 70px;
  padding: 0 22px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 42, 32, .14);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-grid article {
  background: var(--white);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(31,23,19,.08);
}
.review-grid strong {
  color: var(--gold);
  letter-spacing: .08em;
}
.review-grid p { line-height: 1.7; color: var(--muted); }
.site-footer {
  max-width: 1100px;
  margin: 20px auto 0;
  padding: 28px 22px 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 24px;
  color: var(--muted);
  border-top: 1px solid rgba(201,42,32,.16);
  text-align: center;
}
.site-footer strong { color: var(--red); }
.call-floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  background: var(--red);
  color: white;
  text-decoration: none;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(201,42,32,.35);
}
.compact-actions { margin-top: 12px; }
@media (max-width: 760px) {
  .gallery-grid, .review-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 220px; }
  .nav-links a.nav-pill { padding: 11px 15px; font-size: .92rem; }
  .call-floating { left: 14px; right: 14px; text-align: center; justify-content: center; }
  body { padding-bottom: 58px; }
}


/* Bandeau temporaire des congés */
.holiday-notice {
  max-width: 1100px;
  margin: 28px auto 0;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  background: linear-gradient(135deg, #fff4cf, #fffaf0);
  border: 2px solid var(--red);
  border-radius: 26px;
  box-shadow: 0 14px 35px rgba(201, 42, 32, .14);
}

.holiday-icon {
  flex: 0 0 auto;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  font-size: 2.25rem;
  box-shadow: 0 8px 20px rgba(31, 23, 19, .1);
}

.holiday-copy h2 {
  margin: 4px 0 8px;
  font-size: clamp(1.25rem, 3vw, 1.85rem);
  line-height: 1.25;
}

.holiday-copy p {
  margin: 4px 0;
  line-height: 1.55;
}

.holiday-kicker {
  color: var(--red);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.holiday-thanks {
  color: var(--muted);
  font-size: .95rem;
}

@media (max-width: 760px) {
  .holiday-notice {
    margin: 18px 16px 0;
    padding: 20px;
    align-items: flex-start;
    gap: 15px;
  }

  .holiday-icon {
    width: 54px;
    height: 54px;
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .holiday-notice {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
