/* ==============================================
   CSS principal - Tarzan Live
   Version nettoyée, optimisée et responsive - 2026
   ============================================== */



/* === VARIABLES === */
:root {
  --vert: #afe022;
  --noir: #000000;
  --blanc: #ffffff;
  --gris-tres-clair: #f9fafb;
  --gris-clair: #f1f3f5;
  --gris-moyen: #d1d5db;
  --gris-fonce: #4b5563;
  --texte-principal: #111827;
  --texte-secondaire: #374151;
}

/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--gris-tres-clair);
  color: var(--texte-principal);
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--noir);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

/* === HEADER === */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 5%;
}

.logo img {
  height: 64px;
  width: auto;
}


.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--texte-principal);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--vert);
}

.btn-primary {
  background: var(--vert);
  color: #000;
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.3s;
}

.hamburger {
  display: none;
  font-size: 2.2rem;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
}

/* === HERO === */
.hero, .hero-entreprise, .hero-sons-et-images, .hero-contact, .hero-index,
.hero-mariages {
  height: 90vh;
  min-height: 680px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  margin-top: 0;
  position: relative;
  z-index: 1;
}


.hero-mariages {
  background-image: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.78)),
                    url('../images/mariages.jpeg');
}

.hero-entreprise {
  background-image: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.78)),
                    url('../images/entreprise.jpeg');
}

.hero-sons-et-images {
  background-image: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.78)),
                    url('../images/sons-et-images.jpeg');
}
.hero-contact {
  background-image: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.78)),
                    url('../images/contact.jpeg');
}

.hero-index {
  background-image: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.78)),
                    url('../images/photo-index.jpeg');
}
.hero-content h1 {
  font-size: clamp(3.8rem, 8vw, 7rem);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 12px rgba(0,0,0,0.7);
}

.hero-content p {
  font-size: 1.4rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.2rem;
  border: 2px solid white;
  background: transparent;
  color: white;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.btn-hero:hover {
  background: var(--vert);
  color: #000;
  border-color: var(--vert);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(175,224,34,0.38);
}

.btn-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: left 0.7s ease;
}

.btn-hero:hover::before {
  left: 100%;
}

/* Bouton contour noir + texte noir + fond transparent (négatif de "Nous contacter") */
.btn-outline-black {
  display: inline-block;
  padding: 1.1rem 2.6rem;              /* un peu réduit par rapport au précédent */
  font-size: 1.25rem;                   /* taille légèrement plus petite */
  font-weight: 600;
  color: #000000 !important;            /* texte noir */
  background: transparent;              /* fond transparent */
  border: 2px solid #000000;            /* contour noir */
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  cursor: pointer;
}

/* Hover : passe au vert Tarzan avec texte noir */
.btn-outline-black:hover {
  background: var(--vert);              /* #afe022 */
  color: #000000 !important;
  border-color: var(--vert);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(175,224,34,0.35);
}

/* Effet shine (lumière qui glisse au hover) */
.btn-outline-black::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.7s ease;
}

.btn-outline-black:hover::before {
  left: 100%;
}


/* === WHY SECTION === */
.why-section {
  margin-top: -6rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
}

.why-section-wrapper {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  padding: 4rem 2.5rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid rgba(175,224,34,0.1);
}

