/* ============================================
   LA BOCA NOVA — STYLES PARTAGÉS
   Version 1.0 · Mai 2026
   ============================================ */

:root {
  --rouge: #CE1616;
  --rouge-dark: #A8362A;
  --orange: #FF6D28;
  --orange-light: #FF8B4F;
  --creme: #FFF4E8;
  --creme-warm: #FFE4CF;
  --creme-pale: #FAEEDC;
  --rose: #FFA9A8;
  --marron: #5A0A03;
  --marron-mid: #7A2A1F;
  --dark: #1A0F08;
  --char: #2C1810;
  --brown-mid: #6B4530;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--creme);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ============ NAVBAR FIXE ============ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26, 15, 8, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255, 228, 207, 0.1);
}
.nav-logo { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255, 244, 232, 0.75); font-weight: 400;
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--orange-light); }
.nav-cta {
  background: var(--rouge); color: var(--creme);
  padding: 10px 22px; font-family: 'Poppins', sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  border: none; cursor: pointer; transition: background 0.2s;
}
.nav-cta:hover { background: var(--orange); }
.nav-burger {
  display: none; background: none; border: none;
  color: var(--creme); font-size: 24px; cursor: pointer;
}

/* ============ PAGE HERO (pour pages internes) ============ */
.page-hero {
  background: var(--dark);
  padding: 140px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(206,22,22,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(255,109,40,0.18) 0%, transparent 55%);
  z-index: 1;
}
.page-hero-content { position: relative; z-index: 5; max-width: 880px; margin: 0 auto; }
.page-hero-eyebrow {
  font-size: 10px; letter-spacing: 6px; text-transform: uppercase;
  color: var(--orange-light); margin-bottom: 18px; font-weight: 500;
}
.page-hero h1 {
  font-family: 'Anton', sans-serif;
  font-size: 64px; line-height: 1.0; letter-spacing: 1.5px;
  color: var(--creme); text-transform: uppercase; margin-bottom: 24px;
}
.page-hero h1 em { font-style: normal; color: var(--orange-light); }
.page-hero-subtitle {
  font-size: 18px; font-style: italic; font-weight: 300;
  color: rgba(255,244,232,0.78); max-width: 640px; margin: 0 auto;
  line-height: 1.6;
}
.page-hero-divider {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange-light), transparent);
  margin: 28px auto 0;
}

/* ============ SECTIONS ============ */
.section { padding: 96px 40px; position: relative; }
.section--creme { background: var(--creme); }
.section--creme-warm { background: var(--creme-warm); }
.section--pale { background: var(--creme-pale); }
.section--dark { background: var(--dark); color: var(--creme); }
.section--char { background: var(--char); color: var(--creme); }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.eyebrow {
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--rouge); margin-bottom: 16px; font-weight: 500;
}
.section--dark .eyebrow, .section--char .eyebrow { color: var(--orange-light); }
.section-title {
  font-family: 'Anton', sans-serif; font-weight: 400;
  font-size: 56px; color: var(--marron); line-height: 1.05;
  margin: 0; letter-spacing: 0.5px; text-transform: uppercase;
}
.section-title em { font-style: normal; color: var(--rouge); }
.section--dark .section-title, .section--char .section-title { color: var(--creme); }
.section--dark .section-title em, .section--char .section-title em { color: var(--orange-light); }
.separator {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  margin: 20px auto;
}
.section--dark .separator, .section--char .separator {
  background: linear-gradient(90deg, transparent, var(--orange-light), transparent);
}
.section-desc {
  font-size: 16px; font-style: italic; font-weight: 300;
  color: var(--brown-mid); line-height: 1.7;
  max-width: 640px; margin: 0 auto;
}
.section--dark .section-desc, .section--char .section-desc {
  color: rgba(255, 244, 232, 0.75);
}

/* ============ BUTTONS ============ */
.btn {
  font-family: 'Poppins', sans-serif;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  padding: 16px 28px; border: none; cursor: pointer;
  transition: all 0.2s; display: inline-block; text-align: center;
}
.btn--primary { background: var(--rouge); color: var(--creme); }
.btn--primary:hover { background: var(--orange); transform: translateY(-2px); }
.btn--ghost {
  background: transparent; color: var(--creme);
  border: 1px solid rgba(255, 244, 232, 0.4);
}
.btn--ghost:hover { background: rgba(255, 244, 232, 0.08); border-color: var(--orange-light); }
.btn--marron { background: var(--marron); color: var(--creme); }
.btn--marron:hover { background: var(--rouge); transform: translateY(-2px); }

