/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
  --gold: #C9A84C;
  --gold-dark: #B8943C;
   --gold-dark-dark: #826b2e;
  --gold-light: #E8D5A3;
  --dark: #0A0A0A;
  --light-bg: #F8F6F3;
  --white: #FFFFFF;
  --text: #1A1A1A;
  --text-muted: #444;
  --border-light: rgba(0, 0, 0, 0.15);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.067);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--light-bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   TYPOGRAPHIE
   ============================================ */
h1, h2, h3, .font-serif {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 0.95;
  margin-top: 120px;
}

h2 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
}

p {
  color: var(--text-muted);
}

.gold {
  color: var(--gold);
}

.bg-gold {
  background: var(--gold);
}

.divider {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1.8rem auto;
  border-radius: 4px;
}

.mt-2 {
  margin-top: 0.75rem;
}

/* ============================================
   NAVBAR (glassmorphism)
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: 0.7s;
  background: rgba(255, 255, 255, 0.627);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.04);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.navbar.scrolled .brand {
  color: var(--dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}

.nav-links a {
  color: rgba(0, 0, 0, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: 0.7s;
}

.navbar.scrolled .nav-links a {
  color: rgba(0, 0, 0, 0.7);
}

.nav-links a:hover,
.nav-links a.active {
  color: #000000;
  border-bottom-color: var(--gold);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--dark);
}

.btn-reserve {
  background: #8b732f;
  padding: 0.7rem 2.4rem;
  border-radius: 50px;
  color: #fff !important;
  transition: all 0.3s;
  font-weight: 500;
  display: block;
}

.navbar.scrolled .btn-reserve {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.btn-reserve:hover {
background: var(--gold-dark);
}

.navbar.scrolled .btn-reserve:hover {
  background: var(--gold-dark);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.navbar.scrolled .menu-toggle {
  color: var(--dark);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  padding: 2rem;
  border-radius: 1.5rem;
  margin-top: 0.5rem;
  gap: 1.2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--dark);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background 0.2s;
}

.mobile-menu a:hover {
  background: #F0EDE8;
  color: var(--gold);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-top: 150px;
}

.badge {
  display: inline-block;
  border: 1px solid rgba(201, 168, 76, 0.5);
  padding: 0.3rem 1.5rem;
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: 120px;
  line-height: 0.92;
  margin: 1.5rem 0;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.hero-sub {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ============================================
   BOUTONS
   ============================================ */
.btn-gold {
  background: var(--gold);
  color: #fff;
  padding: 0.9rem 2.8rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-gold:hover {
  background: var(--gold-dark-dark);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 0.8rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  transition: 0.7s;
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.full-width {
  width: 100%;
  justify-content: center;
}

/* ============================================
   SECTIONS GÉNÉRIQUES
   ============================================ */
section {
  padding: 6rem 0;
}

.section-story {
  background: #fff;
  text-align: center;
}

.section-story h2 {
  margin-bottom: -25px;
}

.section-story .container {
  border-radius: 5px;
  box-shadow: var(--shadow);
  border: 1px solid #66656554;
  transition: 0.7s;
  padding: 0;
}

.section-story .grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.section-story .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.story-image {
  height: 100%;
  padding: 0;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 2px 20px rgba(51, 50, 50, 0.251);
  border: 1px solid #00000025;
  padding: 0;
}

.story-text {
  height: 100%;
  margin-bottom: 4.5rem;
  background: rgba(196, 196, 196, 0.041);
  padding: 80px;
  margin: 30px auto;
  text-align: center;
}

.label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  font-weight: 600;
  width: 100%;
  display: block;
  text-align: center;
}

.link-gold {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 2px solid rgba(201, 168, 76, 0.3);
  padding-bottom: 0.2rem;
  transition: 0.7s;
  font-weight: 500;
}

.link-gold:hover {
  border-color: var(--gold);
}

/* ============================================
   PARALLAXE
   ============================================ */
.parallax {
  background-image: url('https://images.unsplash.com/photo-1544025162-d76694265947?w=1600&q=80');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0;
}

.overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.parallax blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.3;
}

.parallax .gold {
  font-size: 3rem;
}

.parallax .container {
  background-color: #0000006d;
  padding: 20vh 50px !important;
  width: 100% !important;
  box-shadow: 0 2px 20px rgba(100, 100, 100, 0.293);
  border: 1px solid #00000007;
}

/* ============================================
   TÉMOIGNAGES
   ============================================ */
.section-testimonials {
  background: #fff;
}

.section-testimonials h2 {
  text-align: center;
  margin-bottom: -25px;
}

.section-testimonials .grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}