.why-section-wrapper .big-title {
  font-size: 3.4rem;
  margin: 0 0 2rem;
  margin-top: -3rem;
  text-align: center;
  color: var(--vert);
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.why-cards .card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.why-cards .card:hover {
  transform: translateY(-10px);
}

.why-cards .card-icon.small {
  font-size: 2rem;
  color: var(--vert);
  background: rgba(175,224,34,0.1);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.why-cards .card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.why-cards .card p {
  font-size: 1rem;
  opacity: 0.85;
}

/* === PRICING & MEDLEY (simplifié) === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  max-width: 1600px;
  margin: 0 auto 3rem;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.pricing-content {
  padding: 1.8rem 1.2rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.pricing-content h3 {
  font-size: 2rem;
  color: var(--vert);
}

.pricing-content h4 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.pricing-content .btn-primary.btn-small {
  font-size: 0.88rem;
  padding: 0.65rem 1.4rem;
  white-space: nowrap;
  min-width: 140px;
  max-width: 180px;
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
}

.medley-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 220px;
  gap: 1.2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.medley-card {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  background: white;
  transition: transform 0.35s ease;
}

.medley-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(175,224,34,0.25);
}

.medley-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === FOOTER === */
footer {
  background: #202528;
  color: #aaa;
  padding: 2rem 5% 3rem;
  font-size: 0.8rem;
  line-height: 1.2;
}

footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

footer h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

footer a {
  color: var(--vert);
  text-decoration: none;
}

footer .fab {
  font-size: 1.6rem;
}





/* RESPONSIVE MOBILE */





@media (max-width: 768px) {
  /* Hamburger menu */
  .hamburger {
    display: block !important;
    font-size: 2.2rem;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    order: 1;
  }

  .nav-right {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.5rem !important;
    width: 100% !important;
  }

  .nav-links {
    display: none !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #202528;
    padding: 1.5rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
    z-index: 1000;
    order: 2;
  }

  .nav-links.active {
    display: flex !important;
  }

  .nav-links a {
    color: white !important;
    font-size: 1.2rem;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--vert) !important;
  }

  .nav-links li {
    margin: 1rem 0;
    text-align: center;
  }

  /* Bouton Devis personnalisé */
  .btn-primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 0.7rem 1.3rem !important;
    font-size: 0.9rem !important;
    min-width: 140px !important;
    max-width: 180px !important;
    white-space: nowrap !important;
    border-radius: 50px !important;
    order: 3;
    flex-shrink: 0;
  }

  /* Hero */
.hero h1,
  .hero-entreprise h1,
  .hero-sons-et-images h1,
  .hero-contact h1,
  .hero-index h1,
  .hero-mariages h1 {
    font-size: clamp(2.2rem, 8vw, 3.2rem) !important;  /* petit sur petit écran, grandit un peu avec la largeur */
    line-height: 1.15 !important;                      /* réduit l'espace entre lignes du titre */
    margin-bottom: 1rem !important;                    /* moins d'espace sous le titre */
    padding: 0 1rem !important;                        /* évite que le texte touche les bords */
    word-break: break-word !important;                 /* casse les mots longs si besoin */
  }

  .hero-content p {
    font-size: 1.1rem !important;                      /* texte descriptif plus lisible */
    margin-bottom: 1.5rem !important;
  }


.hero-buttons,
  .entreprises-hero-buttons,
  .index-hero-buttons {
    flex-direction: column !important;         /* boutons l'un sous l'autre */
    gap: 1rem !important;                      /* espace entre boutons */
    align-items: center !important;
    margin-top: 1rem !important;
  }

  .btn-hero {
    width: 85% !important;                     /* presque pleine largeur pour toucher facile */
    max-width: 320px !important;
    padding: 1rem 2rem !important;
    font-size: 1.1rem !important;
    text-align: center !important;
  }



  /* Why section */
  .why-section {
    margin-top: -6rem !important;
  }

  .why-section .big-title {
    font-size: 2.5rem !important;
    line-height: 1.1 !important;
    margin-bottom: 1.5rem !important;
  }

  .why-section-wrapper {
    margin-top: 0 !important;
    margin-bottom: 2rem !important;
    padding-top: 4rem !important;
  }

  /* Grilles */
  .why-cards,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .medley-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  /* Footer : 1 colonne centrée */
  footer .container {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 2.5rem !important;
  }

  footer .container > div {
    width: 100% !important;
    max-width: 400px !important;
    min-width: unset !important;
    text-align: center !important;
    margin: 0 auto !important;
  }

  /* Colonne Contacts : téléphone vert et appelable */
  .phone-white,
  footer .phone-white,
  footer p.phone-white {
    color: var(--vert) !important;
    text-decoration: none !important;
  }

  .phone-white {
    pointer-events: auto !important;
    user-select: text !important;
  }

/* Sécurité contre lien auto ou couleur héritée */
footer a[href^="tel:"] ~ span,
footer span {
  color: #aaa !important;
}

/* FORCER SIRET EN GRIS CLAIR – PRIORITÉ MAXIMALE */
.no-tel-link,
footer .no-tel-link,
footer span.no-tel-link,
footer p span.no-tel-link,
footer span[class*="no-tel-link"] {
  color: #aaa !important;
  text-decoration: none !important;
  background: none !important;
}

.no-tel-link,
.no-tel-link * {
  color: #aaa !important;
  text-decoration: none !important;
  pointer-events: none !important;
}

/* Écrase le style auto tel: de Safari */
a[x-apple-data-detectors],
a[x-apple-data-detectors] *,
a[href^="tel"],
a[href^="tel"] * {
  color: #aaa !important;
  text-decoration: none !important;
  font-weight: inherit !important;
  pointer-events: none !important;
}

/* Sécurité ultime */
footer span.no-tel-link {
  -webkit-text-fill-color: #aaa !important;
}


/* =====================================================
   FOOTER – TÉLÉPHONE VERT ET CLIQUABLE
   ===================================================== */

footer a.phone-link,
footer a.phone-link:visited {
  color: var(--vert) !important;
  text-decoration: none !important;
  font-weight: 500;
  pointer-events: auto !important;
  -webkit-text-fill-color: var(--vert) !important;
}

/* Hover desktop */
footer a.phone-link:hover {
  text-decoration: underline;
}

/* Correctif Safari / iOS (numéros détectés automatiquement) */
footer a.phone-link[x-apple-data-detectors],
footer a.phone-link[x-apple-data-detectors] * {
  color: var(--vert) !important;
  -webkit-text-fill-color: var(--vert) !important;
}


/* Écrase toute règle verte qui pourrait s’appliquer */
footer span:contains("93456002000018"),
footer span:contains("SIRET") {
  color: #aaa !important;
  text-decoration: none !important;
}

  footer span:contains("93456002000018") {
    color: #aaa !important;
    text-decoration: none !important;
  }

  /* Réseaux sociaux et logo */
  footer .container > div:nth-child(3) > div[style*="display: flex; gap: 1.4rem"] {
    justify-content: center !important;
    margin: 0 auto 1rem auto !important;
  }

  footer .container > div:nth-child(3) > div:last-child {
    margin: 1rem auto !important;
  }

  /* Images DJ rondes : côte à côte, sans débordement */
  [style*="display: flex; justify-content: center; gap: 2rem"] {
    flex-wrap: nowrap !important;
    gap: 0.8rem !important;
    justify-content: center !important;
    padding: 0 1rem !important;
    box-sizing: border-box !important;
  }

  [style*="display: flex; justify-content: center; gap: 2rem"] img {
    width: 110px !important;
    max-width: 45% !important;
    height: 110px !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    border: 4px solid var(--vert) !important;
    margin: 0 !important;
  }

  .pricing-card[style*="grid-column: 1 / -1"] {
    overflow: hidden !important;
    padding: 1rem !important;
  }

  .pricing-content {
    padding: 1rem 0.5rem !important;
  }

  /* Titres et boutons divers */
  .hero h1,
  .hero-mariages h1,
  h2 {
    font-size: 2.4rem !important;
    line-height: 1.1 !important;
  }

  h3 {
    font-size: 1.4rem !important;
  }

  .index-hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.8rem !important;
    margin-top: -1rem !important;
    margin-bottom: 2rem !important;
  }

  .index-hero-buttons .btn-hero {
    width: 80% !important;
    margin: 0 auto !important;
    padding: 1rem 2rem !important;
  }

  .hero-buttons,
  .entreprises-hero-buttons .btn-hero {
    margin-top: 0 !important;
    margin-bottom: 1rem !important;
  }

  .hero-content p {
    margin-bottom: 1rem !important;
  }
}

