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

/* ============================================
   ANIMATIONS - Scroll Reveal & Transitions
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes sway {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(2deg); }
  75% { transform: rotate(-2deg); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes glow {
  0%, 100% { filter: drop-shadow(0 0 5px rgba(201, 162, 39, 0.3)); }
  50% { filter: drop-shadow(0 0 15px rgba(201, 162, 39, 0.6)); }
}

/* Scroll reveal classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Smooth scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--wood-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--brass);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brass-light);
}

/* Selection color */
::selection {
  background: var(--burgundy);
  color: var(--cream);
}

/* Stagger delays for event cards */
.event-card:nth-child(1) { transition-delay: 0.05s; }
.event-card:nth-child(2) { transition-delay: 0.1s; }
.event-card:nth-child(3) { transition-delay: 0.15s; }
.event-card:nth-child(4) { transition-delay: 0.2s; }
.event-card:nth-child(5) { transition-delay: 0.25s; }
.event-card:nth-child(6) { transition-delay: 0.3s; }
.event-card:nth-child(7) { transition-delay: 0.35s; }

:root {
  /* Palette Brasserie Parisienne Bobo */
  --wood-dark: #2C1810;
  --wood-medium: #4A3728;
  --wood-light: #6B4423;
  --burgundy: #722F37;
  --burgundy-dark: #4A1C23;
  --brass: #C9A227;
  --brass-light: #D4AF37;
  --cream: #F5E6D3;
  --cream-dark: #E8D4BC;
  --parchment: #FDF8F0;
  --text: #2C1810;
  --text-light: #5C4A3D;
  --success: #4A7C59;
  --warning: #C9A227;
  --error: #8B3A3A;
}

/* Wood texture pattern */
body {
  font-family: 'Lora', 'Georgia', serif;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(74, 55, 40, 0.03) 2px,
      rgba(74, 55, 40, 0.03) 4px
    ),
    linear-gradient(180deg, #E8D4BC 0%, #D4C4A8 50%, #C9B896 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   HEADER - Dark Wood Bar Style
   ============================================ */
.header {
  background: linear-gradient(180deg, var(--wood-dark) 0%, var(--wood-medium) 100%);
  box-shadow:
    0 4px 20px rgba(0,0,0,0.4),
    inset 0 -2px 0 var(--brass);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.4s ease-in-out;
}

.header.scrolled {
  background: rgba(44, 24, 16, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  padding: 5px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo h1 {
  font-size: 2rem;
  color: var(--brass-light);
  font-weight: normal;
  letter-spacing: 3px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  font-style: italic;
  transition: all 0.4s ease;
  cursor: pointer;
}

.logo:hover h1 {
  color: #fff;
  text-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
  transform: scale(1.02);
}

.logo .tagline {
  font-size: 0.7rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 4px;
  opacity: 0.8;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-link {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.4s ease-in-out;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  letter-spacing: 1px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--brass);
  transition: all 0.4s ease-in-out;
  transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-link:hover, .nav-link.active {
  color: var(--brass-light);
  border-bottom-color: transparent;
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--cream);
}

/* ============================================
   HERO - Vintage Brasserie
   ============================================ */
.hero {
  height: 100vh;
  background: var(--wood-dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream);
  margin-top: 75px;
  overflow: hidden;
}

/* Slideshow */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slideshow .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.hero-slideshow .slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(44, 24, 16, 0.7) 0%,
      rgba(44, 24, 16, 0.4) 50%,
      rgba(44, 24, 16, 0.8) 100%
    );
  z-index: 1;
}

/* Decorative frame */
.hero::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 2px solid var(--brass);
  z-index: 2;
  pointer-events: none;
  opacity: 0.5;
}

.slideshow-dots {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 3;
}