.section-testimonials .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.testimonial {
  background: var(--light-bg);
  padding: 2.5rem;
  border-radius: 5px;
    transition: 0.7s;
  box-shadow: 0 2px 20px rgba(51, 50, 50, 0.081);
  border: 1px solid #0000002a;
  text-align: center;
  margin-top: 15px;
}

.testimonial:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.testimonial .quote {
  font-style: italic;
  color: #333;
  line-height: 1.7;
}

.testimonial .author {
  margin-top: 1.2rem;
  font-weight: 600;
  color: var(--dark);
}

/* ============================================
   CTA DARK
   ============================================ */
.section-cta h2 {
  text-align: center;
  margin-bottom: -25px;
}

.section-cta p {
  margin-bottom: 25px;
}

.section-cta.dark {
  background: var(--dark);
  color: #fff;
  text-align: center;
}

.section-cta .phone {
  margin-top: 1.8rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.95rem;
}

/* ============================================
   PAGE HERO (intérieures)
   ============================================ */
.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(3.5rem, 9vw, 6rem);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
}

/* ============================================
   MENU
   ============================================ */
.section-menu {
  background: #fff;
}

.menu-category {
  margin-bottom: 4.5rem;
  background: rgba(196, 196, 196, 0.041);
  padding: 90px 70px;
  border: 1px solid #66656554;
  border-radius: 5px;
  box-shadow: var(--shadow);
  margin: 30px auto;
  width: 90%;
}

.menu-category h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #C9A84C96;
  display: inline-block;
  padding-bottom: 1rem;
  width: 100%;
  text-align: center;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.2rem 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.305);
  transition: 0.7s;
  border-radius: 0;
}

.menu-item:hover {
  background: var(--light-bg);
}

.menu-item .name {
  font-weight: 600;
  font-size: 1.15rem;
}

.menu-item .desc {
  display: block;
  font-size: 0.9rem;
  color: #777;
  margin-top: 0.1rem;
}

.menu-item .price {
  font-weight: 700;
  color: var(--gold);
  font-size: 1.2rem;
  text-align: center;
  background: rgba(201, 168, 76, 0.052);
  padding: 1rem 2rem;
  border-left: 3px solid #C9A84C96;
  border-radius: 0px;
}

.degustation-card {
  background: linear-gradient(145deg, var(--light-bg), #EDEAE5);
  padding: 3.5rem;
  border-radius: 2rem;
  text-align: center;
  margin: auto;
  border: 1px solid #66656554;
  border-radius: 5px;
  box-shadow: var(--shadow);
  width: 90%;
}

.degustation-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #06060659;
  display: inline-block;
  padding-bottom: 1rem;
  width: 100%;
  text-align: center;
}

.degustation-card p {
  margin-bottom: 0;
}

.degustation-price {
  background: #ffffffaf;
  padding: 3.5rem 0;
  border: 1px solid #66656554;
  border-radius: 5px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.01);
  gap: 1rem;
  margin: 2rem auto;
  width: 35%;
  text-align: center;
}

.degustation-price .price {
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-top: -1rem;
}

.degustation-price .note {
  display: block;
  font-size: 1rem;
  color: #888;
  border-top: 1px solid #414141a6;
  padding-top: 1rem;
  width: 70%;
  margin: auto;
}

/* ============================================
   CHEF
   ============================================ */
.section-chef {
  background: #fff;
}

.section-chef .grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.section-chef .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.chef-bio {
  margin-bottom: 4.5rem;
  background: rgba(196, 196, 196, 0.041);
  padding: 80px;
  border: 1px solid #66656554;
  border-radius: 0;
  box-shadow: var(--shadow);
  margin: 30px auto;
  text-align: center;
  height: 100%;
}

.chef-portrait {
  height: 100%;
  padding: 0;
}

.chef-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 2px 20px rgba(51, 50, 50, 0.251);
  border: 1px solid #00000025;
  padding: 0;
}

.chef-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
}

.chef-stats div {
  text-align: center;
}

.chef-stats span {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.chef-stats small {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-parcours h2 {
  text-align: center;
  margin-bottom: -25px;
}

.timeline {
  max-width: 800px;
  margin-bottom: 4.5rem;
  background: rgba(196, 196, 196, 0.041);
  padding: 80px;
  border: 1px solid #66656554;
  border-radius: 0;
  box-shadow: var(--shadow);
  margin: 50px auto;
  text-align: center;
  height: 100%;
}

.timeline-item {
  padding: 1rem;
  border-left: 3px solid var(--gold);
  margin-top: 2.8rem;
  margin-bottom: 2.8rem;
  position: relative;
  border: 1px solid #66656554;
  border-radius: 0;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--gold);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -12px;
  top: -12px;
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.2);
}

