/* ============================================
   L'ÉCLAT - Modern Fine Dining Restaurant
   Dark Luxury Theme
   ============================================ */

:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --gold: #c9a962;
  --gold-light: #e4d4a5;
  --gold-dark: #9a7b3d;
  --burgundy: #5c2a2a;
  --burgundy-light: #7d3d3d;
  --cream: #f5f0e6;
  --cream-muted: #b8b0a0;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--black);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--burgundy));
  z-index: 9999;
  transform-origin: left;
  transition: transform 0.1s linear;
}

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.15em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-reserve {
  color: var(--gold) !important;
}

.nav-reserve:hover {
  color: var(--gold-light) !important;
  text-shadow: 0 0 20px rgba(201, 169, 98, 0.5);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&q=80') center/cover no-repeat;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.3) 0%,
    rgba(10, 10, 10, 0.5) 50%,
    rgba(10, 10, 10, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(30px);
}

.btn-reservation {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.btn-reservation:hover {
  color: var(--black);
  box-shadow: 0 0 30px rgba(201, 169, 98, 0.6);
}

.btn-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(100%);
  transition: var(--transition);
  z-index: -1;
}

.btn-reservation:hover .btn-glow {
  transform: translateY(0);
}

/* Hero Animations */
.animate-in {
  animation: fadeUp 1s var(--transition-slow) forwards;
}

.hero-subtitle { animation-delay: 0.3s; }
.hero-title { animation-delay: 0.5s; }
.btn-reservation { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== SECTIONS COMMON ========== */
section {
  padding: 6rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.2;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ========== PHILOSOPHY ========== */
.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 100vh;
}

.philosophy-text {
  font-size: 1.1rem;
  color: var(--cream-muted);
  max-width: 480px;
  line-height: 1.9;
}

.philosophy-image {
  position: relative;
  overflow: hidden;
}

.philosophy-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 1s var(--transition);
}

.philosophy-image:hover img {
  transform: scale(1.03);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========== SIGNATURE DISHES ========== */
.dishes {
  background: var(--black-soft);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.dish-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.dish-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.dish-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--transition);
}

.dish-card:hover .dish-image img {
  transform: scale(1.15);
}

.dish-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(10, 10, 10, 0.4) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition);
}

.dish-card:hover .dish-overlay {
  opacity: 1;
}

.dish-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.dish-overlay p {
  font-size: 0.9rem;
  color: var(--cream-muted);
  line-height: 1.6;
}

/* ========== CHEF SPOTLIGHT ========== */
.chef {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.chef-parallax {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1550966871-3ed3cdb5ed0c?w=1920&q=80') center/cover no-repeat;
  background-size: cover;
}

.chef::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.9) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.3) 100%
  );
  z-index: 1;
}

.chef-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 4rem;
  align-items: center;
}

.chef-image {
  overflow: hidden;
}

.chef-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.chef-bio {
  font-size: 1.1rem;
  color: var(--cream-muted);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.chef-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold);
}

/* ========== TASTING MENU ========== */
.menu {
  background: var(--black);
}

.menu-container {
  max-width: 800px;
  margin: 0 auto;
}

.menu-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem 0;
  transition: var(--transition);
}

.menu-item:hover {
  padding-left: 1rem;
}

.menu-number {
  font-size: 0.9rem;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
}

.menu-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.menu-content p {
  font-size: 0.95rem;
  color: var(--cream-muted);
}

.menu-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold);
}

.menu-line {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--burgundy) 20%,
    var(--burgundy) 80%,
    transparent
  );
  opacity: 0.5;
  animation: linePulse 3s ease-in-out infinite;
}

@keyframes linePulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

.chef-special .menu-content {
  position: relative;
}

.special-badge {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
  color: var(--gold-light);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: var(--black-soft);
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: linear-gradient(
    145deg,
    rgba(20, 20, 20, 0.9) 0%,
    rgba(10, 10, 10, 0.95) 100%
  );
  border: 1px solid rgba(201, 169, 98, 0.2);
  padding: 2.5rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(201, 169, 98, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-size: 1rem;
  color: var(--cream-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-card cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--gold);
}

/* ========== RESERVATION ========== */
.reservation {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?w=1920&q=80') center/cover no-repeat;
}

.reservation-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
}

.reservation-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
}

.section-subtitle {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--cream-muted);
}

.reservation-form {
  margin-top: 3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: 1 / -1;
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(201, 169, 98, 0.3);
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
  box-shadow: 0 2px 0 0 rgba(201, 169, 98, 0.2);
}

.form-group label {
  position: absolute;
  left: 0;
  top: 1rem;
  color: var(--cream-muted);
  font-size: 0.95rem;
  pointer-events: none;
  transition: var(--transition);
  transform-origin: left;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  transform: translateY(-1.5rem) scale(0.85);
  color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-submit {
  width: 100%;
  padding: 1.25rem;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  margin-top: 1rem;
}

.btn-submit:hover {
  color: var(--black);
  box-shadow: 0 0 30px rgba(201, 169, 98, 0.5);
}

.btn-submit .btn-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(100%);
  transition: var(--transition);
  z-index: -1;
}

.btn-submit:hover .btn-glow {
  transform: translateY(0);
}

/* ========== FOOTER ========== */
.footer {
  padding: 3rem 4rem;
  border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand .logo {
  font-size: 1.5rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--cream-muted);
  margin-top: 0.25rem;
}

.footer-info p,
.footer-hours p {
  font-size: 0.9rem;
  color: var(--cream-muted);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .philosophy {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .philosophy-image {
    order: -1;
  }

  .philosophy-image img {
    height: 400px;
  }

  .chef-content {
    grid-template-columns: 1fr;
  }

  .chef-image img {
    height: 400px;
  }

  .dishes-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: var(--transition);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  section {
    padding: 4rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .menu-item {
    grid-template-columns: 40px 1fr auto;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }
}
.footer-credit {
width: 100%;
text-align: center;
margin-top: 2rem;
}

.footer-credit p {
font-size: 0.75rem;
letter-spacing: 0.15em;
color: var(--cream-muted);
}

.footer-credit a {
color: var(--gold);
text-decoration: none;
position: relative;
transition: 0.3s;
}

.footer-credit a::after {
content: '';
position: absolute;
bottom: -3px;
left: 0;
width: 0;
height: 1px;
background: var(--gold);
transition: 0.3s;
}

.footer-credit a:hover {
color: var(--gold-light);
}

.footer-credit a:hover::after {
width: 100%;
}