.slideshow-dots .dot {
  width: 10px;
  height: 10px;
  border: 2px solid var(--brass);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.slideshow-dots .dot:hover {
  background: rgba(201, 162, 39, 0.5);
}

.slideshow-dots .dot.active {
  background: var(--brass);
  transform: scale(1.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px;
}

.hero h2 {
  font-size: 4rem;
  font-weight: normal;
  margin-bottom: 15px;
  letter-spacing: 6px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.6);
  font-style: italic;
  color: var(--brass-light);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 10px;
  opacity: 0.9;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* Hero Carte de Visite Style */
.hero-carte-visite h2 {
  font-family: 'Times New Roman', Times, Georgia, serif;
  font-size: 5rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 12px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-carte-visite .hero-prefix {
  font-family: 'Times New Roman', Times, Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 10px;
  opacity: 1;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-carte-visite .hero-tagline {
  font-family: 'Times New Roman', Times, Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 35px;
  font-style: italic;
  animation: fadeInUp 1s ease-out 0.5s both;
}

@media (max-width: 768px) {
  .hero-carte-visite h2 {
    font-size: 2.8rem;
    letter-spacing: 6px;
  }

  .hero-carte-visite .hero-prefix {
    font-size: 1rem;
    letter-spacing: 5px;
  }

  .hero-carte-visite .hero-tagline {
    font-size: 0.95rem;
    letter-spacing: 2px;
  }
}

.hero .btn {
  animation: fadeInUp 1s ease-out 0.9s both;
}

.date-display {
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 35px;
  font-style: italic;
}

/* ============================================
   BUTTONS - Brass & Leather Style
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 35px;
  border: none;
  border-radius: 0;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-family: inherit;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(180deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  color: var(--cream);
  border: 2px solid var(--brass);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn-primary:hover {
  background: linear-gradient(180deg, var(--brass) 0%, var(--brass-light) 100%);
  color: var(--wood-dark);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.btn-secondary {
  background: var(--cream-dark);
  color: var(--wood-dark);
  border: 2px solid var(--wood-light);
}

.btn-secondary:hover {
  background: var(--brass-light);
  border-color: var(--brass);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--burgundy);
  color: var(--burgundy);
}

.btn-outline:hover {
  background: var(--burgundy);
  color: var(--cream);
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  display: none;
  padding: 60px 0;
  min-height: calc(100vh - 80px);
  margin-top: 75px;
}

.section.active {
  display: block;
}

#accueil.active {
  margin-top: 0;
  padding-top: 0;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  color: var(--wood-dark);
  margin-bottom: 50px;
  font-weight: normal;
  letter-spacing: 4px;
  font-style: italic;
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.section-title::after {
  content: '✦';
  display: block;
  color: var(--brass);
  font-size: 1.5rem;
  margin-top: 15px;
  animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   INFO CARDS - Chalkboard/Menu Style
   ============================================ */

/* ============================================
   BIENVENUE SECTION - Premium Design
   ============================================ */
.bienvenue-section {
  position: relative;
  padding: 100px 60px;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(114, 47, 55, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #1a1410 0%, #2C1810 50%, #1e1614 100%);
  overflow: hidden;
}

/* Ivy Decorations */
.ivy-decoration {
  position: absolute;
  width: 150px;
  height: 150px;
  z-index: 1;
  opacity: 0.85;
  transition: opacity 0.5s ease;
}

.ivy-decoration:hover {
  opacity: 1;
}

.ivy-top-left {
  top: 0;
  left: 0;
}

.ivy-top-right {
  top: 0;
  right: 0;
}

.ivy-bottom-left {
  bottom: 0;
  left: 0;
}

.ivy-bottom-right {
  bottom: 0;
  right: 0;
}

.ivy-decoration svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
  animation: sway 8s ease-in-out infinite;
}

.ivy-top-right svg,
.ivy-bottom-left svg {
  animation-delay: -2s;
}

.ivy-bottom-right svg {
  animation-delay: -4s;
}

/* Golden Frame */
.bienvenue-frame {
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(201, 162, 39, 0.3);
  pointer-events: none;
}

.frame-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--brass);
  border-style: solid;
}

.frame-corner-tl {
  top: -1px;
  left: -1px;
  border-width: 3px 0 0 3px;
}

.frame-corner-tr {
  top: -1px;
  right: -1px;
  border-width: 3px 3px 0 0;
}

.frame-corner-bl {
  bottom: -1px;
  left: -1px;
  border-width: 0 0 3px 3px;
}

.frame-corner-br {
  bottom: -1px;
  right: -1px;
  border-width: 0 3px 3px 0;
}

/* Content */
.bienvenue-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.bienvenue-header {
  text-align: center;
  margin-bottom: 60px;
}

.header-ornament {
  display: flex;
  justify-content: center;
  margin: 15px 0;
}

.header-ornament svg {
  width: 120px;
  height: 25px;
}

.bienvenue-header h3 {
  font-family: 'Lora', serif;
  font-size: 3.2rem;
  color: var(--cream);
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 2px 20px rgba(201, 162, 39, 0.3);
}

.bienvenue-subtitle {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: var(--brass-light);
  font-style: italic;
  letter-spacing: 4px;
  margin-top: 10px;
  opacity: 0.9;
}

/* Blocks with Full Photo Background */
.bienvenue-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.bienvenue-block {
  position: relative;
  height: 380px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bienvenue-block::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--brass);
  opacity: 0;
  z-index: 3;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.bienvenue-block:hover::before {
  opacity: 1;
}

.bienvenue-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  border-color: var(--brass);
}

.block-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0.4) 40%,
    rgba(0,0,0,0.3) 100%
  );
  z-index: 1;
  transition: background 0.5s ease;
}

.bienvenue-block:hover .block-overlay {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.8) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.4) 100%
  );
}

.block-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 30px 25px;
  z-index: 2;
  text-align: center;
}