#formulaire-contact {
  scroll-margin-top: 120px; /* ajuste selon la hauteur de ton header */
}


/* MASQUER LES FLÈCHES / CHEVRONS INDÉSIRABLES AJOUTÉS PAR NAVIGATEUR OU EXTENSION */
body::before,
html::before,
::-webkit-scrollbar-button,
.scroll-indicator,
.left-arrow,
.chevron-left,
[aria-label*="scroll left"],
button[aria-label*="previous"],
*[class*="arrow-left"],
*[style*="left: 0; position: fixed"],
*[style*="left: 0; position: absolute"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  pointer-events: none !important;
}

/* Masquer tout élément suspect à gauche */
*[style*="position: fixed; left: 0"],
*[style*="position: absolute; left: 0"],
*[class*="sidebar-left"],
*[class*="nav-left"] {
  display: none !important;
}

/* ==============================================
   FAQ Section – Style inspiré Popcorn Factory
   ============================================== */

.faq-section {
  background: #202528;
  color: #fff;
  padding: 4rem 5% 5rem;
}
s
.faq-section h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 2.5rem;
  color: #afe022;
  font-weight: 700;
}

.faq-item {
  margin-bottom: 1.8rem;
  border-bottom: 1px solid #444;
  padding-bottom: 1rem;
}

.faq-item h3 {
  cursor: pointer;
  font-size: 1.4rem;
  margin: 0;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-item h3:hover {
  color: #afe022;
}

.faq-item h3 span {
  font-size: 1.8rem;
  font-weight: bold;
  color: #aaa;
  transition: transform 0.3s;
}

.faq-item div {
  display: none;
  padding: 0.8rem 0 1rem 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ddd;
  background: #2a2e32;
  border-radius: 8px;
  margin-top: 0.5rem;
}

/* Pour mobile : un peu plus d'espace */
@media (max-width: 768px) {
  .faq-section {
    padding: 3rem 5% 4rem;
  }
  
  .faq-section h2 {
    font-size: 2rem;
  }
  
  .faq-item h3 {
    font-size: 1.3rem;
  }
}

/* === FIN === */