/* ============ FORMULES (food) ============ */
.formules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 32px;
}
.formule {
  background: #fff;
  border: 1px solid rgba(206, 22, 22, 0.25);
  padding: 52px 32px 32px;
  position: relative;
}
.formule-price {
  position: absolute; top: -28px; right: 28px;
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--marron); color: var(--creme);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.formule-price strong { font-family: 'Anton', sans-serif; font-size: 28px; line-height: 1; }
.formule-price span { font-size: 8.5px; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 3px; opacity: 0.85; }
.formule-tag {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 14px; font-weight: 600;
}
.formule-name {
  font-family: 'Anton', sans-serif; font-size: 30px;
  color: var(--marron); margin-bottom: 12px;
  line-height: 1.05; text-transform: uppercase;
}
.formule-name em { font-style: normal; color: var(--rouge); }
.formule-accroche {
  font-size: 13px; font-style: italic; color: var(--rouge);
  margin-bottom: 20px; line-height: 1.4;
}
.formule-list { list-style: none; }
.formule-list li {
  font-size: 12.5px; font-weight: 300; line-height: 1.5;
  color: var(--dark); padding: 9px 0 9px 22px;
  border-bottom: 1px solid rgba(206, 22, 22, 0.15); position: relative;
}
.formule-list li:last-child { border-bottom: none; }
.formule-list li::before {
  content: '—'; position: absolute; left: 0; top: 9px;
  color: var(--orange); font-weight: 400;
}
.formule-list li strong { font-weight: 600; color: var(--marron); }
.formule-list li em { font-style: italic; color: var(--brown-mid); }

/* ============ DRINKS TABLE ============ */
.drinks-table {
  margin-top: 28px; background: #fff;
  border: 1px solid rgba(206, 22, 22, 0.25);
}
.drinks-header {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  background: var(--marron); color: var(--creme);
}
.drinks-header > div {
  padding: 18px 24px; font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 500;
}
.drinks-header > div:nth-child(2), .drinks-header > div:nth-child(3) { text-align: center; }
.drinks-row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid rgba(206, 22, 22, 0.15);
}
.drinks-row:last-child { border-bottom: none; }
.drinks-row > div { padding: 16px 20px; display: flex; align-items: center; }
.drinks-row > div:nth-child(2), .drinks-row > div:nth-child(3) { justify-content: center; }
.drinks-label { font-size: 14px; font-weight: 500; color: var(--marron); }
.drinks-label em {
  font-style: italic; font-size: 12px; font-weight: 300;
  color: var(--brown-mid); display: block; margin-top: 3px;
}
.drinks-price {
  font-family: 'Anton', sans-serif; font-size: 28px;
  color: var(--rouge); letter-spacing: 0.5px;
}
.drinks-price small {
  font-size: 11px; font-weight: 400;
  color: var(--brown-mid); margin-left: 4px;
}

/* ============ PACKAGES ============ */
.packages-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 28px;
}
.packages-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.package {
  background: var(--creme-warm); padding: 26px 24px;
  border-top: 3px solid var(--rouge); position: relative;
}
.package-tag {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 10px; font-weight: 600;
}
.package-name {
  font-family: 'Anton', sans-serif; font-size: 24px;
  color: var(--marron); margin-bottom: 4px;
  text-transform: uppercase; line-height: 1.05;
}
.package-accroche {
  font-size: 12px; font-style: italic; color: var(--brown-mid);
  margin-bottom: 14px; line-height: 1.4;
}
.package-price {
  font-family: 'Anton', sans-serif; font-size: 44px;
  color: var(--rouge); line-height: 1; margin-bottom: 4px;
}
.package-price small {
  font-size: 11px; font-weight: 400; color: var(--brown-mid); letter-spacing: 1px;
}
.package-divider { width: 30px; height: 1px; background: var(--orange); margin: 12px 0; }
.package-content {
  font-size: 12px; font-weight: 300; color: var(--dark); line-height: 1.55;
}
.package-content strong { font-weight: 600; color: var(--marron); }

