/* =============================================
   AZUR & SEL — style.css (REFONTE COMPLETE)
   Palette : Marine #0a2235 · Corail #E05C3A
             Crème #FAF6F0 · Or #C8973A
   Totalement différente de BKL Vision
   ============================================= */

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

:root {
  --navy:     #0a2235;     /* bleu marine profond */
  --navy-2:   #132d45;     /* navy légèrement plus clair */
  --coral:    #E05C3A;     /* corail méditerranéen */
  --coral-l:  #f07858;     /* corail clair */
  --cream:    #FAF6F0;     /* fond crème chaud */
  --cream-2:  #F2EBE0;     /* crème foncée */
  --sand:     #DFD5C3;     /* sable */
  --gold-r:   #C8973A;     /* or restaurant */
  --white:    #ffffff;
  --text-dark:#1a1a1a;
  --text-mid: #7a7168;

  --font-display: 'Playfair Display', serif;
  --font-script:  'Dancing Script', cursive;
  --font-ui:      'Inter', sans-serif;
  --font-serif:   'Cormorant Garamond', serif;
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  background: var(--cream);
  color: var(--text-dark);
  font-family: var(--font-ui);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ========================
   HEADER
======================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 2rem;
  background: rgba(10,34,53,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: padding 0.3s;
}
.header.scrolled { padding: 0.9rem 2rem; }
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1;
}
.logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coral);
  margin-top: 0.1rem;
}

.main-nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-link {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-link:hover { color: var(--white); }
.nav-cta {
  padding: 0.6rem 1.6rem;
  background: var(--coral) !important;
  color: var(--white) !important;
  border-radius: 999px;
  box-shadow: 0 4px 20px var(--coral-glow);
}
.nav-cta:hover { background: #d45037 !important; }

/* Language Switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 500;
  user-select: none;
  position: relative;
  z-index: 100;
}
.lang-btn {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0 3px !important;
  cursor: pointer !important;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  transition: color 0.25s ease;
}
.lang-btn.active {
  color: var(--coral) !important;
  font-weight: 600 !important;
  border-bottom: 1.5px solid var(--coral) !important;
}
.lang-btn:hover:not(.active) { color: var(--white); }
.lang-divider { color: rgba(255,255,255,0.2); font-size: 0.7rem; }
.mob-lang { margin-top: 1.5rem; justify-content: center; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span { display: block; width: 22px; height: 1.5px; background: var(--white); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-nav.open { display: flex; }
.mob-link {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
.mob-link:hover { color: var(--coral); }

/* ========================
   SECTION LABEL
======================== */
.section-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.2rem;
}

/* ========================
   HERO
======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,34,53,0.92) 0%,
    rgba(10,34,53,0.6) 60%,
    rgba(224,92,58,0.15) 100%
  );
}

/* Élément décoratif corail */
.hero-deco {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(224,92,58,0.15);
  animation: decoSpin 30s linear infinite;
  z-index: 1;
}
.hero-deco::before {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(224,92,58,0.1);
}
@keyframes decoSpin { to { transform: translateY(-50%) rotate(360deg); } }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.8rem;
  animation: fadeUp 0.8s var(--ease-out) 0.3s both;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--coral);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.8rem;
  animation: fadeUp 0.9s var(--ease-out) 0.5s both;
  max-width: 700px;
}
.hero-title em { font-style: italic; color: var(--coral); }

.hero-desc {
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  color: rgba(255,255,255,0.5);
  margin-bottom: 2.5rem;
  max-width: 440px;
  line-height: 1.85;
  animation: fadeUp 0.9s var(--ease-out) 0.7s both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.9s var(--ease-out) 0.9s both;
}

.btn-coral {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2.2rem;
  background: var(--coral);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 1.5px solid var(--coral);
  transition: background 0.3s, transform 0.3s;
}
.btn-coral:hover { background: var(--coral-l); transform: translateY(-2px); }

.btn-outline-w {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}
.btn-outline-w:hover { border-color: var(--coral); color: var(--coral); transform: translateY(-2px); }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: fadeUp 0.8s var(--ease-out) 1.2s both;
}
.hero-scroll span {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.scroll-line {
  width: 1px; height: 55px;
  background: linear-gradient(to bottom, var(--coral), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.3; transform: scaleY(0.5); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========================
   INTRO
======================== */
.intro-section {
  background: var(--cream);
  padding: 7rem 2rem;
}
.intro-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.intro-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.intro-left h2 em { font-style: italic; color: var(--coral); }
.intro-left p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1rem;
}
.intro-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--sand);
}
.intro-stat {
  background: var(--cream);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.stat-big {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}
.stat-big-coral { color: var(--coral); }
.intro-stat .stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  line-height: 1.4;
}

/* ========================
   MENU
======================== */
.menu-section {
  background: var(--navy);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
/* Pattern décoratif */
.menu-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}
.menu-section .section-label { color: var(--coral); }
.menu-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.menu-header { text-align: center; margin-bottom: 3.5rem; }
.menu-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.7rem;
}
.menu-header h2 em { font-style: italic; color: var(--coral); }
.menu-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

/* TABS */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.menu-tab {
  padding: 0.8rem 2rem;
  background: transparent;
  border: none;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.menu-tab:last-child { border-right: none; }
.menu-tab.active { background: var(--coral); color: var(--white); }
.menu-tab:hover:not(.active) { color: var(--white); background: rgba(255,255,255,0.06); }

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-left: 1px solid rgba(255,255,255,0.07);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
  position: relative;
}
.menu-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--coral);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s var(--ease-out);
}
.menu-item:hover::before { transform: scaleY(1); }
.menu-item:hover { background: rgba(255,255,255,0.03); }

