/* =====================================================
   🎯 HERO — PAGE RÉALISATIONS
   ===================================================== */
.nos-realisations-page .hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #F6EDE7;
  text-align: center;
  overflow: visible;
  padding: 0;
  margin: 0;
  margin-bottom: -250px;
  margin-top: -70.5px;
  background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    url(http://macom.local/wp-content/uploads/2025/09/bram-naus-n8Qb1ZAkK88-unsplash-scaled.jpg)
    center/cover no-repeat;
}

/* Titre */
.nos-realisations-page .hero h1 {
  font-family: 'Anton', sans-serif;
  font-size: 6rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0em;
  margin: 0;
  line-height: 1;
  color: #F6EDE7;
}

/* Sous-titre et texte */
.nos-realisations-page .hero p,
.nos-realisations-page .hero .hero-subtitle {
  color: #F6EDE7;
  font-size: 1.5rem;
  margin-top: 15px;
  line-height: 1.3;
}

/* Bouton principal */
.btn-custom {
  background-color: #F6EDE7;
  color: #393837;
  border: 2px solid #F6EDE7;
  border-radius: 25px;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  display: inline-block;
  text-decoration: none;
  margin-top: 30px;
}

.btn-custom:hover {
  background-color: transparent;
  color: #F6EDE7;
  border-color: #F6EDE7;
  text-decoration: none;
}

/* Scroll souris */
.mouse-scroll {
  width: 30px;
  height: 50px;
  border: 2px solid #F6EDE7;
  border-radius: 20px;
  position: relative;
  margin: 80px auto 300px;
}

.mouse-scroll::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: #F6EDE7;
  border-radius: 50%;
  animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
  0% { transform: translate(-50%, 0); opacity: 1; }
  50% { transform: translate(-50%, 10px); opacity: 0.5; }
  100% { transform: translate(-50%, 0); opacity: 1; }
}

/* =====================================================
   🧱 GRILLE DES RÉALISATIONS
   ===================================================== */
.realisations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
  margin: 50px 0;
}

/* Carte */
.realisation-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.realisation-card:hover { transform: translateY(-8px); }
.realisation-card a { color: inherit; text-decoration: none; display: block; }

/* Images hover */
.card-image { position: relative; width: 100%; overflow: hidden; }
.card-image img { display: block; width: 100%; height: auto; transition: opacity 0.4s ease-in-out; }
.card-image .img-hover { position: absolute; top: 0; left: 0; width: 100%; height: auto; opacity: 0; z-index: 2; }
.card-image .img-default { z-index: 1; position: relative; }
.realisation-card:hover .img-hover { opacity: 1; }
.realisation-card:hover .img-default { opacity: 0; }

