/* ====================== HERO FLOUTÉ ====================== */
.hero-blur-area {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

/* ✅ Image floutée en arrière-plan */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/newBoucherie.jpeg') center/cover no-repeat;
  filter: blur(8px) brightness(0.7) saturate(1.1);
  transform: scale(1.05); /* évite les bords nets du flou */
  z-index: 1;
}

/* ✅ Texte par-dessus */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 60px 20px;
  backdrop-filter: brightness(1.05);
}

/* ======== TYPO ======== */
.subtitle {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #f8d77a;
  margin-bottom: 0.8rem;
}

.headline {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #fff;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
}

.subhead {
  font-size: 1.5rem;
  color: #f8e07a;
  font-style: italic;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.intro {
  font-size: 1.15rem;
  color: #f5f5f5;
  line-height: 1.7;
  margin-bottom: 2rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

/* ======== BOUTON ======== */
.btn-elegant {
  background: linear-gradient(135deg, #f8e07a, #d4af37);
  color: #3a0000;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.btn-elegant:hover {
  background: linear-gradient(135deg, #d4af37, #b99415);
  color: #fff;
  transform: translateY(-3px);
}

/* ======== RESPONSIVE ======== */
@media (max-width: 992px) {
  .hero-blur-area {
    min-height: 65vh;
  }
  .headline {
    font-size: 2.5rem;
  }
  .intro {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .hero-blur-area {
    min-height: 60vh;
  }
  .headline {
    font-size: 2rem;
  }
  .subhead {
    font-size: 1.2rem;
  }
}


/* ====================== SECTION HISTOIRE ====================== */
.about-section {
  background: #fffaf5;
  position: relative;
}

.section-subtitle {
  color: #b38b00;
  font-weight: 600;
  letter-spacing: 2px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  color: #5c0000;
  font-weight: 700;
  font-size: 2.4rem;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #d4af37;
  margin-top: 10px;
  border-radius: 2px;
}

.about-section p {
  line-height: 1.8;
  color: #444;
}

.hover-zoom {
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}
.hover-zoom:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
    text-align: center;
  }
  .section-subtitle {
    text-align: center;
    display: block;
  }
  .about-section p {
    text-align: center;
  }
  .about-section .btn {
    display: block;
    margin: 20px auto 0 auto;
  }
}

/* ====================== SECTION COMMANDES ====================== */
.order-section {
  position: relative;
  min-height: 60vh;
  background: url('../img/boucherie.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ✅ Superposition élégante et floutée */
.order-overlay {
  position: absolute;
  inset: 0;
  background: rgba(90, 0, 0, 0.75);
  backdrop-filter: blur(3px);
  z-index: 1;
}

/* ✅ Contenu lisible et centré */
.order-section .container {
  position: relative;
  z-index: 2;
}

.order-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #f9f9f9;
  text-shadow: 0 3px 6px rgba(0,0,0,0.5);
}

.order-text {
  font-size: 1.1rem;
  color: #f3f3f3;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 2px 5px rgba(0,0,0,0.6);
}

/* ======== BOUTON ======== */
.btn-elegant {
  background: linear-gradient(135deg, #f8e07a, #d4af37);
  color: #3a0000;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.btn-elegant:hover {
  background: linear-gradient(135deg, #d4af37, #b99415);
  color: #fff;
  transform: translateY(-3px);
}

/* ============= ANIMATION DOUCE À L’APPARITION ============= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.order-section .order-title,
.order-section .order-text,
.order-section .btn-elegant {
  animation: fadeUp 1s ease both;
}

.order-section .order-title { animation-delay: 0.2s; }
.order-section .order-text { animation-delay: 0.4s; }
.order-section .btn-elegant { animation-delay: 0.6s; }

/* ============= RESPONSIVE ============= */
@media (max-width: 992px) {
  .order-title {
    font-size: 2.2rem;
  }
  .order-text {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .order-title {
    font-size: 1.8rem;
  }
}
/* ====================== TEAM SECTION ====================== */
.team-section {
  background: #fffaf5;
}

.team-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #5c0000;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-subtitle {
  color: #555;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ---- Card ---- */
.team-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* ---- Photo ---- */
.team-photo img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #d4af37;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.05);
}

/* ---- Text ---- */
.team-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #5c0000;
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.9rem;
  color: #b68a00;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.6rem;
}

.team-bio {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .team-name { font-size: 1rem; }
  .team-bio { font-size: 0.85rem; }
}

@media (max-width: 576px) {
  .team-photo img { width: 100px; height: 100px; }
}

/* ====================== FOOTER ====================== */
.footer-section {
  position: relative;
  background: url('../img/boucherie.jpg') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(50, 0, 0, 0.85);
  backdrop-filter: blur(3px);
  z-index: 1;
}

.footer-section .container {
  position: relative;
  z-index: 2;
}

/* ---- TITRES ---- */
.footer-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: #f8e07a;
  letter-spacing: 0.5px;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* ---- LISTES ---- */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 0;
  color: #f4f4f4;
}

/* ---- TEXTE ---- */
.footer-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #eaeaea;
}

.footer-siret {
  color: #c5b8a2;
}

/* ---- DIVISEUR ---- */
.footer-divider {
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.15);
}

/* ---- HOVER ---- */
.footer-section a {
  color: #f8e07a;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #fff;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }

  .footer-list li {
    justify-content: center;
    gap: 1rem;
  }
}

/* ================= HERO CONTACT ================= */
.contact-hero {
  position: relative;
  min-height: 55vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ✅ Image floutée en arrière-plan (nouvelle) */
.contact-bg {
  position: absolute;
  inset: 0;
  background: url('../img/newBoucherie.jpeg') center/cover no-repeat;
  filter: blur(8px) brightness(0.75) saturate(1.1);
  transform: scale(1.05);
  z-index: 0;
}

/* ✅ Overlay sombre par-dessus le flou */
.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 0, 0, 0.45);
  z-index: 1;
}

/* ✅ Texte par-dessus tout */
.contact-hero .container {
  position: relative;
  z-index: 2;
}

/* --- Titre et sous-titre --- */
.contact-title {
  font-family: 'Playfair Display', serif;
  color: #f8e07a;
  letter-spacing: 1px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

.contact-subtitle {
  color: #fffaf0;
  font-style: italic;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

/* ====================== HERO CARTE TRAITEUR ====================== */
.hero-carte {
  position: relative;
  min-height: 55vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

/* ✅ Image de fond floutée */
.hero-bg-carte {
  position: absolute;
  inset: 0;
  background: url('../img/newBoucherie.jpeg') center/cover no-repeat;
  filter: blur(8px) brightness(0.75) saturate(1.1);
  transform: scale(1.05);
  z-index: 0;
}

/* ✅ Overlay sombre au-dessus du flou */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 0, 0, 0.45);
  z-index: 1;
}

/* ✅ Texte par-dessus */
.hero-carte .container {
  position: relative;
  z-index: 2;
}

/* ======== TYPO ======== */
.text-gold {
  color: #f8e07a;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-carte p {
  color: #fffaf0;
  font-style: italic;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* ======== ZOOM OPTIONNEL ======== */
@keyframes zoomInSlow {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

.hero-bg-carte {
  animation: zoomInSlow 20s ease-in-out infinite alternate;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 768px) {
  .hero-carte {
    min-height: 45vh;
  }
  .hero-carte h1 {
    font-size: 2rem;
  }
}


/* ================= HERO CONTACT ================= */
.contact-hero {
  position: relative;
  background: url('../img/newBoucherie.jpeg') center/cover no-repeat;
  min-height: 55vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 0, 0, 0.45); /* plus léger, derrière le texte */
  z-index: 0;
}

.contact-hero .container {
  position: relative;
  z-index: 1; /* le texte passe devant le filtre */
}

.contact-title {
  font-family: 'Playfair Display', serif;
  color: #f8e07a;
  letter-spacing: 1px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

.contact-subtitle {
  color: #fffaf0;
  font-style: italic;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

/* ================= INFO CONTACT ================= */
.contact-info-section {
  background: #fffaf5;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.contact-icon {
  font-size: 2.4rem;
  color: #d4af37;
}

/* ================= AVIS GOOGLE ================= */
.reviews-section {
  background: #5c0000;
  color: #fff;
}

.text-gold {
  color: #f8e07a;
}

.review-card {
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.review-card .stars {
  color: #f8e07a;
}

.review-text {
  font-size: 0.95rem;
  color: #f3f3f3;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-hero {
    min-height: 45vh;
  }
  .contact-card {
    margin-bottom: 1rem;
  }
}

/* ============= HERO ============= */
.hero-carte {
  position: relative;
  background: url('../img/traiteur-bg.jpg') center/cover no-repeat;
  min-height: 50vh;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(40, 0, 0, 0.55);
}

.text-gold {
  color: #f8e07a;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}

/* ============= FILTRES ============= */
.filters-section {
  background: #fffaf5;
  border-top: 1px solid #e3cba4;
  border-bottom: 1px solid #e3cba4;
}

.filter-nav {
  list-style: none;
}

.filter-nav li {
  background: #fff;
  color: #5c0000;
  border: 1px solid #d4af37;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-nav li:hover,
.filter-nav li.active {
  background: #d4af37;
  color: #fff;
}

/* ============= CARTES ============= */
.carte-content-section {
  background: #fffaf5;
}

.carte-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.carte-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.text-bordeaux {
  color: #5c0000;
}

/* ============= LISTES ============= */
.carte-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.carte-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f2f2f2;
  padding: 6px 0;
  color: #444;
}

.carte-list li strong {
  color: #5c0000;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 768px) {
  .hero-carte {
    min-height: 40vh;
  }

  .filter-nav li {
    padding: 8px 14px;
    font-size: 0.9rem;
  }

  .carte-card {
    padding: 1.5rem;
  }
}
.fade-in {
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ========== SECTION MAP ========== */
.contact-map-section {
  background: #fffaf5;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  color: #5c0000;
  font-size: 2rem;
  letter-spacing: 1px;
}

.map-wrapper {
  position: relative;
  border: 3px solid #d4af37;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-wrapper:hover {
  transform: scale(1.01);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Overlay doré transparent sur la carte */
.map-overlay {
  background: linear-gradient(to bottom right, rgba(212, 175, 55, 0.05), rgba(255, 255, 255, 0.05));
  pointer-events: none;
  z-index: 2;
}

/* Marqueur personnalisé */
.map-marker {
  z-index: 5;
}

.map-marker .marker-icon i {
  color: #d4af37;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.map-marker .marker-text {
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 1.6rem;
  }
  .map-marker .marker-text {
    font-size: 0.9rem;
  }
}

/* === CRUD ADMIN === */
.admin-section {
  background: #fffaf5;
  min-height: 80vh;
}

.table-header {
  background: #5c0000 !important;
}

.btn-elegant {
  background: linear-gradient(135deg, #f8e07a, #d4af37);
  color: #3a0000;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-elegant:hover {
  background: linear-gradient(135deg, #d4af37, #b99415);
  color: #fff;
}

.text-bordeaux {
  color: #5c0000;
}

/* HEADER FIXE PROPRE */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000; /* suffisant pour être au-dessus du contenu */
}

.navbar {
  z-index: 1000; /* important */
}
body {
  padding-top: 100px; /* adapte selon la hauteur de ton header */
}
/* FORCE LA HIERARCHIE DU HERO */
.hero-carte,
.hero-blur-area,
.contact-hero {
  position: relative;
  z-index: 1;
}

/* L’image de fond et le flou ne bloquent pas les clics */
.hero-bg,
.hero-bg-carte,
.contact-bg,
.hero-overlay,
.contact-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Le texte et les boutons sont cliquables */
.hero-carte .container,
.hero-content,
.contact-hero .container {
  position: relative;
  z-index: 2;
}

/* Et les boutons sont encore au-dessus */
.hero-carte .btn,
.hero-content .btn,
.contact-hero .btn {
  position: relative;
  z-index: 3;
}

.team-preview {
  background: #fffaf5;
}

.team-mini-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-mini-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.text-bordeaux {
  color: #5c0000;
}