/* ============ FORMULAIRE ============ */
.form-block {
  background: var(--creme-warm);
  padding: 56px 48px;
  border-left: 4px solid var(--rouge);
  max-width: 940px; margin: 0 auto;
}
.form-block-title {
  font-family: 'Anton', sans-serif; font-size: 36px;
  color: var(--marron); margin-bottom: 12px;
  text-transform: uppercase; line-height: 1.1;
}
.form-block-title em { font-style: normal; color: var(--rouge); }
.form-block-subtitle {
  font-size: 14px; font-style: italic; font-weight: 300;
  color: var(--brown-mid); margin-bottom: 36px;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-bottom: 18px;
}
.form-field { display: flex; flex-direction: column; }
.form-field--full { grid-column: 1 / -1; }
.form-label {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--rouge); font-weight: 600; margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 14px; padding: 12px 16px;
  border: 1px solid rgba(90, 10, 3, 0.3);
  background: #fff; color: var(--dark);
  width: 100%; transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--rouge);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-radio-group { display: flex; gap: 20px; flex-wrap: wrap; }
.form-radio {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; font-size: 14px; color: var(--dark);
}
.form-radio input { width: 16px; height: 16px; accent-color: var(--rouge); cursor: pointer; }
.form-submit {
  margin-top: 24px; background: var(--rouge); color: var(--creme);
  padding: 16px 36px; font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600;
  border: none; cursor: pointer; transition: all 0.2s;
}
.form-submit:hover { background: var(--orange); transform: translateY(-2px); }

/* ============ FAQ SEO ============ */
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 40px;
}
.faq-item {
  background: #fff; padding: 28px 28px;
  border-left: 3px solid var(--orange);
}
.faq-question {
  font-family: 'Anton', sans-serif; font-size: 18px;
  color: var(--marron); margin-bottom: 10px;
  text-transform: uppercase; line-height: 1.2;
}
.faq-answer {
  font-size: 13.5px; font-weight: 300;
  color: var(--brown-mid); line-height: 1.7;
}
.faq-answer strong { color: var(--marron); font-weight: 500; }

/* ============ FOOTER ============ */
.footer {
  background: var(--dark); color: var(--creme);
  padding: 80px 40px 32px;
  text-align: center; position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(206, 22, 22, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 85%, rgba(255, 109, 40, 0.14) 0%, transparent 55%);
}
.footer-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.footer-logo {
  width: 130px; margin-bottom: 32px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}
.footer-tagline {
  font-family: 'Anton', sans-serif; font-size: 24px;
  color: var(--creme); letter-spacing: 0.5px;
  margin-bottom: 8px; text-transform: uppercase;
}
.footer-tagline em { font-style: normal; color: var(--orange-light); }
.footer-sub {
  font-size: 12px; font-style: italic; font-weight: 300;
  color: rgba(255, 244, 232, 0.6);
  margin-bottom: 36px; letter-spacing: 0.5px;
}
.footer-divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange-light), transparent);
  margin: 0 auto 36px;
}
.footer-nav { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 32px; }
.footer-nav a {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255, 244, 232, 0.65); transition: color 0.2s;
}
.footer-nav a:hover { color: var(--orange-light); }
.footer-socials { display: flex; justify-content: center; gap: 16px; margin-bottom: 36px; }
.footer-social {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255, 244, 232, 0.7);
  padding: 10px 20px; border: 1px solid rgba(255, 244, 232, 0.25);
  transition: all 0.2s;
}
.footer-social:hover { border-color: var(--orange-light); color: var(--orange-light); }
.footer-coordinates {
  font-size: 12px; color: rgba(255, 244, 232, 0.55);
  line-height: 1.9; letter-spacing: 0.5px;
}
.footer-coordinates a { color: var(--orange-light); }
.footer-bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(255, 244, 232, 0.1);
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255, 244, 232, 0.35);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-links.open {
    display: flex; position: absolute; top: 100%;
    left: 0; right: 0; background: rgba(26, 15, 8, 0.98);
    flex-direction: column; padding: 20px; gap: 16px;
    align-items: stretch; border-bottom: 1px solid rgba(255, 228, 207, 0.1);
  }
  .nav-links.open .nav-link { padding: 8px 0; }
  
  .page-hero h1 { font-size: 44px; }
  .page-hero { padding: 110px 24px 60px; }
  
  .section { padding: 64px 24px; }
  .section-title { font-size: 40px; }
  
  .formules { grid-template-columns: 1fr; }
  .packages-grid, .packages-grid.cols-3 { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  
  .form-row { grid-template-columns: 1fr; }
  .form-block { padding: 36px 24px; }
  .form-block-title { font-size: 28px; }
}

@media (max-width: 540px) {
  .page-hero h1 { font-size: 36px; letter-spacing: 1px; }
  .section-title { font-size: 32px; }
  .nav-cta { padding: 8px 14px; font-size: 10px; }
}
