/* assets/css/main.css — Restaurant Lumière */

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

:root {
  --cream: #faf7f2;
  --gold: #9a7d3e;
  --gold-light: #b89a5e;
  --dark: #faf7f2;
  --dark-mid: #f0ebe0;
  --dark-surface: #e8e0d0;
  --muted: #8a7b6e;
  --text-primary: #2c2418;
  --text-secondary: #6b5042;
}

html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  letter-spacing: .04em;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 56px;
  background: linear-gradient(to bottom, rgba(250,247,242,.97) 0%, transparent 100%);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300; letter-spacing: .22em;
  color: var(--text-primary); text-decoration: none; text-transform: uppercase;
}
.nav-logo-img { height: 36px; width: auto; object-fit: contain; display: block; }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  color: var(--text-secondary); text-decoration: none;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  transition: color .3s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-book {
  border: 1px solid rgba(184,154,94,.4); color: var(--gold);
  padding: 10px 24px; font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; text-decoration: none; transition: all .3s;
}
.nav-book:hover { background: var(--gold); color: var(--cream); }

/* ── HERO ── */
.hero {
  position: relative; height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 40px 100px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.75);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(12,11,9,.1) 0%, transparent 40%, rgba(12,11,9,.45) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 860px; width: 100%;
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 10vw, 120px); font-weight: 300;
  line-height: .9; letter-spacing: .06em; color: var(--cream); margin-bottom: 24px;
}
.hero-logo-img {
  max-width: clamp(200px, 40vw, 480px);
  max-height: 160px;
  width: auto; height: auto;
  object-fit: contain;
  margin-bottom: 24px;
  display: block; margin-left: auto; margin-right: auto;
}
.hero-subtitle {
  font-size: 13px; letter-spacing: .12em; line-height: 1.9;
  color: rgba(250,247,242,.82); max-width: 620px;
  margin: 0 auto;
}
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
}
.scroll-hint span { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollpulse 2s ease-in-out infinite;
}
@keyframes scrollpulse {
  0%,100% { opacity: .3; transform: scaleY(.8); }
  50%      { opacity: 1; transform: scaleY(1); }
}

/* ── DIVIDER ── */
.divider {
  display: flex; align-items: center; gap: 24px;
  padding: 0 56px; margin: 80px 0;
}
.divider-line { flex: 1; height: 1px; background: rgba(184,154,94,.2); }
.divider-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; color: var(--gold); font-style: italic; white-space: nowrap;
}

/* ── INTRO ── */
.intro { max-width: 720px; margin: 0 auto; text-align: center; padding: 0 40px 80px; }
.intro p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 30px); font-weight: 300;
  line-height: 1.6; color: var(--text-primary); font-style: italic;
}

/* ── SPLIT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 70vh; }
.split-img { overflow: hidden; position: relative; }
.split-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 8s ease; filter: brightness(.8);
}
.split-img:hover img { transform: scale(1.04); }
.split-text {
  background: var(--dark-surface);
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 72px;
}
.split-text .label {
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px;
}
.split-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 54px); font-weight: 300;
  line-height: 1.15; color: var(--text-primary); margin-bottom: 32px;
}
.split-text p { font-size: 14px; line-height: 1.9; color: var(--text-secondary); max-width: 380px; }

/* ── BANNER ── */
.texture-section {
  position: relative; height: 60vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.texture-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; filter: brightness(.4);
}
.texture-content { position: relative; z-index: 2; text-align: center; padding: 0 40px; }
.texture-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 72px); font-weight: 300;
  color: var(--cream); line-height: 1.2; margin-bottom: 24px;
}
.texture-content p { font-size: 13px; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); }

/* ── INFO ── */
.info-section {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(184,154,94,.1);
  border-top: 1px solid rgba(184,154,94,.15);
}
.info-block { background: var(--dark); padding: 56px 48px; }
.info-block h4 {
  font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.info-block p, .info-block a {
  font-size: 14px; line-height: 2; color: var(--text-secondary);
  text-decoration: none; display: block; transition: color .3s;
}
.info-block a:hover { color: var(--text-primary); }
.award-list { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.award-entry { display: flex; align-items: center; gap: 12px; }
.award-entry img {
  height: 32px; width: auto; object-fit: contain;
  opacity: .8; transition: opacity .3s; flex-shrink: 0;
}
.award-entry img:hover { opacity: 1; }
.award-entry span { font-size: 14px; line-height: 1.5; color: var(--text-secondary); }

/* ── FOOTER ── */
footer {
  background: var(--dark); border-top: 1px solid rgba(184,154,94,.1);
  padding: 32px 56px; display: flex; justify-content: space-between; align-items: center;
}
footer p { font-size: 11px; letter-spacing: .12em; color: var(--muted); }
.social-links { display: flex; align-items: center; gap: 16px; }
.social-link {
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: color .3s;
}
.social-link:hover { color: var(--gold); }
.social-link svg { width: 18px; height: 18px; display: block; }

.michelin-badge {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; color: var(--gold); letter-spacing: .15em; font-style: italic;
}

/* ── PROSE (rich-text output) ── */
.prose p { margin-bottom: .9em; }
.prose p:last-child { margin-bottom: 0; }
.prose ul, .prose ol { margin-bottom: .9em; padding-left: 1.4em; }
.prose li { margin-bottom: .3em; }
.prose strong { font-weight: 600; }
.prose em { font-style: italic; }
.prose s { text-decoration: line-through; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .split { grid-template-columns: 1fr; }
  .split-text { padding: 56px 32px; }
  .info-section { grid-template-columns: 1fr 1fr; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
  .divider { padding-left: 24px; padding-right: 24px; }
}

/* ── LANGUAGE SWITCHER ── */
.nav-right {
  display: flex; align-items: center; gap: 20px;
}
.lang-switch {
  display: flex; align-items: center; gap: 6px;
}
.lang-btn {
  font-size: 10px; letter-spacing: .18em; color: var(--text-secondary);
  text-decoration: none; transition: color .25s; font-family: 'Poppins', sans-serif;
}
.lang-btn:hover { color: var(--cream); }
.lang-btn.active { color: var(--gold); }
.lang-sep { font-size: 10px; color: var(--muted); }