.block-content h4 {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  color: var(--brass-light);
  font-weight: 500;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.block-content p {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.8;
  margin: 0;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.block-content p strong {
  color: #fff;
  font-weight: 600;
}

/* Quote */
.bienvenue-quote {
  position: relative;
  text-align: center;
  padding: 50px 80px;
  margin: 40px 0 50px;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.quote-mark {
  position: absolute;
  width: 50px;
  height: 50px;
  opacity: 0.5;
}

.quote-left {
  top: 20px;
  left: 20px;
}

.quote-right {
  bottom: 20px;
  right: 20px;
}

.quote-mark svg {
  width: 100%;
  height: 100%;
}

.bienvenue-quote p {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  color: var(--cream);
  font-style: italic;
  line-height: 1.8;
  margin: 0 0 15px;
}

.quote-signature {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: var(--brass-light);
  letter-spacing: 3px;
}

/* CTA */
.bienvenue-cta {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.bienvenue-cta .btn {
  min-width: 200px;
  padding: 16px 40px;
}

/* Responsive */
@media (max-width: 1024px) {
  .bienvenue-blocks {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .bienvenue-block {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .bienvenue-section {
    padding: 80px 30px;
  }

  .ivy-decoration {
    width: 100px;
    height: 100px;
  }

  .bienvenue-frame {
    inset: 15px;
  }

  .frame-corner {
    width: 25px;
    height: 25px;
    border-width: 2px;
  }

  .bienvenue-header h3 {
    font-size: 2rem;
    letter-spacing: 3px;
  }

  .bienvenue-subtitle {
    font-size: 0.95rem;
    letter-spacing: 2px;
  }

  .bienvenue-blocks {
    gap: 20px;
    max-width: 100%;
  }

  .bienvenue-block {
    height: 280px;
  }

  .block-content {
    padding: 25px 20px;
  }

  .block-content h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .block-content p {
    font-size: 0.95rem;
  }

  .bienvenue-quote {
    padding: 40px 50px;
  }

  .bienvenue-quote p {
    font-size: 1.2rem;
  }

  .quote-mark {
    width: 35px;
    height: 35px;
  }

  .bienvenue-cta {
    flex-direction: column;
    align-items: center;
  }

  .bienvenue-cta .btn {
    width: 100%;
    max-width: 280px;
  }
}

.info-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 60px 0;
}

/* Infos Pratiques Section */
.infos-pratiques {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--wood-dark) 0%, var(--burgundy-dark) 100%);
  position: relative;
}

.infos-pratiques::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.infos-pratiques .section-title {
  color: var(--cream);
  margin-bottom: 50px;
}

.infos-pratiques .section-title::after {
  color: var(--brass-light);
}

.infos-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.infos-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.adresse-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.adresse-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.adresse-text h3 {
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  color: var(--brass-light);
  font-style: italic;
  margin-bottom: 8px;
}

.adresse-text p {
  color: var(--cream);
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--cream);
  text-decoration: none;
  font-size: 1.1rem;
  padding: 12px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201, 162, 39, 0.3);
  transition: all 0.4s ease;
}

.contact-item:hover {
  background: rgba(201, 162, 39, 0.15);
  border-color: var(--brass);
  transform: translateX(10px);
}

.contact-icon {
  font-size: 1.3rem;
}

.horaires-block {
  background: rgba(0,0,0,0.2);
  padding: 25px;
  border: 1px solid rgba(201, 162, 39, 0.3);
}

.horaires-block h4 {
  font-family: 'Lora', serif;
  color: var(--brass-light);
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 20px;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

.horaires-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.horaire-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dotted rgba(255,255,255,0.15);
}

.horaire-row:last-child {
  border-bottom: none;
}

.horaire-row .jour {
  color: var(--cream);
  font-weight: 500;
}

.horaire-row .heures {
  color: var(--brass-light);
  font-size: 0.95rem;
}

.horaire-row.closed .heures {
  color: var(--burgundy);
  opacity: 0.8;
}

.social-block {
  display: flex;
  gap: 15px;
}

.social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 25px;
  background: transparent;
  border: 2px solid var(--brass);
  color: var(--cream);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.4s ease;
}

.social-btn:hover {
  background: var(--brass);
  color: var(--wood-dark);
  transform: translateY(-3px);
}

.infos-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.map-container {
  flex: 1;
  min-height: 350px;
  border: 4px solid var(--wood-medium);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  overflow: hidden;
}

.map-container iframe {
  display: block;
}

.directions-btn {
  text-align: center;
}

@media (max-width: 900px) {
  .infos-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .map-container {
    min-height: 300px;
  }

  .social-block {
    flex-direction: column;
  }
}

/* ============================================
   GALLERY - Carousel Bandeau
   ============================================ */
.gallery-preview {
  padding: 50px 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(44, 24, 16, 0.05) 50%, transparent 100%);
  overflow: hidden;
}

.gallery-preview h3 {
  text-align: center;
  font-size: 2rem;
  color: var(--wood-dark);
  margin-bottom: 40px;
  font-weight: normal;
  font-style: italic;
  letter-spacing: 3px;
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-container::before,
.carousel-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.carousel-container::before {
  left: 0;
  background: linear-gradient(90deg, var(--cream-dark) 0%, transparent 100%);
}

.carousel-container::after {
  right: 0;
  background: linear-gradient(-90deg, var(--cream-dark) 0%, transparent 100%);
}

.carousel-track {
  display: flex;
  gap: 25px;
  animation: carousel-scroll 25s linear infinite;
  width: max-content;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.carousel-track img {
  width: 320px;
  height: 240px;
  object-fit: cover;
  border: 8px solid var(--wood-medium);
  box-shadow:
    0 8px 25px rgba(0,0,0,0.25),
    inset 0 0 0 2px var(--brass);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex-shrink: 0;
  filter: brightness(0.95);
}

.carousel-track img:hover {
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  border-color: var(--brass);
  filter: brightness(1.05);
  z-index: 10;
}

@keyframes carousel-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-320px * 6 - 25px * 6));
  }
}