/* Contenu */
.card-content { padding: 20px; }
.card-content h2 { font-size: 1.4rem; margin-bottom: 10px; }
.card-content blockquote { font-style: italic; color: #666; font-size: 0.95rem; margin: 0 0 15px; }

/* Badges */
.card-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.card-badges .badge { background: #000; color: #fff; padding: 6px 12px; font-size: 0.8rem; border-radius: 20px; text-transform: capitalize; }

/* =====================================================
   🖼️ SINGLE RÉALISATION
   ===================================================== */
.single-realisation { font-family: 'Arial', sans-serif; color: #333; }
.single-realisation .single-card-image { max-width: 900px; margin: 40px auto; position: relative; }
.single-realisation .single-card-image img { width: 100%; display: block; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); transition: opacity 0.4s ease-in-out; }
.single-realisation .single-card-image .img-hover { position: absolute; top: 0; left: 0; width: 100%; height: auto; opacity: 0; z-index: 2; }
.single-realisation .single-card-image .img-default { z-index: 1; position: relative; }
.single-realisation .single-card-image:hover .img-hover { opacity: 1; }
.single-realisation .single-card-image:hover .img-default { opacity: 0; }

.single-realisation blockquote { font-style: italic; color: #666; font-size: 1rem; margin: 20px 0; }
.single-realisation .description { max-width: 800px; margin: 20px auto 40px; font-size: 1rem; line-height: 1.6; color: #444; }
.single-realisation .content h2 { font-size: 1.8rem; margin-top: 20px; color: #333; }
.single-realisation .content p, 
.single-realisation .content ul { font-size: 1rem; color: #555; }
.single-realisation .content ul { padding-left: 20px; list-style-type: disc; }
.single-realisation .card-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.single-realisation .card-badges .badge { background: #000; color: #fff; padding: 6px 12px; font-size: 0.85rem; border-radius: 20px; text-transform: capitalize; }

/* CTA Section */
.single-realisation .cta { background: #007bff; color: white; padding: 40px 0; text-align: center; margin-top: 50px; }
.single-realisation .cta .button { background: #ff6600; color: white; padding: 12px 20px; font-size: 1.2rem; text-decoration: none; border-radius: 8px; transition: background-color 0.3s; }
.single-realisation .cta .button:hover { background-color: #e65c00; }

/* =====================================================
   🎚️ FILTRES DES RÉALISATIONS
   ===================================================== */
.realisations-filters { text-align: right; margin-bottom: 40px; }
.realisations-filters .filter-btn {
  display: inline-block;
  background: #393837;
  color: #fff;
  border: 2px solid #393837;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.realisations-filters .filter-btn:hover {
  background: transparent;
  color: #393837;
  border-color: #393837;
}
.realisations-filters .filter-btn.active {
  background: #393837;
  color: #fff;
  border-color: #393837;
}

/* =====================================================
   📱 RESPONSIVE DESIGN
   ===================================================== */

/* === Écrans ≤ 1200px === */
@media (max-width: 1200px) {
  .nos-realisations-page .hero h1 { font-size: 4.5rem; }
  .nos-realisations-page .hero p { font-size: 1.3rem; }
  .realisations-grid { gap: 30px; }
}

/* === Écrans ≤ 992px (tablettes) === */
@media (max-width: 992px) {
  .nos-realisations-page .hero { height: 80vh; margin-bottom: -150px; }
  .nos-realisations-page .hero h1 { font-size: 3.5rem; }
  .nos-realisations-page .hero p { font-size: 1.1rem; }
  .btn-custom { font-size: 1rem; padding: 0.7rem 1.8rem; }
  .mouse-scroll { margin-bottom: 150px; }

  .realisations-grid { gap: 25px; }
  .card-content h2 { font-size: 1.3rem; }

  .realisations-filters { text-align: center; }
}

/* === Écrans ≤ 768px (mobiles moyens) === */
@media (max-width: 768px) {
  .nos-realisations-page .hero {
    height: auto;
    padding: 100px 20px 80px;
    margin-top: -60px;
    margin-bottom: -100px;
  }

  .nos-realisations-page .hero h1 {
    font-size: 2.5rem;
  }

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

  .btn-custom {
    width: 80%;
    max-width: 300px;
    font-size: 0.95rem;
  }

  .mouse-scroll {
    width: 24px;
    height: 40px;
    margin-bottom: 120px;
  }

  .realisations-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .realisation-card {
    margin: 0 auto;
    width: 90%;
  }

  .card-content h2 {
    font-size: 1.2rem;
  }

  .single-realisation .content h2 {
    font-size: 1.5rem;
  }
}

/* === Écrans ≤ 480px (petits smartphones) === */
@media (max-width: 480px) {
  .nos-realisations-page .hero {
    padding: 80px 15px 60px;
  }

  .nos-realisations-page .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .nos-realisations-page .hero p {
    font-size: 0.95rem;
  }

  .btn-custom {
    width: 100%;
    font-size: 0.9rem;
    border-radius: 20px;
  }

  .mouse-scroll {
    display: none;
  }

  .realisations-grid {
    gap: 15px;
  }

  .card-content {
    padding: 15px;
  }

  .card-content h2 {
    font-size: 1.1rem;
  }

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

/* ===== Responsive Mobile - Nos Réalisations Page - Version harmonisée ===== */
@media screen and (max-width: 768px) {

  /* Hero */
  .nos-realisations-page .hero {
    height: auto;                     /* hauteur automatique pour éviter trop grand */
    padding: 80px 20px 60px;          /* padding réduit mais équilibré */
    margin-top: -30px;                 /* léger ajustement */
    margin-bottom: -50px;              /* réduit le blanc sous le hero */
    background-size: cover;
    background-position: center;
  }

  /* H1 */
  .nos-realisations-page .hero h1 {
    font-size: 2.8rem;                 /* texte visible mais pas trop grand */
    line-height: 1.2;
    margin-bottom: 10px;
  }

  /* Sous-titre */
  .nos-realisations-page .hero p,
  .nos-realisations-page .hero .hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-top: 10px;
    max-width: 90%;                    /* texte centré et contenu lisible */
  }

  /* Bouton hero */
  .btn-custom {
    width: auto;
    min-width: 200px;
    padding: 0.6rem 1.8rem;
    font-size: 1rem;
    margin-top: 20px;
  }

  /* Mouse scroll */
  .mouse-scroll {
    width: 24px;
    height: 40px;
    margin: 60px auto 0;
  }

  /* Grille réalisations */
  .realisations-grid {
    grid-template-columns: 1fr;        /* une seule colonne */
    gap: 20px;
    margin: 30px 0;
    padding: 0 10px;
  }

  .realisation-card {
    width: 100%;
    max-width: 350px;                  /* limite largeur pour harmonie */
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
  }

  .card-content h2 {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }

  .card-content blockquote {
    font-size: 1rem;
  }

  /* Single réalisation */
  .single-realisation .content h2 {
    font-size: 1.6rem;
  }

  .single-realisation .content p,
  .single-realisation .content ul {
    font-size: 1rem;
  }

  .single-realisation .card-badges .badge {
    font-size: 0.8rem;
    padding: 5px 10px;
  }

  /* CTA */
  .single-realisation .cta {
    padding: 30px 15px;
    margin-top: 40px;
  }

  .single-realisation .cta .button {
    font-size: 1rem;
    padding: 10px 18px;
  }

  /* Filtres */
  .realisations-filters {
    text-align: center;
  }

  .realisations-filters .filter-btn {
    font-size: 0.85rem;
    padding: 8px 14px;
    margin: 5px;
  }
}

/* ===== Très petits écrans ≤ 480px ===== */
@media screen and (max-width: 480px) {
  .nos-realisations-page .hero {
    padding: 60px 15px 50px;
  }

  .nos-realisations-page .hero h1 {
    font-size: 2.2rem;
  }

  .nos-realisations-page .hero p,
  .nos-realisations-page .hero .hero-subtitle {
    font-size: 0.95rem;
  }

  .btn-custom {
    width: 100%;
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
  }

  .mouse-scroll {
    display: none;
  }

  .realisations-grid {
    gap: 15px;
    padding: 0 5px;
  }

  .realisation-card {
    max-width: 100%;
  }

  .card-content h2 {
    font-size: 1.15rem;
  }

  .single-realisation .content h2 {
    font-size: 1.4rem;
  }

  .single-realisation .content p,
  .single-realisation .content ul {
    font-size: 0.95rem;
  }

  .single-realisation .card-badges .badge {
    font-size: 0.75rem;
    padding: 4px 8px;
  }

  .single-realisation .cta .button {
    font-size: 0.95rem;
    padding: 8px 16px;
  }
}
/* ===== Ajustement espace hero → cartes sur mobile ===== */
@media screen and (max-width: 768px) {
  .realisations-grid {
    margin-top: 60px;  /* augmente l'espace entre le hero et les cartes */
  }
}

@media screen and (max-width: 480px) {
  .realisations-grid {
    margin-top: 50px;  /* un peu moins sur très petits écrans pour garder l'harmonie */
  }
}

/* ===== Espace entre le hero et la grille des réalisations sur mobile ===== */
@media screen and (max-width: 768px) {
  .nos-realisations-page .hero {
    margin-bottom: 120px; /* espace plus important sous le hero */
  }

  .realisations-grid {
    padding-top: 40px; /* espace supplémentaire au-dessus des cartes */
  }
}

@media screen and (max-width: 480px) {
  .nos-realisations-page .hero {
    margin-bottom: 100px;
  }

  .realisations-grid {
    padding-top: 30px;
  }
}

/* Hero banner - bouton responsive */
@media (max-width: 768px) {
  .nos-realisations-page .hero .btn-custom,
  .nos-services-page .hero .btn-custom {
    width: 70%;        /* réduit la largeur */
    max-width: 250px;  /* limite max */
    font-size: 0.9rem; /* taille du texte plus petite */
    padding: 0.6rem 1.5rem; /* padding plus compact */
  }
}

@media (max-width: 480px) {
  .nos-realisations-page .hero .btn-custom,
  .nos-services-page .hero .btn-custom {
    width: 100%;       /* prend toute la largeur disponible */
    font-size: 0.85rem;
    padding: 0.5rem 1.2rem;
  }
}
@media (min-width: 769px) {
  /* Hero banner avec filtre noir */
  .nos-realisations-page .hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.35); /* filtre noir */
    z-index: 1;
  }

  /* Contenu du hero (titre, bouton) au-dessus du filtre */
  .nos-realisations-page .hero > * {
    position: relative;
    z-index: 2;
  }

  /* Logo positionné au-dessus de tout */
  .nos-realisations-page header .site-logo {
    position: absolute; /* le sort du flux */
    top: 20px; /* ajustable */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10; /* au-dessus du hero et du filtre */
  }
}
/* Scroll devant le filtre sur desktop et mobile */
.nos-realisations-page .mouse-scroll {
  position: relative; /* ou absolute si tu veux le positionner précisément */
  z-index: 3; /* plus grand que le filtre du hero (qui est z-index:1) */
}
.nos-realisations-page .hero {
  position: relative;       /* indispensable pour que ::before se place correctement */
  overflow: hidden;         /* assure que le filtre ne dépasse pas */
}

.nos-realisations-page .hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.35); /* même filtre pour toutes les tailles */
  z-index: 1;
}

/* Contenu du hero au-dessus du filtre */
.nos-realisations-page .hero > * {
  position: relative;
  z-index: 2;
}
