/* ===== LA MAISON DORÉE — RESTAURANT FRANÇAIS | BMCE BANK ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Lato:wght@300;400;500;700&display=swap');

:root {
  --primary: #1A1A1A;
  --gold: #C5A050;
  --gold-light: #D4B76A;
  --gold-hover: #B08A3A;
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --gray: #6B6B6B;
  --gray-light: #F5F3EF;
  --text: #2D2D2D;
  --border: #E5E0D8;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --shadow: 0 4px 20px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.1);
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Lato', sans-serif; color: var(--text); line-height: 1.7; background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- HEADER --- */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: var(--transition); padding: 0; }
.header.scrolled { background: rgba(26,26,26,.96); backdrop-filter: blur(12px); }
.nav { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 20px 24px; }
.nav__logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--white); letter-spacing: 2px; }
.nav__logo span { color: var(--gold); font-style: italic; }
.nav__links { display: flex; gap: 32px; }
.nav__links a { color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 400; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 0; position: relative; }
.nav__links a::after { content:''; position:absolute; bottom:0; left:0; width:0; height:1px; background:var(--gold); transition:var(--transition); }
.nav__links a:hover::after, .nav__links a.active::after { width:100%; }
.nav__links a:hover, .nav__links a.active { color: var(--white); }
.nav__burger { display: none; flex-direction: column; gap: 6px; cursor: pointer; }
.nav__burger span { width: 28px; height: 2px; background: var(--white); transition: var(--transition); }
.nav__cta { display: inline-block; padding: 10px 24px; border: 1px solid var(--gold); color: var(--gold); font-size: .8rem; letter-spacing: 1.5px; text-transform: uppercase; transition: var(--transition); }
.nav__cta:hover { background: var(--gold); color: var(--primary); }

/* --- HERO (Full-screen) --- */
.hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.65) 100%); }
.hero__content { position: relative; z-index: 2; max-width: 700px; padding: 0 24px; }
.hero__tag { display: inline-block; font-size: .75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 500; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: 3.8rem; font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p { color: rgba(255,255,255,.75); font-size: 1.15rem; font-weight: 300; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.hero__scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero__scroll span { display: block; width: 1px; height: 60px; background: linear-gradient(180deg, var(--gold), transparent); margin: 0 auto; animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%,100%{opacity:.3} 50%{opacity:1} }

/* --- BUTTONS --- */
.btn { display: inline-block; padding: 14px 36px; font-size: .85rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; border: none; cursor: pointer; transition: var(--transition); }
.btn--gold { background: var(--gold); color: var(--primary); }
.btn--gold:hover { background: var(--gold-hover); }
.btn--outline { border: 1px solid var(--gold); color: var(--gold); background: transparent; }
.btn--outline:hover { background: var(--gold); color: var(--primary); }
.btn--outline-white { border: 1px solid rgba(255,255,255,.5); color: var(--white); background: transparent; }
.btn--outline-white:hover { background: var(--white); color: var(--primary); }
.btn--dark { background: var(--primary); color: var(--white); }
.btn--dark:hover { background: #333; }

/* --- SECTIONS --- */
.section { padding: 100px 0; }
.section--cream { background: var(--cream); }
.section--dark { background: var(--primary); color: var(--white); }
.section__header { text-align: center; margin-bottom: 60px; }
.section__tag { font-size: .7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 12px; font-weight: 500; }
.section__title { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
.section--dark .section__title { color: var(--white); }
.section__subtitle { color: var(--gray); font-size: 1.05rem; max-width: 560px; margin: 0 auto; font-weight: 300; }
.section--dark .section__subtitle { color: rgba(255,255,255,.6); }
.section__divider { width: 60px; height: 1px; background: var(--gold); margin: 20px auto 0; }

/* --- GRID --- */
.grid { display: grid; gap: 30px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* --- FEATURE (Two-col with big image) --- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature--reverse { direction: rtl; }
.feature--reverse > * { direction: ltr; }
.feature__img { width: 100%; height: 450px; object-fit: cover; }
.feature__img--rounded { border-radius: 8px; }
.feature__content { padding: 20px 0; }
.feature__content .section__tag { text-align: left; }
.feature__content h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; margin-bottom: 18px; line-height: 1.2; }
.feature__content p { color: var(--gray); margin-bottom: 16px; font-weight: 300; font-size: 1.02rem; }
.feature__list { margin-top: 8px; }
.feature__list li { padding: 6px 0 6px 20px; position: relative; color: var(--gray); font-weight: 300; }
.feature__list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

/* --- CARD --- */
.card { background: var(--white); overflow: hidden; transition: var(--transition); }
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.card__img { width: 100%; height: 260px; object-fit: cover; }
.card__body { padding: 28px 24px; }
.card__body h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; margin-bottom: 10px; }
.card__body p { color: var(--gray); font-size: .95rem; font-weight: 300; }
.card__body .price { color: var(--gold); font-weight: 700; font-size: 1.1rem; margin-top: 12px; }

/* --- PARALLAX QUOTE --- */
.parallax-quote { background: var(--primary); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.parallax-quote::before { content: '"'; position: absolute; top: -40px; left: 50%; transform: translateX(-50%); font-family: 'Playfair Display', serif; font-size: 20rem; color: rgba(197,160,80,.06); line-height: 1; }
.parallax-quote blockquote { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-style: italic; color: var(--white); max-width: 700px; margin: 0 auto 20px; line-height: 1.5; position: relative; z-index: 1; }
.parallax-quote cite { color: var(--gold); font-size: .9rem; font-style: normal; letter-spacing: 2px; text-transform: uppercase; }

/* --- CTA --- */
.cta-section { background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--white); margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,.6); max-width: 500px; margin: 0 auto 30px; font-weight: 300; }

/* --- FORM --- */
.form { max-width: 580px; margin: 0 auto; }
.form__group { margin-bottom: 24px; }
.form__group label { display: block; font-size: .8rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; color: var(--text); }
.section--dark .form__group label { color: rgba(255,255,255,.8); }
.form__group input,
.form__group textarea,
.form__group select { width: 100%; padding: 14px 18px; border: 1px solid var(--border); background: var(--white); font-family: 'Lato', sans-serif; font-size: .95rem; transition: var(--transition); color: var(--text); }
.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(197,160,80,.12); }
.form__group textarea { resize: vertical; min-height: 130px; }

/* --- FOOTER --- */
.footer { background: var(--primary); color: rgba(255,255,255,.6); padding: 80px 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer__col h4 { font-family: 'Playfair Display', serif; color: var(--white); font-weight: 600; margin-bottom: 18px; font-size: 1.1rem; }
.footer__col p { font-size: .9rem; line-height: 1.8; font-weight: 300; }
.footer__col a { display: block; padding: 4px 0; font-size: .9rem; font-weight: 300; transition: var(--transition); }
.footer__col a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; text-align: center; font-size: .85rem; }
.footer__bottom a { color: var(--gold); }

/* --- COOKIE BANNER --- */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--primary); color: var(--white); padding: 24px 30px; z-index: 9999; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; border-top: 1px solid var(--gold); transform: translateY(100%); transition: transform .5s cubic-bezier(.4,0,.2,1); }
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { flex: 1; min-width: 260px; font-size: .9rem; font-weight: 300; }
.cookie-banner p a { color: var(--gold); text-decoration: underline; }
.cookie-banner .cookie-btns { display: flex; gap: 12px; }

