/* ============================================================
   ACCUEIL — La Scala (v2)
   Hero immersif + sections chaudes
   ============================================================ */

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  background:
    linear-gradient(160deg, rgba(20, 10, 3, .55) 0%, rgba(30, 15, 5, .40) 60%, rgba(15, 8, 2, .65) 100%),
    url('/restaurant-site/assets/images/restaurant.jpg') center / cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 7rem 1.5rem 6rem;
  border-bottom: 1px solid rgba(0,0,0,.15);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -100px 140px -80px rgba(20, 8, 0, .55);
  pointer-events: none;
}

.hero-content {
  display: inline-block;
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: .6rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
  letter-spacing: -.01em;
}

.hero p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 1.75rem;
  line-height: 1.6;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Bouton hero CTA primaire */
.hero .btn {
  font-size: 1rem;
  padding: .85rem 1.8rem;
  box-shadow: 0 6px 20px rgba(181, 117, 46, .45);
}

/* Bouton hero secondaire */
.hero .btn-ghost-light {
  display: inline-block;
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.45);
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  padding: .8rem 1.6rem;
  backdrop-filter: blur(4px);
  transition: background .2s, border-color .2s;
}
.hero .btn-ghost-light:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.7); }

/* ── GRILLE INFOS ─────────────────────────────────────────── */
.grid--infos {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.1rem;
}

.card.info {
  background: var(--card, #fff);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(20, 8, 0, .07);
  transition: transform .2s, box-shadow .22s;
}
.card.info:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(20, 8, 0, .12); }

.info__media {
  width: 100%; height: 160px; object-fit: cover; display: block;
}
.info__body { padding: 1rem 1.1rem; }
.info__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: var(--accent, #2C6B4A);
  margin-bottom: .3rem;
  font-weight: 700;
}
.info__excerpt { color: #4B3D2E; font-size: .96rem; }

/* ── MENU SPÉCIAL ────────────────────────────────────────── */
.special-menu {
  margin: 2.4rem auto;
  max-width: var(--max-width);
}

.special-card {
  background: linear-gradient(135deg, #fff 60%, #FBF6EE);
  border: 1px solid rgba(181, 117, 46, .25);
  border-radius: 16px;
  box-shadow: 0 10px 32px rgba(181, 117, 46, .12);
  padding: 2rem 1.8rem;
  text-align: center;
  animation: fadeSlideUp .35s ease both;
  position: relative;
  overflow: hidden;
}

.special-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
}

.special-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text);
  margin-bottom: .35rem;
  font-size: 1.5rem;
  font-weight: 700;
}
.special-card__price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-dark, #8A561C);
  margin-bottom: .6rem;
}
.special-description { color: var(--muted); font-size: .98rem; }

/* ── OFFRES & SERVICES ───────────────────────────────────── */
.offerings { margin: 2.6rem auto; max-width: var(--max-width); }

.grid--offers {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.1rem;
}

.offering-card {
  background: var(--card, #fff);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(20, 8, 0, .06);
  padding: 1.4rem 1rem;
  text-align: center;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  transition: transform .2s, box-shadow .22s, border-color .22s;
}
.offering-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(20, 8, 0, .11);
  border-color: rgba(181, 117, 46, .25);
}

.offering-icon {
  font-size: 2rem;
  margin-bottom: .25rem;
  display: block;
}

.offering-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.offering-text {
  color: var(--muted);
  font-size: .92rem;
  min-height: 38px;
}

.offering-cta {
  margin-top: auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: .25rem;
}

/* ── MOYENS DE PAIEMENT ──────────────────────────────────── */
.payments {
  background: linear-gradient(180deg, var(--bg-soft, #F3EDE3), var(--bg, #FAF7F2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 1.5rem;
  margin: 2rem 0 0;
}

.payments__container { max-width: var(--max-width); margin: 0 auto; }

.payments h2 {
  margin: 0;
  font-size: 1.45rem;
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text);
}
.payments__subtitle { margin: .2rem 0 1rem; color: var(--muted); }

.payment-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: .85rem;
}

.payment-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem .9rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(20, 8, 0, .04);
  transition: box-shadow .2s, transform .2s;
}
.payment-item:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(20, 8, 0, .09); }

.payment-item .label {
  font-weight: 700;
  margin-bottom: .35rem;
  color: var(--text);
  font-size: .95rem;
}
.payment-item .details { font-size: .88rem; color: var(--muted); }

.logo-list {
  list-style: none;
  padding: .5rem 0 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  justify-content: center;
}
.logo-list img {
  height: 24px;
  width: auto;
  display: block;
  transition: transform .15s;
}
.payment-item:hover .logo-list img { transform: translateY(-2px); }

@media (hover: none) { .payment-item:hover .logo-list img { transform: none; } }

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { padding: 5rem 1rem 4.5rem; }
}

@media (max-width: 600px) {
  .hero { padding: 4rem .75rem 3.5rem; }
  .hero h1 { font-size: 2rem; }
}