@media (max-width: 768px) {
  .carousel-track img {
    width: 260px;
    height: 200px;
  }

  @keyframes carousel-scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-260px * 6 - 25px * 6));
    }
  }

  .carousel-container::before,
  .carousel-container::after {
    width: 40px;
  }
}

/* ============================================
   WINE SECTION - Cave Style
   ============================================ */
.wine-section {
  position: relative;
  margin-top: 60px;
  padding: 100px 40px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  color: var(--cream);
}

.wine-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 24, 16, 0.42) 0%,
    rgba(74, 28, 35, 0.4) 50%,
    rgba(44, 24, 16, 0.45) 100%
  );
}

.wine-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.wine-content h3 {
  font-size: 2.5rem;
  font-style: italic;
  color: var(--brass-light);
  margin-bottom: 15px;
  letter-spacing: 3px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.wine-separator {
  font-size: 2rem;
  color: var(--brass);
  margin-bottom: 30px;
}

.wine-text {
  font-size: 1.2rem;
  line-height: 1.9;
  margin-bottom: 30px;
  opacity: 0.95;
}

.wine-quote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--brass-light);
  margin-bottom: 40px;
  padding: 20px 40px;
  border-left: 3px solid var(--brass);
  border-right: 3px solid var(--brass);
  display: inline-block;
}

.wine-section .btn {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .wine-section {
    padding: 60px 20px;
    background-attachment: scroll;
  }

  .wine-content h3 {
    font-size: 1.8rem;
  }

  .wine-text {
    font-size: 1rem;
  }

  .wine-quote {
    font-size: 1.1rem;
    padding: 15px 20px;
  }
}

/* ============================================
   PAGE HERO - For internal pages
   ============================================ */
.section-with-hero {
  padding-top: 0 !important;
}

.page-hero {
  height: 45vh;
  min-height: 350px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 50px;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(44, 24, 16, 0.35) 0%,
    rgba(44, 24, 16, 0.45) 50%,
    rgba(44, 24, 16, 0.55) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  animation: fadeInUp 1s ease-out;
}

.page-hero-content h2 {
  font-family: 'Lora', serif;
  font-size: 3.5rem;
  color: var(--brass-light);
  font-style: italic;
  letter-spacing: 4px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

.page-hero-content p {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  color: var(--cream);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .page-hero {
    height: 35vh;
    min-height: 280px;
  }

  .page-hero-content h2 {
    font-size: 2.2rem;
  }

  .page-hero-content p {
    font-size: 1rem;
  }
}

/* ============================================
   REVIEWS PAGE - Avis Clients
   ============================================ */
.reviews-header {
  text-align: center;
  margin-bottom: 50px;
}

.reviews-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 40px;
  background: linear-gradient(135deg, var(--wood-dark) 0%, var(--burgundy-dark) 100%);
  max-width: 400px;
  margin: 0 auto;
  border: 3px solid var(--brass);
}

.score-number {
  font-size: 4rem;
  color: var(--brass-light);
  font-weight: 700;
  line-height: 1;
}

.score-stars {
  font-size: 2rem;
  color: var(--brass);
  letter-spacing: 5px;
}