/* --- SUCCESS --- */
.success { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 24px; background: var(--cream); }
.success__icon { width: 80px; height: 80px; border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; }
.success__icon svg { width: 36px; height: 36px; fill: var(--gold); }
.success h1 { font-family: 'Playfair Display', serif; font-size: 2.2rem; margin-bottom: 16px; }
.success p { color: var(--gray); max-width: 480px; margin: 0 auto 12px; font-weight: 300; }

/* --- POLICY --- */
.policy { padding: 60px 0; }
.policy h1 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; margin-bottom: 24px; }
.policy h2 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 600; margin: 32px 0 14px; color: var(--text); }
.policy p, .policy li { color: var(--gray); line-height: 1.8; margin-bottom: 12px; font-weight: 300; }
.policy ul { padding-left: 24px; list-style: disc; }

/* --- PAGE HEADER (with big bg) --- */
.page-header { position: relative; height: 40vh; min-height: 280px; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--primary); overflow: hidden; }
.page-header__bg { position: absolute; inset: 0; }
.page-header__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.page-header__content { position: relative; z-index: 2; }
.page-header h1 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 2.8rem; font-weight: 700; }
.page-header p { color: rgba(255,255,255,.6); margin-top: 10px; font-weight: 300; font-size: 1.05rem; }

/* --- MENU ITEM --- */
.menu-item { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 0; border-bottom: 1px solid var(--border); }
.menu-item:last-child { border-bottom: none; }
.menu-item__name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; }
.menu-item__desc { color: var(--gray); font-size: .9rem; font-weight: 300; flex: 1; margin: 0 20px; }
.menu-item__price { color: var(--gold); font-weight: 700; font-size: 1rem; white-space: nowrap; }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .feature { grid-template-columns: 1fr; gap: 30px; }
  .feature--reverse { direction: ltr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.8rem; }
}
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; position: absolute; top: 70px; left: 0; right: 0; background: rgba(26,26,26,.98); flex-direction: column; padding: 24px; gap: 18px; }
  .nav__links.open { display: flex; }
  .nav__burger { display: flex; }
  .hero h1 { font-size: 2rem; }
  .hero { min-height: 500px; }
  .section { padding: 60px 0; }
  .section__title { font-size: 1.8rem; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; text-align: center; }
  .page-header h1 { font-size: 2rem; }
  .parallax-quote blockquote { font-size: 1.3rem; }
  .menu-item { flex-direction: column; gap: 4px; }
  .menu-item__desc { margin: 4px 0; }
}
