/* ============================================================
   Le Café Bleu — feuille de style partagée
   Palette azur / crème, typographies Marcellus + Source Sans 3
   ============================================================ */

:root {
  --navy:        #103a56;
  --navy-dark:   #0c2c42;
  --blue:        #2c7fb5;
  --blue-soft:   #eaf3f9;
  --cream:       #f5f1e6;
  --ink:         #17303d;
  --muted:       #4a5b66;
  --muted-light: #6a7a84;
  --border-cream:#d9d2bf;
  --border-blue: #cfe0ec;
  --shadow-card: 0 12px 30px rgba(16, 58, 86, 0.08);
  --shadow-soft: 0 16px 40px rgba(16, 58, 86, 0.10);
  --radius-lg:   24px;
  --radius-md:   20px;
  --radius-sm:   12px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-size: 19px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Marcellus', Georgia, serif;
  font-weight: 400;
  line-height: 1.12;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy); text-decoration: underline; }

::selection { background: #cfe4f0; }

.page { min-height: 100vh; background: var(--cream); overflow-x: hidden; }

/* Entrée en fondu appliquée au contenu principal de chaque page */
@keyframes cbFade {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
main { animation: cbFade 0.5s ease both; }

/* ---------- Utilitaires ---------- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.4rem; }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 1.4rem; }

.eyebrow {
  color: var(--blue);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
  margin: 0;
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 2rem;
  border: none;
  border-radius: 999px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-navy  { background: var(--navy); color: #fff; }
.btn-navy:hover { color: #fff; }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { color: var(--navy); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline-white:hover { color: #fff; }
.btn-outline-blue  { background: transparent; color: #fff; border: 2px solid #4f88ad; }
.btn-outline-blue:hover { color: #fff; }
.btn-block { width: 100%; }

.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-row.center { justify-content: center; }

/* ---------- Bandeau d'information ---------- */
.banner {
  background: var(--navy);
  color: var(--blue-soft);
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 0.65rem 1rem;
  font-weight: 500;
}

/* ---------- En-tête / navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 241, 230, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-cream);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.7rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Marcellus', serif;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: 'Marcellus', serif; font-size: 1.5rem; color: var(--navy); }
.brand-tag  {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
}

.nav { display: flex; align-items: center; gap: 0.35rem; flex-wrap: wrap; }
.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 1.15rem;
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 600;
  white-space: nowrap;
}
.nav a:hover { text-decoration: none; background: var(--blue-soft); color: var(--navy); }
.nav a.active { background: var(--navy); color: #fff; }

/* ---------- Emplacements d'image (placeholders) ---------- */
.image-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 1rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.4;
  background: linear-gradient(135deg, #2c7fb5 0%, #103a56 100%);
  color: rgba(234, 243, 249, 0.85);
}
.image-slot--light {
  background: linear-gradient(135deg, #dcebf5 0%, #b9d6ea 100%);
  color: #3a5a70;
}

/* ---------- Section « Bienvenue » / intro ---------- */
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-soft { background: var(--blue-soft); }
.intro {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) 1.4rem;
  text-align: center;
}
.intro h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); margin: 0.6rem 0 1.2rem; }
.intro p  { font-size: 1.2rem; color: #3a4d58; max-width: 720px; margin: 0 auto; }

.section-head { text-align: center; margin-bottom: 2.6rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--navy); margin: 0.5rem 0 0; }

/* ============================================================
   ACCUEIL
   ============================================================ */

/* Héros — plein cadre */
.hero-a { position: relative; max-width: 1180px; margin: 1rem auto 0; padding: 0 1.4rem; }
.hero-a__frame {
  position: relative;
  height: 74vh;
  min-height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-a__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,58,86,0.15) 0%, rgba(16,58,86,0.62) 100%);
  pointer-events: none;
}
.hero-a__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  pointer-events: none;
}
.hero-a__kicker {
  color: #dbeaf3;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 0.8rem;
}
.hero-a__title {
  color: #fff;
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin: 0;
  text-shadow: 0 2px 20px rgba(16,58,86,0.4);
}
.hero-a__lead {
  color: #f0f5f9;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  max-width: 620px;
  margin: 1rem 0 2rem;
  text-shadow: 0 1px 8px rgba(16,58,86,0.5);
}
.hero-a__content .btn-row { pointer-events: auto; }