.timeline-item .year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.timeline-item h4 {
  font-size: 1.3rem;
  margin: 0.2rem 0;
}

.timeline-item p {
  color: #666;
}

/* ============================================
   RÉSERVATION
   ============================================ */
.section-reservation {
  background: #fff;
}

.form-container {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  padding: 3.5rem;
  border: 1px solid #66656554;
  border-radius: 0;
  box-shadow: var(--shadow);
  text-align: center;
  height: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0;
  color: #333;
  text-align: left;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  font-family: inherit;
  transition: 0.7s;
  background: #FCFCFB;
  margin-bottom: 1rem;
  border: 1px solid #66656554;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
}

.form-note {
  margin-top: 1.2rem;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

form .btn-gold {
  padding: 20px 0;
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
  width: 100% !important;
  text-align: center !important;
  display: block;
  font-size: 15px;
}

/* ============================================
   CONTACT
   ============================================ */
.section-contact {
  background: #fff;
}

.form-container h2 {
  margin-bottom: 40px;
  border-bottom: 2px solid #c69d3784;
}

.section-contact .grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  align-items: center;
}

.section-contact .contact-form .form-group label {
  text-align: left;
}

.section-contact .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.contact-form,
.contact-infos {
  border-radius: 2rem;
  width: 100%;
  margin-bottom: auto;
  background: #fff;
  padding: 2.5rem 4.5rem;
  border: 1px solid #66656554;
  border-radius: 0;
  box-shadow: var(--shadow);
  text-align: center;
  height: 100%;
}

.contact-infos {
  background: transparent;
}

.contact-infos .info-item {
  display: flex;
  margin-bottom: 2rem;
  align-items: center;
  width: 100%;
  margin: auto;
  text-align: left;
}

.contact-infos .info-item div {
  width: 100%;
}

.info-item i {
  font-size: 1rem;
  color: var(--gold);
  width: 1rem;
  text-align: center;
}

.info-item h4 {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  width: 100%;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.7rem;
  color: #333;
  border-bottom: 1px solid #c9a84c9e;
}

.info-item p {
  color: #555;
  width: 100%;
  margin-bottom: 0.8rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dark);
  padding: 3.5rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
}

.footer-meta {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  margin: 1.5rem 0;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.4rem;
  transition: 0.7s;
}

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

.footer-copy {
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .grid-2 {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  section,
  .section .container {
    padding: 50px 0 !important;
    width: 100% !important;
  }

  nav {
    padding-right: 0;
  }

  .timeline {
    padding: 50px 20px !important;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    display: block !important;
    width: 100% !important;
  }

  .form-grid {
    grid-template-columns: 1fr;
    display: block !important;
  }

  .form-container {
    padding: 1.8rem;
    display: block !important;
  }

  .chef-stats {
    flex-wrap: wrap;
    gap: 2rem;
    display: block !important;
  }

  .section-story .story-image {
    order: -1;
    display: block !important;
  }

  .story-image img {
    height: 250px;
    display: block !important;
  }

  .page-hero {
    min-height: 30vh;
    display: block !important;
  }

  .degustation-card {
    padding: 2rem;
    display: block !important;
  }

  .story-text,
  .chef-bio,
  .chef-portrait,
  .chef-stats.container.timeline {
    width: 100% !important;
    display: block !important;
  }

  .story-text,
  .chef-bio {
    padding: 50px 25px;
  }
  

  h1 {
    font-size: 60px !important;
  }

  .btn-gold,
  .btn-outline,
  .btn-reserve {
    width: 100% !important;
    display: block !important;
    text-align: center;
  }

  .btn-reserve {
    border-radius: 0 !important;
    padding: 12px 0 !important;
  }

  .btn-gold,
  .btn-outline {
    margin-top: 7px;
  }

  .menu-category {
    width: 100%;
    padding: 50px 0 !important;
    display: block !important;
    font-size: 8px !important;
  }

  .menu-item {
    font-size: 8px !important;
  }

  .degustation-card,
  .degustation-price {
    width: 100%;
    padding: 50px 15px !important;
    display: block !important;
  }

  .menu-item .price {
    padding: 1rem;
    border-radius: 0;
    text-align: center;
    font-size: 18px !important;
  }

  .contact-form,
  .contact-infos {
    padding: 50px 25px;
    margin-top: 25px;
  }

  .menu-toggle {
    color: black !important;
  }

  .mobile-menu {
    border-radius: 0;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.view-animate {
  animation: fadeSlide 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

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