:root {
  --accent: #f0a500;
  --dark: #0f172a;
}

body {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  color: #1f2937;
}

.demo-banner {
  background: #fff3cd;
  color: #664d03;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
}

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

.hero {
  min-height: 78vh;
  background-size: cover;
  background-position: center;
}

.section-title {
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.gallery-img {
  height: 420px;
  object-fit: cover;
  width: 100%;
  border-radius: 1rem;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  border-bottom: 1px dashed #e5e7eb;
}

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

footer {
  background: var(--dark);
}

/* Animation d'apparition au scroll */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .hero { min-height: 90vh; }
  .gallery-img { height: 260px; }
}