.score-count {
  font-size: 1rem;
  color: var(--cream);
  opacity: 0.9;
  font-style: italic;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.review-card {
  background: var(--parchment);
  padding: 30px;
  border: 3px solid var(--wood-medium);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  text-align: left;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  color: var(--brass);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  border-color: var(--brass);
}

.review-stars {
  color: var(--brass);
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.review-text {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  min-height: 60px;
}

.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid var(--cream-dark);
}

.author-name {
  font-weight: 600;
  color: var(--wood-dark);
}

.review-date {
  font-size: 0.9rem;
  color: var(--text-light);
}

.reviews-footer {
  text-align: center;
  padding-top: 20px;
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .score-number {
    font-size: 3rem;
  }

  .review-card {
    padding: 25px;
  }
}

/* ============================================
   EVENTS SECTION - Bistrot Culture
   ============================================ */
.events-section {
  margin-top: 70px;
  padding: 70px 40px;
  background: linear-gradient(135deg, var(--wood-dark) 0%, #1a1412 50%, var(--burgundy-dark) 100%);
  text-align: center;
  position: relative;
}

.events-section::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid var(--brass);
  opacity: 0.3;
  pointer-events: none;
}

.events-section h3 {
  font-family: 'Lora', serif;
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 3px;
  font-weight: 600;
  font-style: italic;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.events-separator {
  font-size: 2.5rem;
  color: var(--brass);
  margin-bottom: 25px;
}

.events-intro {
  font-size: 1.2rem;
  color: var(--cream);
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
  opacity: 0.95;
}

/* Polaroid Stack Container */
.polaroid-stack-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.polaroid-stack {
  position: relative;
  width: 340px;
  height: 420px;
  margin: 0 auto;
  cursor: pointer;
}

.event-polaroid {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  background: linear-gradient(145deg, #faf8f5 0%, #f0ebe3 100%);
  padding: 12px 12px 50px 12px;
  box-shadow:
    0 8px 30px rgba(0,0,0,0.3),
    0 15px 50px rgba(0,0,0,0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center center;
}

/* Stack positions with different rotations */
.event-polaroid[data-index="0"] {
  transform: translate(-50%, -50%) rotate(-3deg);
  z-index: 6;
}
.event-polaroid[data-index="1"] {
  transform: translate(-52%, -48%) rotate(2deg);
  z-index: 5;
}
.event-polaroid[data-index="2"] {
  transform: translate(-48%, -52%) rotate(-1deg);
  z-index: 4;
}
.event-polaroid[data-index="3"] {
  transform: translate(-51%, -49%) rotate(3deg);
  z-index: 3;
}
.event-polaroid[data-index="4"] {
  transform: translate(-49%, -51%) rotate(-2deg);
  z-index: 2;
}
.event-polaroid[data-index="5"] {
  transform: translate(-50%, -50%) rotate(1deg);
  z-index: 1;
}

.event-polaroid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(0,0,0,0.08);
}

.polaroid-label {
  display: block;
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  color: var(--wood-dark);
  margin-top: 12px;
  font-weight: 600;
}

/* Scotch tape on top polaroid */
.event-polaroid::before {
  content: '';
  position: absolute;
  width: 55px;
  height: 18px;
  background: linear-gradient(180deg, rgba(255, 250, 220, 0.85) 0%, rgba(255, 245, 200, 0.7) 100%);
  top: -9px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  border-radius: 1px;
  opacity: 0;
  transition: opacity 0.3s;
}

.event-polaroid[data-index="0"]::before {
  opacity: 1;
}

/* Fly out animation */
.event-polaroid.fly-out-left {
  animation: flyAwayLeft 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transition: none !important;
}

.event-polaroid.fly-out-right {
  animation: flyAwayRight 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transition: none !important;
}

.event-polaroid.no-transition {
  transition: none !important;
}

@keyframes flyAwayLeft {
  0% {
    transform: translate(-50%, -50%) rotate(-3deg) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-55%, -50%) rotate(0deg) scale(1.35);
    opacity: 1;
  }
  100% {
    transform: translate(-180%, -60%) rotate(-20deg) scale(0.7);
    opacity: 0;
  }
}

@keyframes flyAwayRight {
  0% {
    transform: translate(-50%, -50%) rotate(3deg) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-45%, -50%) rotate(0deg) scale(1.35);
    opacity: 1;
  }
  100% {
    transform: translate(80%, -60%) rotate(20deg) scale(0.7);
    opacity: 0;
  }
}

.stack-hint {
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  color: var(--brass-light);
  font-style: italic;
  margin-top: 20px;
  opacity: 0.8;
}


.events-footer {
  font-size: 1.1rem;
  color: var(--cream);
  opacity: 0.9;
}

.events-footer a {
  color: var(--brass-light);
  text-decoration: none;
  border-bottom: 1px solid var(--brass);
  transition: all 0.3s;
}

.events-footer a:hover {
  color: var(--brass);
  border-bottom-color: transparent;
}

@media (max-width: 768px) {
  .events-section {
    padding: 50px 20px;
  }

  .events-section h3 {
    font-size: 2rem;
  }

  .events-intro {
    font-size: 1rem;
  }

  .events-section::before {
    inset: 10px;
  }

  .polaroid-stack {
    width: 280px;
    height: 360px;
  }

  .event-polaroid {
    width: 250px;
    padding: 10px 10px 45px 10px;
  }

  .event-polaroid img {
    height: 200px;
  }

  .polaroid-label {
    font-size: 1.1rem;
  }
}

/* ============================================
   MENU - Ardoise Bistro Style Manuscrit
   ============================================ */
.menu-category {
  margin-bottom: 60px;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E"),
    linear-gradient(170deg, #1e1e1e 0%, #2a2a2a 30%, #1a1a1a 70%, #252525 100%);
  padding: 45px 40px;
  border: 14px solid var(--wood-medium);
  border-radius: 0;
  box-shadow:
    0 15px 50px rgba(0,0,0,0.5),
    inset 0 0 80px rgba(0,0,0,0.4),
    inset 0 2px 0 rgba(255,255,255,0.02);
  position: relative;
}

/* Chalk smudge effects */
.menu-category::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 10%, rgba(255,255,255,0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 90% 20%, rgba(255,255,255,0.03) 0%, transparent 35%),
    radial-gradient(ellipse at 50% 90%, rgba(255,255,255,0.02) 0%, transparent 45%);
  pointer-events: none;
}

.menu-category h3 {
  font-family: 'Caveat', cursive;
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 30px;
  padding-bottom: 15px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 3px;
  text-shadow:
    1px 1px 0 rgba(0,0,0,0.8),
    2px 2px 4px rgba(0,0,0,0.5),
    0 0 10px rgba(255,255,255,0.1);
  transform: rotate(-1deg);
}

.menu-items {
  display: grid;
  gap: 5px;
}

.menu-item {
  background: transparent;
  padding: 12px 8px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.15s; }
.menu-item:nth-child(3) { animation-delay: 0.2s; }
.menu-item:nth-child(4) { animation-delay: 0.25s; }
.menu-item:nth-child(5) { animation-delay: 0.3s; }
.menu-item:nth-child(6) { animation-delay: 0.35s; }
.menu-item:nth-child(7) { animation-delay: 0.4s; }

.menu-item:hover {
  background: rgba(255,255,255,0.06);
  transform: translateX(10px);
  padding-left: 18px;
}

.menu-item.featured {
  background: rgba(201, 162, 39, 0.12);
  border: 2px solid rgba(201, 162, 39, 0.4);
  padding: 18px 15px;
  margin: 15px 0;
  transform: rotate(0.5deg);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.item-name {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
  text-shadow:
    1px 1px 0 rgba(0,0,0,0.6),
    0 0 8px rgba(255,255,255,0.08);
  letter-spacing: 0.5px;
}

.item-price {
  font-family: 'Caveat', cursive;
  font-size: 1.6rem;
  color: #F5DEB3;
  font-weight: 700;
  white-space: nowrap;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.item-desc {
  font-family: 'Caveat', cursive;
  color: rgba(255,255,255,0.75);
  font-size: 1.2rem;
  margin-top: 4px;
  padding-left: 15px;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.4);
}

.drinks .menu-item {
  padding: 10px 8px;
}

.drinks .item-name {
  font-size: 1.4rem;
}

.drinks .item-price {
  font-size: 1.5rem;
}

/* Section title for menu page */
#carte .section-title {
  font-family: 'Lora', serif;
  color: var(--wood-dark);
  font-style: italic;
}

#carte .section-title::after {
  content: '~';
  color: var(--brass);
  font-size: 2rem;
}