.price { font-weight: 700; color: var(--blue); font-size: 1.2rem; }

/* Plats signature — rangées alternées */
.signature-rows { display: flex; flex-direction: column; gap: 2.4rem; }
.dish-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.dish-row--reverse { grid-template-columns: 1fr 1.1fr; }
.dish-row__media { height: 320px; border-radius: var(--radius-md); overflow: hidden; }
.dish-row--reverse .dish-row__media { order: 2; }
.dish-row--reverse .dish-row__text  { order: 1; text-align: right; }
.dish-row__text h3 { font-size: 1.9rem; color: var(--navy); margin: 0 0 0.6rem; }
.dish-row__text p  { color: var(--muted); margin: 0 0 1rem; font-size: 1.15rem; }
.dish-row__text .price { font-size: 1.3rem; }

.center { text-align: center; }
.mt-lg { margin-top: 2.6rem; }

/* Bandeau réservation */
.cta-band { max-width: 1180px; margin: 0 auto clamp(3rem, 6vw, 5rem); padding: 0 1.4rem; }
.cta-band__inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--blue);
  padding: clamp(2.4rem, 5vw, 3.6rem);
  text-align: center;
  color: #fff;
}
.cta-band__inner h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin: 0 0 0.8rem; color: #fff; }
.cta-band__inner p  { font-size: 1.15rem; margin: 0 0 1.8rem; color: var(--blue-soft); }

/* ============================================================
   MENU
   ============================================================ */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: clamp(2.6rem, 6vw, 4rem) 1.4rem;
  text-align: center;
}
.page-hero__kicker {
  color: #7fb8dd;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.86rem;
  font-weight: 700;
  margin: 0 0 0.8rem;
}
.page-hero h1 { color: #fff; font-size: clamp(2.6rem, 5vw, 4rem); margin: 0 0 0.8rem; }
.page-hero p  { color: #cfe0ec; font-size: 1.15rem; max-width: 640px; margin: 0 auto; }

.menu-wrap { max-width: 920px; margin: 0 auto; padding: clamp(2.4rem, 5vw, 4rem) 1.4rem; }

.menu-highlight {
  background: var(--blue-soft);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-md);
  padding: 1.8rem 2rem;
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.menu-highlight h3 { font-size: 1.6rem; color: var(--navy); margin: 0 0 0.3rem; }
.menu-highlight p  { margin: 0; color: var(--muted); font-size: 1.05rem; }
.menu-highlight__price { text-align: right; }
.menu-highlight__price .big { font-weight: 700; color: var(--blue); font-size: 1.4rem; }
.menu-highlight__price .small { color: var(--muted-light); font-size: 0.95rem; }

.menu-section { margin-bottom: 3rem; }
.menu-section h2 {
  font-size: 2rem;
  color: var(--navy);
  margin: 0 0 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.menu-section h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-cream);
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #eae3d2;
}
.menu-item h3 {
  font-size: 1.3rem;
  color: var(--ink);
  margin: 0 0 0.25rem;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
}
.menu-item p { margin: 0; color: #5a6b76; font-size: 1.02rem; }
.menu-item .price { font-size: 1.2rem; white-space: nowrap; }

.menu-note { text-align: center; color: var(--muted-light); font-size: 0.98rem; margin: 2rem 0 0; }

/* ============================================================
   RÉSERVATION
   ============================================================ */
.resa-intro {
  background: var(--blue-soft);
  padding: clamp(2.6rem, 6vw, 4rem) 1.4rem;
  text-align: center;
  border-bottom: 1px solid var(--border-blue);
}
.resa-intro h1 { color: var(--navy); font-size: clamp(2.4rem, 5vw, 3.6rem); margin: 0.5rem 0 0.6rem; }
.resa-intro p  { color: var(--muted); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }

.resa-wrap { max-width: 1080px; margin: 0 auto; padding: clamp(2.4rem, 5vw, 4rem) 1.4rem; }
.resa-grid { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 2rem; align-items: start; }

.resa-form {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.8rem, 4vw, 2.6rem);
}
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.02rem;
}
.field--full { margin-top: 1.2rem; }
.field input,
.field select,
.field textarea {
  min-height: 54px;
  padding: 0 1rem;
  border: 2px solid var(--border-blue);
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  font-family: 'Source Sans 3', sans-serif;
  color: var(--ink);
  background: #fbfaf5;
}
.field textarea { min-height: auto; padding: 0.8rem 1rem; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--blue); }

