/* ========== LA CUISINE — Design Luxe / Chic ========== */
:root {
  --gold: #C5A265;
  --gold-light: #D4B87A;
  --gold-dark: #A68845;
  --noir: #0A0A0A;
  --noir-light: #1A1A1A;
  --creme: #FAF7F2;
  --creme-dark: #EDE8DF;
  --gris: #888;
  --text: #2A2A2A;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ========== ANIMATIONS ========== */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes revealFallback {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes goldLine {
  from { width: 0; }
  to { width: 60px; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  animation: revealFallback 0.8s ease 0.5s forwards;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  padding: 14px 5%;
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.navbar-logo {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 3px;
  font-weight: 700;
  text-transform: uppercase;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.navbar-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.navbar-links a:hover {
  color: var(--gold);
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-reserve {
  padding: 10px 28px;
  background: var(--gold);
  color: var(--noir) !important;
  font-size: 12px !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  border: none;
  transition: var(--transition);
}

.navbar-reserve:hover {
  background: var(--gold-light) !important;
}

.navbar-reserve::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1002;
  width: 30px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  width: 100%;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 10, 0.98);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 3px;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--gold);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1600') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero.loaded .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.4) 0%,
    rgba(10,10,10,0.6) 50%,
    rgba(10,10,10,0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
  animation: fadeIn 1.5s ease 0.3s both;
}

.hero-badge {
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.hero-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 24px auto;
  animation: goldLine 1s ease 1s both;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero-btn {
  display: inline-block;
  padding: 16px 48px;
  background: var(--gold);
  color: var(--noir);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  transition: var(--transition);
}

.hero-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(197,162,101,0.3);
}

/* ========== SECTION TITLES ========== */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
  font-weight: 600;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  color: var(--noir);
  font-weight: 700;
  line-height: 1.2;
}

.section-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto 0;
}

/* ========== PHILOSOPHIE ========== */
.philosophie {
  padding: 120px 5%;
  background: var(--white);
}

.philosophie-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.philosophie-img {
  position: relative;
  overflow: hidden;
}

.philosophie-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.philosophie-img::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--gold);
  z-index: -1;
}

.philosophie-text h3 {
  font-family: var(--font-display);
  font-size: 36px;
  margin-bottom: 24px;
  color: var(--noir);
  line-height: 1.3;
}

.philosophie-text .gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}

.philosophie-text p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--gris);
  margin-bottom: 20px;
}

.philosophie-signature {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  font-style: italic;
  margin-top: 30px;
}

/* ========== CARTE / MENU ========== */
.carte {
  padding: 120px 5%;
  background: var(--noir);
  color: var(--white);
}

.carte .section-heading {
  color: var(--white);
}

.carte-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.carte-category h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 30px;
  text-align: center;
}

.carte-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

.carte-item:hover {
  border-bottom-color: var(--gold);
}

.carte-item-name {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.carte-item-desc {
  font-size: 13px;
  color: var(--gris);
  margin-top: 4px;
}

.carte-item-price {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  white-space: nowrap;
  margin-left: 20px;
}

.carte-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(255,255,255,0.2);
  margin: 0 12px;
  min-width: 30px;
  align-self: flex-end;
  margin-bottom: 6px;
}

/* ========== GALERIE ========== */
.galerie {
  padding: 120px 5%;
  background: var(--creme);
}

.galerie-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.galerie-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.galerie-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.galerie-item:hover img {
  transform: scale(1.08);
}

.galerie-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10,10,10,0);
  transition: background 0.4s ease;
}

.galerie-item:hover::after {
  background: rgba(10,10,10,0.3);
}

.galerie-item .zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 2;
  opacity: 0;
  transition: all 0.4s ease;
}

.galerie-item:hover .zoom-icon {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* ========== RÉASSURANCE ========== */
.reassurance {
  padding: 80px 5%;
  background: var(--white);
}

.reassurance-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.reassurance-item {
  text-align: center;
  padding: 40px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: var(--creme);
}

.reassurance-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.reassurance-item svg {
  color: var(--gold);
  margin-bottom: 20px;
}

.reassurance-item h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--noir);
}

.reassurance-item p {
  font-size: 13px;
  color: var(--gris);
  line-height: 1.5;
}

/* ========== CONTACT ========== */
.contact {
  padding: 120px 5%;
  background: var(--creme);
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: var(--white);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--noir);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-icon svg {
  color: var(--gold);
}

.contact-card-text h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  color: var(--noir);
}

.contact-card-text p {
  font-size: 15px;
  color: var(--gris);
  line-height: 1.6;
}

.contact-map {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--noir);
  color: var(--white);
  padding: 80px 5% 30px;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .navbar-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--gris);
  line-height: 1.8;
  max-width: 340px;
}

.footer-col h4 {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 600;
}

.footer-col a {
  display: block;
  color: var(--gris);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--gris);
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.lightbox.active {
  opacity: 1;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--gold);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .philosophie-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .philosophie-img::after {
    display: none;
  }

  .carte-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .galerie-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reassurance-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navbar-links {
    display: none;
  }

  .hero {
    min-height: 600px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .philosophie {
    padding: 80px 5%;
  }

  .philosophie-img img {
    height: 350px;
  }

  .philosophie-text h3 {
    font-size: 28px;
  }

  .carte {
    padding: 80px 5%;
  }

  .galerie {
    padding: 80px 5%;
  }

  .galerie-grid {
    grid-template-columns: 1fr;
  }

  .galerie-item img {
    height: 280px;
  }

  .reassurance-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .reassurance-item {
    padding: 24px 12px;
  }

  .reassurance-item h4 {
    font-size: 13px;
  }

  .reassurance-item p {
    font-size: 12px;
  }

  .contact {
    padding: 80px 5%;
  }

  .footer {
    padding: 60px 5% 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .reassurance-grid {
    grid-template-columns: 1fr;
  }

  .hero-btn {
    padding: 14px 36px;
    font-size: 12px;
  }
}