/* Seasonal Note */
.seasonal-note {
  margin-top: 50px;
  padding: 35px 40px;
  background: var(--parchment);
  border: 3px solid var(--wood-medium);
  text-align: center;
  position: relative;
}

.seasonal-icon {
  color: var(--brass);
  font-size: 1.5rem;
  margin: 10px 0;
}

.seasonal-note p {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  color: var(--wood-dark);
  margin: 10px 0;
  line-height: 1.6;
}

.seasonal-note .seasonal-emphasis {
  font-size: 1.3rem;
  color: var(--burgundy);
  font-style: italic;
}

/* ============================================
   FORMS - Vintage Register Style
   ============================================ */
.form {
  max-width: 600px;
  margin: 0 auto;
  background:
    linear-gradient(180deg, var(--parchment) 0%, var(--cream) 100%);
  padding: 45px;
  border: 4px solid var(--brass);
  box-shadow:
    0 10px 40px rgba(0,0,0,0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--wood-dark);
  font-size: 0.95rem;
  font-style: italic;
  letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid var(--wood-light);
  background: var(--cream);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s;
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brass);
  background: var(--parchment);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.fidelite-info {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  color: var(--cream);
  padding: 18px;
  margin-bottom: 25px;
  text-align: center;
  border: 2px solid var(--brass);
}

.success-message {
  text-align: center;
  padding: 50px;
  background: var(--parchment);
  border: 3px solid var(--wood-medium);
  max-width: 600px;
  margin: 0 auto;
}

.success-message h3 {
  color: var(--success);
  margin-bottom: 20px;
  font-style: italic;
}

/* ============================================
   AUTH - Brass & Leather
   ============================================ */
.auth-tabs {
  display: flex;
  max-width: 600px;
  margin: 0 auto 0;
}

.auth-tab {
  flex: 1;
  padding: 18px;
  border: none;
  background: var(--wood-medium);
  color: var(--cream);
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.auth-tab:first-child {
  border-right: 1px solid var(--wood-dark);
}

.auth-tab.active {
  background: var(--parchment);
  color: var(--burgundy);
}

.auth-form {
  border-top: none;
}

/* ============================================
   DASHBOARD
   ============================================ */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
  padding: 25px;
  background: linear-gradient(135deg, var(--wood-dark) 0%, var(--wood-medium) 100%);
  color: var(--cream);
  border: 2px solid var(--brass);
}

.dashboard-header h3 {
  color: var(--brass-light);
  font-style: italic;
}

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

