/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #c9a227;
  --orange-dark: #a07d10;
  --orange-light: #e2bc55;
  --red: #9b1c1c;
  --red-dark: #7a1515;
  --red-light: #c22626;
  --dark: #1a1212;
  --darker: #110d0d;
  --card-bg: #211616;
  --text: #e8e8e8;
  --text-muted: #aaaaaa;
  --white: #ffffff;
  --border: rgba(201,162,39,0.12);
  --radius: 16px;
  --shadow: 0 8px 32px rgba(0,0,0,0.5);
}

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.3s, box-shadow 0.3s;
}

#navbar.scrolled {
  background: rgba(17,17,17,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 3px;
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.85; }

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.5px;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }

.btn-nav {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.btn-nav:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-1px);
}
.btn-nav::after { display: none !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(160deg, #5c0a0a 0%, #2a0a0a 40%, #110d0d 100%);
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(155,28,28,0.25) 0%, transparent 70%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e8820c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 0 24px;
}

.hero-tag {
  display: inline-block;
  background: rgba(232,130,12,0.15);
  border: 1px solid rgba(232,130,12,0.4);
  color: var(--orange-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

#hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: 8px;
  margin-bottom: 20px;
  text-shadow: 0 0 60px rgba(232,130,12,0.3);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(155,28,28,0.5);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(155,28,28,0.6);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-outline:hover {
  border-color: var(--orange);
  background: rgba(232,130,12,0.1);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-scroll span {
  display: block;
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { opacity: 0; height: 0; }
  50%  { opacity: 1; height: 50px; }
  100% { opacity: 0; height: 50px; }
}

/* ===== PROMO BAR ===== */
.promo-bar {
  background: var(--red);
  padding: 12px 24px;
  text-align: center;
  overflow: hidden;
}
.promo-bar p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.3px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(100vw); }
  to   { transform: translateX(-100%); }
}

/* ===== SECTION TAGS ===== */
.section-tag {
  display: inline-block;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 16px;
  max-width: 520px;
}

.menu-note {
  display: inline-block;
  background: rgba(232,130,12,0.12);
  border: 1px solid rgba(232,130,12,0.35);
  color: var(--orange-light);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 40px;
}

/* ===== ABOUT ===== */
#about {
  padding: 100px 0;
  background: var(--dark);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.8;
}

.about-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-badges li {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
}

.about-img {
  display: flex;
  justify-content: center;
}

.img-card {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a1500, #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

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

.section-banner {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  text-align: center;
}

.section-banner img {
  max-width: 100%;
  max-height: 400px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: inline-block;
}

.tiramisu-img {
  width: auto;
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
  border-radius: 10px;
  margin: 0 auto 12px;
  display: block;
}

/* ===== MENU SECTIONS ===== */
#menu, #assiettes {
  padding: 100px 0;
}

#menu { background: var(--darker); }
#assiettes { background: var(--dark); }
#barquettes { padding: 100px 0; background: var(--darker); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.menu-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(232,130,12,0.3);
}

.menu-card.featured {
  border-color: rgba(201,162,39,0.5);
  background: linear-gradient(135deg, #2a1010, #1e1515);
}

.badge-featured {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
}

.card-img {
  width: calc(100% + 64px);
  margin: -32px -32px 0 -32px;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
}

.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
}

.card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.card-variants {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.card-variants li span {
  background: rgba(232,130,12,0.1);
  border: 1px solid rgba(232,130,12,0.25);
  color: var(--orange-light);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 50px;
}

.card-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.price {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.price strong {
  font-size: 1.2rem;
  color: var(--orange);
  font-weight: 700;
}

/* ===== BOISSONS & DESSERTS ===== */
#boissons {
  padding: 100px 0;
  background: var(--darker);
}

.bd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 16px;
}

.bd-col {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.bd-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 24px;
}

.bd-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bd-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.bd-list li:last-child { border-bottom: none; }

.bd-price {
  font-weight: 700;
  color: var(--orange);
  font-size: 1rem;
}

.tiramisu-card {
  margin-top: 24px;
  background: rgba(232,130,12,0.08);
  border: 1px solid rgba(232,130,12,0.2);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.tiramisu-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 12px;
}

.tiramisu-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== CTA ===== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #3a0a0a 0%, #1a1212 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(155,28,28,0.2) 0%, transparent 70%);
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

/* ===== CONTACT ===== */
#contact {
  padding: 100px 0;
  background: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 36px; }

.info-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(155,28,28,0.15);
  border: 1px solid rgba(155,28,28,0.35);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-block strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.info-block p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.info-block a {
  color: var(--orange);
  transition: opacity 0.2s;
}
.info-block a:hover { opacity: 0.8; }

.map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.map-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
}

.map-inner span { font-size: 4rem; }
.map-inner p { font-size: 1rem; font-weight: 500; color: var(--text); }
.map-inner small { font-size: 0.8rem; text-align: center; }

/* ===== FOOTER ===== */
footer {
  background: var(--darker);
  border-top: 1px solid var(--border);
  padding: 48px 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 4px;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }

.footer-copy {
  color: #555;
  font-size: 0.78rem;
  margin-top: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .burger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: rgba(17,17,17,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 40px;
    transition: right 0.35s ease;
    border-left: 1px solid var(--border);
    z-index: 999;
  }

  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }

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

  .about-img { order: -1; }
  .img-card { max-width: 100%; }

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

  .promo-bar p { animation: none; white-space: normal; }

  #hero h1 { letter-spacing: 4px; }

  .hero-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
  .map-placeholder { aspect-ratio: 1/1; }
}
