:root {
  --bg: #062b3b;
  --bg-alt: #0b3f56;
  --accent: #e08b24;
  --accent-soft: #f5b668;
  --accent-dark: #b86a16;
  --text: #e7d8c3;
  --text-muted: rgba(231, 216, 195, 0.82);
  --card-bg: #0b3f56;
  --border-subtle: rgba(90, 43, 23, 0.45);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.55);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --gap: 24px;
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top left, #0b3f56 0, #062b3b 45%, #021721 100%);
  color: var(--text);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* HEADER & NAV */

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(
      to bottom,
      rgba(6, 43, 59, 0.97),
      rgba(6, 43, 59, 0.94)
    )
    border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-main {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 0.75rem;
  color: var(--accent-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  transform: translateY(-1px);
}

.nav-links a.active {
  background: var(--accent);
  color: #1b120f;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

/* HERO */

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  text-align: left;
  background:
    radial-gradient(circle at top left, rgba(224, 139, 36, 0.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(90, 43, 23, 0.45), transparent 60%),
    #062b3b;
  overflow: hidden;
}

/* Remplace l'image de fond ici quand tu ajouteras une vraie photo */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to right,
      rgba(6, 43, 59, 0.96) 0%,
      rgba(6, 43, 59, 0.88) 38%,
      rgba(6, 43, 59, 0.6) 70%,
      rgba(6, 43, 59, 0.1) 100%
    ),
    url("images/omg-facade.jpg");
  background-size: cover;
  background-position: center;
  mix-blend-mode: screen;
  opacity: 0.55;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom left, rgba(2, 14, 20, 0.9), transparent),
    radial-gradient(circle at top right, rgba(2, 14, 20, 0.7), transparent);
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  padding: 80px 0 70px;
  max-width: 620px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--accent-soft);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 3rem);
  margin: 0 0 16px;
  line-height: 1.08;
}

.title-main {
  color: var(--accent);
}

.title-sub {
  color: var(--text);
  font-size: 1.2rem;
  display: block;
  margin-top: 8px;
  opacity: 0.8;
}

.hero-text {
  max-width: 540px;
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease,
    transform 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #1a1f3a;
  box-shadow: 0 12px 30px rgba(15, 20, 41, 0.7);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(15, 20, 41, 0.8);
}

.btn-outline {
  border-color: rgba(244, 227, 215, 0.45);
  color: var(--text);
  background: rgba(26, 31, 58, 0.7);
}

.btn-outline:hover {
  background: rgba(244, 227, 215, 0.08);
}

/* GENERIC SECTIONS */

.page {
  flex: 1;
}

.section {
  padding: 70px 0;
}

.section-about {
  background: radial-gradient(circle at top, #0b3f56 0, #062b3b 55%, #021721 100%);
}

.section-highlight {
  background: radial-gradient(circle at bottom, #0b3f56 0, #062b3b 55%, #021721 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-contact,
.section-reservation {
  background: #062b3b;
}

.section h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.9rem;
  margin-top: 0;
  margin-bottom: 12px;
}

.section-intro {
  max-width: 540px;
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 30px;
}

.section-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: flex-start;
}

.section-text p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.section-text p + p {
  margin-top: 10px;
}

.section-card {
  background: radial-gradient(circle at top left, rgba(244, 239, 230, 0.03) 0, #0b3f56 65%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 20px 20px 18px;
  box-shadow: var(--shadow-soft);
}

.section-card h3,
.section-card h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.93rem;
}

.info-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
}

.info-list li span:first-child {
  color: var(--text-muted);
}

.info-list li span:last-child {
  text-align: right;
}

.big-phone {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 4px 0 6px;
}

.small-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: radial-gradient(circle at top, rgba(244, 239, 230, 0.03) 0, #0b3f56 65%);
  border-radius: var(--radius-md);
  padding: 18px 18px 16px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 16px 35px rgba(15, 20, 41, 0.7);
}

.card h3 {
  margin-top: 0;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.card li + li {
  margin-top: 6px;
}

.section-cta {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

/* ANIMATIONS DYNAMIQUES */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out,
    box-shadow 0.3s ease-out;
  will-change: opacity, transform;
}

.reveal--from-left {
  transform: translateX(-26px);
}

.reveal--from-right {
  transform: translateX(26px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.reveal-card.is-visible {
  box-shadow: 0 20px 45px rgba(15, 20, 41, 0.8);
}

/* MENU PAGE */

.page-hero {
  padding: 60px 0 40px;
  background: radial-gradient(circle at top, #0b3f56 0, #062b3b 55%, #021721 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.page-hero .hero-kicker {
  margin-bottom: 10px;
}

.page-hero h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2.1rem, 3.6vw, 2.7rem);
  margin: 0 0 12px;
}

.menu-intro-card {
  margin: 34px 0 28px;
  padding: 18px 18px 14px;
  border-radius: var(--radius-md);
  background: radial-gradient(circle at top, #3c4156 0, #1a1f3a 60%);
  border: 1px solid var(--border-subtle);
}

.menu-intro-card h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.menu-intro-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  font-size: 0.93rem;
}

.menu-intro-card li + li {
  margin-top: 4px;
}

.menu-intro-card .price {
  color: var(--accent-soft);
  font-weight: 600;
}

.menu-week-card {
  margin: 24px 0 22px;
  padding: 18px 20px 16px;
  border-radius: var(--radius-md);
  background: radial-gradient(circle at top, #3c4156 0, #1a1f3a 65%);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 16px 35px rgba(15, 20, 41, 0.65);
}

.menu-week-title {
  margin-top: 0;
  margin-bottom: 4px;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.5rem;
}

.menu-week-subtitle {
  margin-bottom: 10px;
  font-size: 0.8rem;
}

.menu-week-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px 18px;
  font-size: 0.85rem;
}

.menu-week-day {
  line-height: 1.3;
}

.menu-week-day strong {
  display: block;
  margin-bottom: 2px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.menu-block {
  background: radial-gradient(circle at top, #3c4156 0, #1a1f3a 65%);
  border-radius: var(--radius-md);
  padding: 18px 18px 16px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 16px 35px rgba(15, 20, 41, 0.65);
}

.menu-block h2 {
  font-size: 1.35rem;
  margin: 0 0 10px;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-weight: 500;
  color: var(--text);
}

.menu-list li + li {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.menu-list p {
  margin: 4px 0 0;
}

.price {
  color: var(--accent-soft);
  white-space: nowrap;
}

/* FORMULAIRE DE RÉSERVATION */

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.form-field input,
.form-field textarea,
.form-field select {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 20, 41, 0.9);
  padding: 9px 11px;
  color: var(--text);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(244, 227, 215, 0.45);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--accent-soft);
  box-shadow: 0 0 0 1px rgba(252, 159, 40, 0.5);
  background: rgba(20, 25, 50, 0.96);
}

.form-feedback {
  font-size: 0.86rem;
  margin-top: 4px;
}

.form-feedback--success {
  color: #9ae6b4;
}

.form-feedback--error {
  color: #feb2b2;
}

/* FOOTER */

.footer {
  background: #0f1429;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.footer-note {
  opacity: 0.76;
}

/* RESPONSIVE */

@media (max-width: 840px) {
  .section-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cards,
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding: 10px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    right: 20px;
    top: 56px;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(15, 20, 41, 0.98);
    padding: 8px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform-origin: top right;
    transform: scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease;
  }

  .nav-links.nav-links--open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .hero {
    min-height: 68vh;
  }

  .hero-content {
    padding: 70px 0 60px;
  }

  .cards,
  .menu-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .menu-week-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    align-items: flex-start;
  }
}