.form-hint { text-align: center; color: #8a97a0; font-size: 0.9rem; margin: 1rem 0 0; }

.resa-aside {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3.5vw, 2.4rem);
}
.resa-aside h3 { color: #fff; font-size: 1.5rem; margin: 0 0 1.4rem; }
.resa-aside__list { display: flex; flex-direction: column; gap: 1.3rem; font-size: 1.05rem; }
.resa-aside__label {
  color: #7fb8dd;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.resa-aside__value { color: var(--blue-soft); }
.resa-aside__value .dim { color: #9fc4dd; }

/* Confirmation */
.resa-confirm {
  max-width: 620px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(2.2rem, 5vw, 3.4rem);
  text-align: center;
}
.resa-confirm__check {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
}
.resa-confirm h2 { color: var(--navy); font-size: 2rem; margin: 0 0 0.8rem; }
.resa-confirm > p { color: var(--muted); font-size: 1.15rem; margin: 0 0 1.6rem; }
.resa-summary {
  text-align: left;
  background: var(--blue-soft);
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  margin-bottom: 1.8rem;
}
.resa-summary__row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid #d5e4ef;
}
.resa-summary__row:last-child { border-bottom: none; }
.resa-summary__row span { color: var(--muted-light); }
.resa-summary__row strong { color: var(--navy); }

.hidden { display: none; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 44vh;
  min-height: 340px;
  margin-bottom: 2.4rem;
  border: 1px solid var(--border-blue);
}
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.contact-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-card);
}
.contact-card h3 { color: var(--navy); font-size: 1.4rem; margin: 0 0 0.8rem; }
.contact-card p  { margin: 0; color: var(--muted); font-size: 1.1rem; }
.contact-card p + p { margin-top: 1rem; }
.contact-card .muted { color: var(--muted-light); font-size: 1rem; }

/* ============================================================
   PIED DE PAGE
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  color: #cfe0ec;
  padding: clamp(2.6rem, 5vw, 3.6rem) 1.4rem 2rem;
}
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
.footer-brand .brand-badge { width: 42px; height: 42px; font-size: 1.3rem; }
.footer-brand .name { font-family: 'Marcellus', serif; font-size: 1.5rem; color: #fff; }
.footer-col p { margin: 0; color: #cfe0ec; font-size: 1.05rem; line-height: 1.7; }
.footer-col .tagline { color: #9fc4dd; max-width: 320px; }
.footer-label {
  color: #7fb8dd;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.footer-bottom {
  max-width: 1180px;
  margin: 2.4rem auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid #1c4966;
  color: #6f95af;
  font-size: 0.92rem;
  text-align: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .dish-row,
  .dish-row--reverse { grid-template-columns: 1fr; }
  .dish-row--reverse .dish-row__media { order: 0; }
  .dish-row--reverse .dish-row__text  { order: 0; text-align: left; }
  .resa-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
}

@media (max-width: 560px) {
  body { font-size: 18px; }
  .field-grid { grid-template-columns: 1fr; }
  .header-inner { gap: 0.6rem; }
  .nav a { padding: 0 0.9rem; font-size: 1rem; }
}