.dashboard-card {
  background: var(--parchment);
  padding: 35px;
  border: 3px solid var(--wood-medium);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.dashboard-card h4 {
  color: var(--burgundy);
  margin-bottom: 20px;
  font-weight: normal;
  font-style: italic;
  text-align: center;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 15px;
}

.big-number {
  font-size: 3.5rem;
  color: var(--brass);
  display: block;
  margin-bottom: 15px;
  text-align: center;
  text-shadow: 2px 2px 0 var(--wood-dark);
}

.reservations-list {
  max-height: 300px;
  overflow-y: auto;
}

.reservation-item {
  padding: 18px;
  border-bottom: 1px dotted var(--wood-light);
}

.reservation-item:last-child {
  border-bottom: none;
}

.reservation-date {
  font-weight: bold;
  color: var(--burgundy);
}

.reservation-status {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.8rem;
  margin-left: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.status-en_attente {
  background: var(--brass);
  color: var(--wood-dark);
}

.status-confirmee {
  background: var(--success);
  color: white;
}

.status-annulee {
  background: var(--error);
  color: white;
}

/* ============================================
   FIDELITY CARD - Gold & Burgundy
   ============================================ */
.fidelite-guest {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.fidelite-card-visual {
  display: flex;
  justify-content: center;
  margin-top: -20px;
}

.card-front {
  width: 380px;
  height: 240px;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  border: 3px solid var(--brass);
  border-radius: 15px;
  padding: 25px;
  position: relative;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.4),
    inset 0 0 80px rgba(201, 162, 39, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-front::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 10px;
  pointer-events: none;
}

.card-logo {
  font-family: 'Lora', serif;
  font-size: 2rem;
  color: var(--brass-light);
  font-style: italic;
  letter-spacing: 2px;
}

.card-subtitle {
  font-size: 0.9rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0.8;
  margin-top: -5px;
}

.card-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: var(--brass);
  opacity: 0.2;
}

.card-qr {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.qr-code-svg {
  width: 65px;
  height: 65px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.card-qr span {
  font-family: 'Lora', serif;
  font-size: 0.7rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.9;
}

.card-bottom {
  text-align: center;
}

.card-address {
  font-size: 0.8rem;
  color: var(--cream);
  opacity: 0.7;
}

/* Explication du programme */
.fidelite-explanation {
  background: transparent;
  padding: 20px 0;
}

.fidelite-explanation h3 {
  font-family: 'Lora', serif;
  font-size: 2rem;
  color: var(--wood-dark);
  text-align: center;
  font-style: italic;
  margin-bottom: 40px;
}

.fidelite-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  color: var(--brass-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 600;
  flex-shrink: 0;
  border: 2px solid var(--brass);
}

.step-content h4 {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  color: var(--wood-dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.step-content p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

.step-content strong {
  color: var(--burgundy);
}

/* QR Code info box */
.fidelite-qr-info {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--wood-dark) 0%, var(--burgundy-dark) 100%);
  padding: 30px;
  margin: 40px 0;
  border: 2px solid var(--brass);
}

.qr-info-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.qr-info-text h4 {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  color: var(--brass-light);
  margin-bottom: 10px;
  font-style: italic;
}

.qr-info-text p {
  color: var(--cream);
  line-height: 1.7;
  opacity: 0.9;
}

/* CTA */
.fidelite-cta {
  text-align: center;
  padding-top: 20px;
}

.cta-note {
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

@media (max-width: 768px) {
  .card-front {
    width: 320px;
    height: 200px;
    padding: 20px;
  }

  .card-logo {
    font-size: 1.6rem;
  }

  .card-qr-placeholder {
    width: 55px;
    height: 55px;
    right: 20px;
  }

  .fidelite-explanation {
    padding: 30px 20px;
  }

  .fidelite-steps {
    grid-template-columns: 1fr;
  }

  .fidelite-qr-info {
    flex-direction: column;
    text-align: center;
  }
}

/* Legacy styles for preview card - keeping for compatibility */
.fidelite-card-preview {
  background:
    linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  color: var(--cream);
  padding: 50px;
  text-align: center;
  border: 4px solid var(--brass);
  box-shadow:
    0 15px 50px rgba(0,0,0,0.3),
    inset 0 0 80px rgba(201, 162, 39, 0.1);
  position: relative;
}

.fidelite-card-preview::before {
  content: '';
  position: absolute;
  inset: 15px;
  border: 1px solid var(--brass);
  opacity: 0.5;
}

.fidelite-card-preview h3 {
  font-size: 2rem;
  margin-bottom: 25px;
  font-weight: normal;
  font-style: italic;
  color: var(--brass-light);
  letter-spacing: 3px;
}

.fidelite-avantages {
  list-style: none;
  margin: 35px 0;
  text-align: left;
}

.fidelite-avantages li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

.fidelite-member {
  max-width: 600px;
  margin: 0 auto;
}

.fidelite-card {
  background:
    linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  color: var(--cream);
  padding: 35px;
  margin-bottom: 35px;
  border: 4px solid var(--brass);
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

.fidelite-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.fidelite-header h3 {
  color: var(--brass-light);
  font-style: italic;
}

.points-display {
  text-align: center;
}

.points-value {
  font-size: 3.5rem;
  display: block;
  color: var(--brass-light);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

.points-label {
  font-size: 0.9rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.fidelite-progress {
  margin-bottom: 25px;
}

.progress-bar {
  height: 12px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--brass);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brass) 0%, var(--brass-light) 100%);
  transition: width 0.5s;
}

.progress-text {
  text-align: center;
  margin-top: 12px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.fidelite-historique {
  background: var(--parchment);
  padding: 35px;
  border: 3px solid var(--wood-medium);
}

.fidelite-historique h3 {
  color: var(--burgundy);
  margin-bottom: 25px;
  font-weight: normal;
  font-style: italic;
  text-align: center;
}

.historique-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px dotted var(--wood-light);
}

.historique-item:last-child {
  border-bottom: none;
}

.historique-points {
  font-weight: bold;
}

.historique-points.positive {
  color: var(--success);
}

.historique-points.negative {
  color: var(--error);
}

/* ============================================
   ADMIN - Dark Wood Panel
   ============================================ */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-bottom: 35px;
}

.stat-card {
  background: linear-gradient(180deg, var(--wood-dark) 0%, var(--wood-medium) 100%);
  padding: 30px;
  text-align: center;
  border: 2px solid var(--brass);
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.stat-value {
  font-size: 2.8rem;
  color: var(--brass-light);
  display: block;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

.stat-label {
  color: var(--cream);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 10px;
}

.admin-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 0;
}

.admin-tab {
  padding: 15px 30px;
  border: none;
  background: var(--wood-medium);
  color: var(--cream);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
}

.admin-tab.active {
  background: var(--parchment);
  color: var(--burgundy);
}

.admin-panel {
  background: var(--parchment);
  padding: 35px;
  border: 3px solid var(--wood-medium);
  border-top: none;
}

.admin-panel h3 {
  color: var(--burgundy);
  margin-bottom: 25px;
  font-weight: normal;
  font-style: italic;
}

.admin-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px dotted var(--wood-light);
  flex-wrap: wrap;
  gap: 15px;
}

.admin-list-item:last-child {
  border-bottom: none;
}

.admin-list-item .info {
  flex: 1;
}

.admin-list-item .actions {
  display: flex;
  gap: 10px;
}

.admin-list-item .actions button {
  padding: 10px 18px;
  font-size: 0.8rem;
}

.admin-client-points {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-client-points input {
  width: 80px;
  padding: 8px;
  border: 2px solid var(--wood-light);
  background: var(--cream);
}

/* ============================================
   TOAST
   ============================================ */
/* ============================================
   POPUP - Jazz Concert
   ============================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: linear-gradient(145deg, var(--parchment) 0%, var(--cream) 100%);
  padding: 50px 40px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  border: 4px solid var(--brass);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.8) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.popup-overlay.show .popup-content {
  transform: scale(1) translateY(0);
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--wood-medium);
  cursor: pointer;
  line-height: 1;
  transition: all 0.3s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-close:hover {
  color: var(--burgundy);
  transform: rotate(90deg);
}

.popup-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: pulse 2s ease-in-out infinite;
}

.popup-content h3 {
  font-family: 'Lora', serif;
  font-size: 2rem;
  color: var(--burgundy);
  margin-bottom: 15px;
  font-style: italic;
  letter-spacing: 2px;
}

.popup-content p {
  font-size: 1.2rem;
  color: var(--wood-dark);
  margin-bottom: 10px;
}

.popup-content p strong {
  color: var(--burgundy);
}

.popup-details {
  font-size: 1rem !important;
  color: var(--text-light) !important;
  margin-bottom: 25px !important;
  line-height: 1.6;
}

.popup-content .btn {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .popup-content {
    padding: 40px 25px;
  }

  .popup-icon {
    font-size: 3rem;
  }

  .popup-content h3 {
    font-size: 1.6rem;
  }
}

.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 18px 30px;
  color: var(--cream);
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  z-index: 2000;
  border: 2px solid var(--brass);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  background: var(--success);
}

.toast.error {
  background: var(--error);
}

.toast.info {
  background: var(--burgundy);
}

.empty-state {
  text-align: center;
  color: var(--text-light);
  padding: 40px;
  font-style: italic;
}

/* ============================================
   FOOTER - Dark Wood Bar
   ============================================ */
.footer {
  background: linear-gradient(180deg, var(--wood-medium) 0%, var(--wood-dark) 100%);
  color: var(--cream);
  padding: 50px 0 25px;
  margin-top: 80px;
  border-top: 4px solid var(--brass);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: normal;
  font-style: italic;
  color: var(--brass-light);
}

.footer-info a {
  color: var(--brass-light);
}

.footer-links {
  display: flex;
  gap: 25px;
}

.footer-links a {
  color: var(--cream);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s;
  padding: 8px 15px;
  border: 1px solid transparent;
}

.footer-links a:hover {
  opacity: 1;
  border-color: var(--brass);
  color: var(--brass-light);
}

.copyright {
  text-align: center;
  opacity: 0.6;
  font-size: 0.85rem;
  padding-top: 25px;
  border-top: 1px solid rgba(201, 162, 39, 0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--wood-dark);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero h2 {
    font-size: 2.2rem;
    letter-spacing: 3px;
  }

  .hero::before {
    inset: 10px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form {
    padding: 30px;
  }

  .dashboard-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .fidelite-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .admin-list-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-title {
    font-size: 2rem;
  }

  .info-card::before,
  .info-card::after {
    display: none;
  }
}