.item-info h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.item-info p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}
.item-badge {
  display: inline-block;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  border: 1px solid rgba(224,92,58,0.4);
  padding: 0.12rem 0.5rem;
  border-radius: 2px;
  margin-top: 0.5rem;
}
.item-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold-r);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ========================
   AMBIANCE
======================== */
.ambiance-section {
  background: var(--cream-2);
  padding: 7rem 2rem;
  overflow: hidden;
}
.ambiance-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  min-width: 0;
}
.galerie {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 400px;
  gap: 10px;
  min-width: 0;
}
.gal-main { height: 400px; overflow: hidden; border-radius: 3px; min-width: 0; }
.gal-main img { width: 100%; height: 100%; object-fit: cover; border-radius: 3px; transition: transform 0.6s var(--ease-out); }
.gal-main:hover img { transform: scale(1.05); }
.gal-side { display: flex; flex-direction: column; gap: 10px; height: 400px; min-width: 0; }
.gal-side img { flex: 1; min-height: 0; object-fit: cover; border-radius: 3px; }
.gal-text-card {
  background: var(--navy);
  border-radius: 3px;
  padding: 1.2rem 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  text-align: center;
  word-break: break-word;
}
.gal-text-card span { font-size: clamp(0.5rem, 0.9vw, 0.58rem); letter-spacing: 0.15em; text-transform: uppercase; color: var(--coral); }
.gal-text-card strong { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.5rem); color: var(--white); line-height: 1; }

.ambiance-text { order: 2; min-width: 0; }
.ambiance-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1.5rem;
  line-height: 1.15;
  word-break: break-word;
}
.ambiance-text h2 em { font-style: italic; color: var(--coral); }
.ambiance-text p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.9; word-break: break-word; }

/* ========================
   RESERVATION
======================== */
.reservation-section {
  background: var(--cream);
  padding: 7rem 2rem;
}
.resa-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
  min-width: 0;
}
.resa-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1.2rem;
  line-height: 1.15;
}
.resa-left h2 em { font-style: italic; color: var(--coral); }
.resa-left > p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 2.5rem; }

.resa-info { display: flex; flex-direction: column; gap: 1.2rem; }
.resa-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.resa-icon { font-size: 1rem; margin-top: 0.15rem; }
.resa-info-item div { display: flex; flex-direction: column; gap: 0.12rem; }
.resa-info-item strong { font-size: 0.78rem; font-weight: 500; color: var(--navy); }
.resa-info-item span { font-size: 0.82rem; color: var(--text-mid); }

/* FORM */
.resa-form {
  background: var(--navy);
  border-radius: 4px;
  padding: 2.5rem;
  box-shadow: 0 30px 80px rgba(10,34,53,0.15);
}
.resa-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group:last-child { margin-bottom: 0; }
.form-group label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--coral); }
.form-group select option { background: var(--navy-2); color: var(--white); }
.form-group textarea { resize: none; }

.btn-resa {
  width: 100%;
  padding: 1rem;
  background: var(--coral);
  color: var(--white);
  border: none;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.3s, transform 0.2s;
  margin-top: 0.5rem;
}
.btn-resa:hover { background: var(--coral-l); transform: translateY(-1px); }

.resa-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(224,92,58,0.1);
  border: 1px solid rgba(224,92,58,0.3);
  border-radius: 3px;
  font-size: 0.82rem;
  color: var(--coral-l);
  text-align: center;
}
.resa-success.visible { display: block; }

/* ========================
   FOOTER
======================== */
.restaurant-footer {
  background: var(--navy);
  padding: 3.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.rf-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.rf-name {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--white);
  display: block;
  line-height: 1;
}
.rf-tagline {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--coral);
  display: block;
  margin-top: 0.2rem;
}
.rf-links { display: flex; gap: 2rem; }
.rf-links a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.3s;
}
.rf-links a:hover { color: var(--coral); }
.rf-credit p { font-size: 0.72rem; color: rgba(255,255,255,0.2); }
.rf-credit a { color: var(--gold-r); text-decoration: none; transition: color 0.3s; }
.rf-credit a:hover { color: var(--coral); }
.rf-copy { margin-top: 0.3rem; }

/* ========================
   SCROLL REVEAL
======================== */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.reveal-up.visible { opacity: 1; transform: none; }

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .burger { display: flex; }
  .intro-inner,
  .resa-inner,
  .ambiance-inner { grid-template-columns: 1fr; gap: 3rem; }
  .ambiance-text { order: -1; }
  .galerie { grid-template-columns: 1fr 1fr; grid-template-rows: 280px; }
  .gal-side { flex-direction: row; height: 280px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-item { border-right: none; }
  .rf-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 2.8rem; }
  .form-row { grid-template-columns: 1fr; }
  .menu-tabs { flex-direction: column; width: 100%; }
  .menu-tab { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .menu-tab:last-child { border-bottom: none; }
  .galerie { grid-template-columns: 1fr; grid-template-rows: 220px 180px; }
  .gal-side { flex-direction: row; height: 180px; }
}

::selection { background: rgba(224,92,58,0.25); color: var(--navy); }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--coral); border-radius: 2px; }


::selection { background: rgba(224,92,58,0.25); color: var(--navy); }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--coral); border-radius: 2px; }
