/* --- RESTAURANT ARDOISE --- */
.restaurant-ardoise {
  background: linear-gradient(135deg, #23272b 80%, #181a1d 100%);
  border-radius: 22px;
  margin: 32px auto 24px auto;
  padding: 24px 18px 18px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.32);
  max-width: 420px;
}
.cat-title {
  font-family: 'Pacifico', cursive;
  color: #f7f3e9;
  font-size: 2.1rem;
  text-align: center;
  margin: 0 0 18px 0;
  letter-spacing: 0.04em;
  font-weight: 400;
}
.cat-menu-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cat-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed #bdbdbd33;
}
.cat-menu-item:last-child {
  border-bottom: none;
}
.cat-menu-name {
  font-family: 'Pacifico', cursive;
  color: #fffbe7;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}
.cat-menu-price {
  font-family: 'Raleway', sans-serif;
  color: #f7f3e9;
  font-size: 1.18rem;
  font-weight: 700;
}
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&display=swap');

:root {
  --text: #f5f8fb;
  --muted: #8fa8c2;
  --accent: #6aadce;      /* bleu acier — identité WE */
  --accent-2: #4a8aae;
  --navy: #14244a;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Raleway, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(106, 173, 206, 0.10), transparent 36%),
    radial-gradient(circle at bottom right, rgba(74, 138, 174, 0.08), transparent 32%),
    linear-gradient(180deg, #101e3a 0%, #14244a 40%, #101e3a 100%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
}

/* TOP NAV */
.topnav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 14px 0;
}

.topnav-inner {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.topnav-link {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 999px;
  background: #14244a;
  border: 1px solid rgba(255, 255, 255, 0.30);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text);
  font-family: Raleway, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.30), 0 4px 16px rgba(0, 0, 0, 0.45);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.topnav-link:hover {
  background: rgba(106, 173, 206, 0.22);
  border-color: rgba(106, 173, 206, 0.6);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.45), 0 4px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

/* HERO */
.hero {
  position: relative;
  min-height: 36svh;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  border-radius: 0 0 34px 34px;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -3;
}

.hero::before {
  background-image:
    linear-gradient(180deg, rgba(16, 30, 58, 0.22) 0%, rgba(16, 30, 58, 0.65) 55%, rgba(16, 30, 58, 0.97) 100%),
    url("pictures/enseigne%20panorama.JPG");
  filter: saturate(1.0) contrast(1.04);
  background-position: center 52%;
}

.hero::after {
  background:
    radial-gradient(circle at center, rgba(106, 173, 206, 0.08), transparent 45%),
    linear-gradient(180deg, rgba(11, 24, 41, 0.05), rgba(11, 24, 41, 0.22));
  opacity: 0.45;
  z-index: -2;
}

.hero .topbar {
  position: absolute;
  inset: 18px 0 auto 0;
  z-index: 3;
}

.topbar-inner {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand,
.quick-actions a,
.chip,
.tab-btn,
.contact-card,
.gallery-card,
.menu-item,
.footer {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(5, 11, 18, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadow);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.brand-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #9dd4e8);
  box-shadow: 0 0 18px rgba(106, 173, 206, 0.6);
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.quick-actions a {
  background: rgba(6, 14, 22, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.quick-actions a:hover,
.tab-btn:hover,
.cta-row a:hover {
  transform: translateY(-2px);
  border-color: rgba(106, 173, 206, 0.55);
}

/* WE LOGO BLOCK */
.we-logo {
  display: inline-block;
}

.we-logo-img {
  display: block;
  width: 220px;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.55)) drop-shadow(0 6px 24px rgba(0, 0, 0, 0.5));
}

.hero-content {
  width: min(var(--max), calc(100% - 28px));
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(7, 15, 23, 0.50);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}

h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(2.1rem, 5.5vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.hero p.lead {
  margin: 0;
  max-width: 760px;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.6;
  color: #e4e7eb;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #f0f2f4;
  font-weight: 600;
  font-size: 0.95rem;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.cta-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, border-color 0.18s ease;
  border: 1px solid transparent;
}

.cta-primary {
  background: linear-gradient(135deg, #4a8aae, #6aadce);
  color: #fff;
  box-shadow: 0 14px 34px rgba(106, 173, 206, 0.28);
}

.cta-secondary {
  background: rgba(7, 15, 23, 0.56);
  border-color: rgba(255, 255, 255, 0.10) !important;
}

/* SECTIONS */
.section {
  padding: 2px 0 10px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
  text-align: center;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.55;
}

/* TABS */
.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.tab-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  padding: 9px 11px;
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s ease;
}

@media (max-width: 600px) {
  .tabs {
    gap: 6px;
    margin-bottom: 12px;
  }

  .tab-btn {
    padding: 5px 8px;
    font-size: 0.52rem;
  }
}

.tab-btn.active {
  background: linear-gradient(135deg, rgba(106, 173, 206, 0.22), rgba(74, 138, 174, 0.18));
  border-color: rgba(106, 173, 206, 0.52);
  color: #fff;
}

.menu-panel {
  display: none;
}

.menu-panel.active {
  display: block;
  animation: fadeUp 0.28s ease;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.menu-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(106, 173, 206, 0.14);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow);
}

.menu-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.menu-line + .meta {
  margin-top: 7px;
}

.name {
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.35;
}

.price {
  text-align: right;
  font-weight: 800;
  white-space: nowrap;
  color: #fff;
  font-size: 1rem;
}

.meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.note-block {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  background: rgba(106, 173, 206, 0.08);
  border: 1px solid rgba(106, 173, 206, 0.22);
  color: #cce3f0;
  line-height: 1.6;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 16px;
  padding-top: 18px;
}

.gallery-card {
  min-height: 280px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadow);
  background: #0e1b28;
  background-size: cover;
  background-position: center;
}

.gallery-card.large {
  min-height: 420px;
  background-image:
    linear-gradient(180deg, rgba(5, 12, 20, 0.12), rgba(5, 12, 20, 0.64)),
    url("pictures/Le%20Panorama%20au%20cr%C3%A9puscule.png");
}

.gallery-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.gallery-card.top {
  background-image:
    linear-gradient(180deg, rgba(5, 12, 20, 0.12), rgba(5, 12, 20, 0.70)),
    url("pictures/enseigne%20panorama.JPG");
}

.gallery-card.bottom {
  background-image:
    linear-gradient(180deg, rgba(8, 16, 24, 0.22), rgba(8, 16, 24, 0.78)),
    url("pictures/coin%20gourmand.png");
  background-position: center;
  background-size: cover;
  display: grid;
  place-items: end start;
  padding: 20px;
}

.gallery-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px;
  background: linear-gradient(180deg, transparent, rgba(4, 10, 18, 0.92));
}

.gallery-title {
  margin: 0 0 6px;
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.gallery-desc {
  margin: 0;
  color: #d7dbe0;
  line-height: 1.55;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  padding-top: 16px;
}

.contact-card {
  border-radius: var(--radius-xl);
  padding: 20px;
  background: linear-gradient(180deg, rgba(106, 173, 206, 0.09), rgba(106, 173, 206, 0.03));
  border: 1px solid rgba(106, 173, 206, 0.16);
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-card a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 4px;
  font-size: 0.94rem;
  line-height: 1.7;
}

.hours-table td {
  padding: 2px 0;
  color: var(--muted);
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--text);
  padding-right: 18px;
  white-space: nowrap;
}

.hours-table .hours-closed {
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(106, 173, 206, 0.55);
  background: rgba(106, 173, 206, 0.1);
}

.social-icon {
  display: block;
  width: 22px !important;
  min-width: 22px;
  max-width: 22px;
  height: 22px !important;
  min-height: 22px;
  max-height: 22px;
  flex: 0 0 22px;
  fill: currentColor;
}

.social-link.maps {
  color: #cde4ff;
}

.social-link.facebook {
  color: #c8d8ff;
}

.footer {
  margin: 34px 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 24px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.badge-list span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #edf0f4;
  font-size: 0.9rem;
  font-weight: 600;
}

/* MOBILE NAV */
.mobile-nav {
  display: none;
  position: sticky;
  bottom: 12px;
  z-index: 20;
  padding: 0 14px 12px;
}

.mobile-nav-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: rgba(6, 14, 22, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 999px;
  padding: 10px;
  box-shadow: var(--shadow);
}

.mobile-nav a {
  text-align: center;
  padding: 12px 10px;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .menu-grid,
  .gallery,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .social-links {
    width: 100%;
  }

  .social-link {
    width: 100%;
    justify-content: center;
  }

  .gallery-stack {
    grid-template-rows: unset;
    grid-template-columns: 1fr;
  }

  .gallery-card.large,
  .gallery-card,
  .gallery-card.top,
  .gallery-card.bottom {
    min-height: 280px;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding-bottom: 12px;
  }

  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .quick-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-content {
    padding-top: 70px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .quick-actions a.hide-mobile {
    display: none;
  }

  .mobile-nav {
    display: block;
  }
}

/* =========================================================
   SPLIT LAYOUT — bandeau haut fixe / contenu défilant en bas
   ========================================================= */

.split-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Bandeau haut — photo fixe + logo + nav horizontale */
.panel-left {
  width: 100%;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: 220px;
  z-index: 10;
  overflow: hidden;
  isolation: isolate;
}

.panel-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(16, 30, 58, 0.30) 0%, rgba(16, 30, 58, 0.82) 100%),
    url("pictures/enseigne%20panorama.JPG");
  background-size: cover;
  background-position: center 40%;
  z-index: -1;
}

.panel-left-inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 20px 48px;
  gap: 48px;
}

/* Navigation horizontale */
.side-nav {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.side-nav-link {
  display: block;
  padding: 12px 28px;
  border-radius: 999px;
  background: rgba(20, 36, 74, 0.70);
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: var(--text);
  font-family: Raleway, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.side-nav-link:hover {
  background: rgba(106, 173, 206, 0.22);
  border-color: rgba(106, 173, 206, 0.60);
  transform: translateY(-2px);
}

/* Zone de contenu — défile en dessous du bandeau */
.panel-right {
  flex: 1;
  min-width: 0;
}

.panel-right main {
  padding: 36px 32px 40px;
  max-width: 960px;
  margin: 0 auto;
}

/* Responsive — bandeau compact sur mobile */
@media (max-width: 600px) {
  .panel-left {
    height: auto;
  }

  .panel-left-inner {
    flex-direction: column;
    padding: 16px 20px;
    gap: 12px;
  }

  .we-logo-img {
    width: 140px;
  }

  .panel-right main {
    padding: 20px 16px 90px;
  }

  .mobile-nav {
    display: block;
  }
}
