/* RESET */
* {
  margin-bottom: -1px;
  margin-top: 0px;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #111;
  background: #fff;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  z-index: 1000;
  border-bottom: 1px solid #ddd;
}

.header-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between; /* garde la nav à droite */
  align-items: center; /* centre verticalement logo et menu */
  padding: 20px 40px; /* reste inchangé */
  position: relative;
}


.header-container img {
  height: 70px; /* anciennement 60px */
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}


.header-container img:hover {
  transform: scale(1.2);
}

/* Menu principal */
.menu ul {
  display: flex;
  gap: 40px;
  list-style: none;
}

.menu a {
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  color: #111;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s;
}

.menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #bbaa4d;
  left: 0;
  bottom: 0;
  transition: 0.3s;
}

.menu a:hover::after {
  width: 100%;
}

.menu a:hover {
  color: #bbaa4d;
}

/* MOBILE MENU */
.mobile-menu-icon {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 1002;
}

.mobile-menu-icon span {
  display: block;
  width: 25px;
  height: 3px;
  background: #111;
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu-icon.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-icon.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-icon.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.menu-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(5px);
  padding: 20px 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  z-index: 1001;
}

.menu-mobile.show {
  max-height: 500px;
  opacity: 1;
}

.menu-mobile a {
  font-size: 16px;
  color: #111;
  text-decoration: none;
  transition: color 0.3s;
}

.menu-mobile a:hover {
  color: #bbaa4d;
}

/* HERO */
.hero {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 120px;
  text-align: center;
}

.hero h1 {
  font-family: 'Anton', sans-serif;
  font-size: 12rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 5px;
  margin-bottom: 20px;
}

.divider {
  width: 100%;
  height: 2px;
  background: #111;
  margin: 20px 0;
}

.subtitles {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;
}

.subtitles h2 {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  letter-spacing: 2px;
}

.hero-bg {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-top: 20px;
}

.parallax-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%) scale(1.3);
  transition: transform 0.3s ease-out;
}

/* SECTIONS */
.section {
  width: 100%;
  padding: 100px 10%;
  text-align: center;
  position: relative;
  border-top: none;
  border-bottom: none;
}

.section h2 {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  margin-bottom: 30px;
}

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

/* SERVICES GRID */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

/* SERVICE CARD DIAGONALE NOIR/BLANC AVEC HOVER */
.service-card {
  flex: 0 1 280px;
  background: linear-gradient(90deg, #FFF 95%, #000 5%);
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
  padding: 40px 30px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card.supplement {
  flex: 0 1 280px;
  background: linear-gradient(90deg, #FFF 95%,  #000 5%);
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
  padding: 40px 30px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-cardfree {
  flex: 0 1 280px;
  background: linear-gradient(90deg, #FFF 95%,  #000 5%);
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
  padding: 40px 30px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-cardforfait {
  flex: 0 1 280px;
  background: linear-gradient(90deg, #FFF 95%,  #000 5%);
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
  padding: 40px 30px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Hover pour agrandir le card */
.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.service-cardforfait:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.service-cardfree:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* Texte qui réagit à la diagonale automatiquement */
.service-card h3,
.service-card p,
.service-card .price {
  color: #000000;
  transition: all 0.3s ease;
}

.priceeval {
  color: #ff0000;
  transition: all 0.3s ease;
  font-size: 12px;
}

.supp {
  color: #bbaa4d;
}
.important {
  color: #bbaa4d;
}
.link {
  color: #ffffff;
}
/* Badge best-seller (optionnel) */
.service-card.best-seller .badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #bbaa4d;
  color: #111;
  font-weight: 700;
  padding: 5px 12px;
  font-size: 0.8rem;
  border-radius: 5px;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.service-card.supplement .badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #bbaa4d;
  color: #111;
  font-weight: 700;
  padding: 5px 12px;
  font-size: 0.8rem;
  border-radius: 5px;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.service-cardfree .badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #bbaa4d;
  color: #111;
  font-weight: 700;
  padding: 5px 12px;
  font-size: 0.8rem;
  border-radius: 5px;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.service-cardforfait .badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #bbaa4d;
  color: #111;
  font-weight: 700;
  padding: 5px 12px;
  font-size: 0.8rem;
  border-radius: 5px;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
/* Responsive */
@media (max-width: 768px) {
  .service-card,
  .service-cardfree,
  .service-cardforfait,
  .service-card.supplement {
    width: 90%;
    padding: 25px 20px;
    border-radius: 12px;
  }

  .service-card h3,
  .service-cardfree h3,
  .service-cardforfait h3,
  .service-card.supplement h3 {
    font-size: 1.3rem;
  }

  .service-card p,
  .service-cardfree p,
  .service-cardforfait p,
  .service-card.supplement p {
    font-size: 1.2rem;
  }

  .service-card .price,
  .service-cardfree .price,
  .service-cardforfait .price,
  .service-card.supplement .price {
    font-size: 1.8rem;
  }
}




/* CONTACT BUTTON */
.contact-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  background: #bbaa4d;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s;
}

.contact2-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  background: #bbaa4d;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s;
}

.contact-btn:hover {
  background: #111;
  color: #fff;
}

.contact2-btn:hover {
  background: #111;
  color: #fff;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 50px 10%;
  font-size: 0.9rem;
  color: #ffffff;
  background-color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 4rem;
  }
  .subtitles h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .section h2 {
    font-size: 2rem;
  }
  .section p {
    font-size: 1.2rem;
  }
  .services-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .service-card {
    width: 90%;
    padding: 25px 20px;
    border-radius: 12px;
  }
  .service-card h3 {
    font-size: 1.3rem;
  }
  .service-card p {
    font-size: 1.3em;
  }
  .price {
    font-size: 1.5em;
  }
  .contact-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  .menu ul {
    display: none;
  }
  .mobile-menu-icon {
    display: flex;
  }
}

.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 20px auto;
  text-align: left;
}

.contact-left,
.contact-right {
  flex: 1;
}
.contact-center {
  text-align: center;
  color: #FFF; /* couleur par défaut, facultatif */
}

.contact-center p {
  color: #fff; /* blanc uniquement pour les paragraphes */
}



@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    gap: 20px;
  }
}

.about-bg {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background-image: url("../photo/wawebottom.png"); /* chemin de ton image */
  background-size: cover;       /* l’image couvre toute la zone */
  background-position: center;  /* centrée */
  background-repeat: no-repeat; /* pas de répétition */
}



.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}


.about-box {
  position: relative;
  background: #fff;
  width: 70%;
  margin: 0 auto;
  padding: 60px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.wave-container {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
}

.wave, .wave:nth-child(2), .wave:nth-child(3) {
  fill: rgb(0, 0, 0);
  animation: waveFluid 4s ease-in-out infinite;
  will-change: d;               /* optimise l'animation */
  backface-visibility: hidden;  /* évite le rendu inversé sur mobile */
}

.wave:nth-child(2) {
  animation: waveFluid 5s ease-in-out infinite alternate;
  fill: rgba(0, 0, 0, 0.7);
}

.wave:nth-child(3) {
  animation: waveFluid 6s ease-in-out infinite alternate-reverse;
  fill: rgba(0, 0, 0, 0.12);
}

/* animation fluide des vagues */
@keyframes waveFluid {
  0% { d: path("M0,50 C360,150 1080,-50 1440,50 L1440,0 L0,0 Z"); }
  25% { d: path("M0,60 C360,140 1080,-40 1440,60 L1440,0 L0,0 Z"); }
  50% { d: path("M0,40 C360,160 1080,-60 1440,40 L1440,0 L0,0 Z"); }
  75% { d: path("M0,55 C360,145 1080,-45 1440,55 L1440,0 L0,0 Z"); }
  100% { d: path("M0,50 C360,150 1080,-50 1440,50 L1440,0 L0,0 Z"); }
}

.wave, .wave:nth-child(2), .wave:nth-child(3) {
  fill: rgb(0, 0, 0);
  animation: waveFluid 4s ease-in-out infinite;
  will-change: d;
  backface-visibility: hidden;
}

/* Vague du haut (wave-top) */
.wave-top {
  transform: rotateX(180deg); /* PC : inversée */
  transform-origin: center;   /* ajoute ça pour corriger le point de rotation */
}


/* Mobile : vagues visibles mais statiques */
@media (max-width: 768px) {
  .wave-container {
    display: block; /* on les montre */
  }
  .wave, .wave:nth-child(2), .wave:nth-child(3) {
    animation: none; /* plus d'animation */
    transform: none; /* remet à l'endroit si besoin */
  }
  .wave-bottom {
  transform: rotateX(180deg); /* PC : inversée */
}
}


/* Section #projects */
#projects {
  background-color: #000;
  color: #fff;
  padding: 100px 10%;
  text-align: center;
  border-top: none;
  border-bottom: none;
}

#projects h2 {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fff;
}

#projects p {
  font-size: 1.2rem;
  color: #fff;
  margin: 0 auto;
}
/* Responsive */
@media (max-width: 768px) {
  .section {
    border-top: none;
    border-bottom: none;
  }

  #projects {
    border-top: none;
    border-bottom: none;
  }
}
@media (min-width: 769px) {
  .menu a {
    font-size: 22px; /* Ajuste la taille comme tu veux */
  }
}
.hero-title {
  font-family: 'Anton', sans-serif;
  font-size: 12rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 5px;
  margin-bottom: 20px;
}

.gold-dot {
  color: #bbaa4d; /* couleur or */
}
.iframe-container {
  width: 100%;
  max-width: 380px; /* largeur maximale */
  margin: 0 auto; /* centre horizontalement */
}

.iframe-container iframe {
  width: 100%;      /* prend toute la largeur disponible */
  height: auto;     /* ajustement automatique de la hauteur */
  min-height: 82px; /* hauteur minimale pour desktop */
  border: none;
}
.footer {
  text-align: center;
  padding: 20px;
  background: #000000; /* ou la couleur de ton choix */
}

.footer p {
  margin: 10px 0;
  font-size: 14px;
  color: #ffffff;
}

.footer .social-icon img {
  width: 20px;      /* taille du logo */
  height: auto;
  margin-left: 8px; /* espace avec le texte */
  vertical-align: middle;
}

.footer .don-btn {
  margin: 20px 0;
}

.footer .iframe-container {
  margin: 20px auto;
  max-width: 400px;
}

.footer .iframe-container iframe {
  width: 100%;
  border: 0;
}
body {
  font-family: 'Montserrat', sans-serif;
  color: #111;
  background: #fff;
  margin: 0;
  padding: 0;
}
.section, .footer, .about-box {

  margin: 0 auto;    /* centre horizontalement */
  padding: 80px 20px; /* espace interne */
  box-sizing: border-box;
}
.footer {
  text-align: center;
  padding: 30px 20px;
  background: #000;
  color: #fff;
}

.footer p {
  margin: 0;
  line-height: 1.6;
}

.footer .social-icon img {
  width: 20px;
  height: auto;
  margin-left: 8px;
  vertical-align: middle;
}

.footer .iframe-container {
  margin: 20px auto 0 auto;
  max-width: 380px;
}
@media (max-width: 768px) {
  /* Hero section */
  .hero {
    padding-top: 100px;
    text-align: center; /* centre tout le contenu */
    padding-left: 10px;
    padding-right: 10px;
  }

  /* Hero title */
  .hero-title {
    font-size: 4rem; /* déjà existant */
    text-align: center; /* centre le texte */
  }

  /* Subtitles */
  .subtitles {
    display: flex;
    flex-direction: column; /* empile les h2 */
    align-items: center;    /* centre horizontalement */
    gap: 10px;              /* espace entre les h2 */
    width: 100%;            /* prend toute la largeur */
    padding: 0;             /* supprime les marges internes */
  }

  .subtitles h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    text-align: center; /* centre le texte */
    width: 100%;        /* assure que le texte reste centré */
  }

  /* Hero background image */
  .hero-bg {
    height: 250px;       /* réduit la hauteur pour mobile */
  }

  .parallax-img {
    transform: translate(-50%, -50%) scale(1.1); /* ajuste l'image */
  }
}
/* Section Referal fond noir + texte blanc */
#referral.section.contact-bg {
  background-color: #000;
  color: #fff;
}

#referal h2 {
  color: #fff;
}

#referal p {
  color: #fff;
}

/* Pour bien ressortir les éléments importants */

/* Pour toutes les sections ciblées par un ancre */
.section {
  scroll-margin-top: 120px; /* <- hauteur de ton header fixe */
}


/* Si certaines sections ont des ids spécifiques */
#home,
#services,
#projects,
#contact,
#about,
#referal {
  scroll-margin-top: 120px; /* ajuste selon la hauteur de ton header */
}
/* Cible uniquement le logo principal */
.header-container > a > img {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Petit astérisque eco.png */
.impact-item {
  width: 8px;
  height: 8px;
  position: absolute;
  top: -6px;
  right: -6px;
}
/* Tous les logos dans header-container sauf eco-logo */
.header-container img:not(.eco-logo) {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Petit logo eco */
.impact-link {
  position: relative; /* important pour positionner le logo correctement */
}

.eco-logo {
  width: 15px !important;   /* taille petite */
  height: auto !important;
  position: absolute;
  top: -5px;     
  right: -12px;  
}
/* Lien IMPACT uniquement */
.menu a.impact-link {
  color: #53a246;            /* texte vert uniquement pour IMPACT */
}

/* Barre sous le lien (underline) pour IMPACT */

/* Au hover pour IMPACT, texte redevient la couleur normale */
.menu a.impact-link:hover {
  color: #bbaa4d;
}

/* Texte section partenaire */
#partnership h2 {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  margin-bottom: 20px;
  color: #000000;
  text-align: center;
}

#partnership p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #000000;
  max-width: 700px;
  margin: 0 auto 20px auto;
}

/* Logo Instagram petit et hover */
#partnership .instagram-link img {
  width: 20px;       
  height: 20px;      
  vertical-align: middle;
  margin-left: 6px;
  transition: transform 0.3s;
}

#partnership .instagram-link img:hover {
  transform: scale(1.3);
}
/* Responsive pour la carte partenariat */
@media (max-width: 768px) {
  #partnership div[style*="display:flex"][style*="flex-wrap:wrap"] {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  #partnership a[target="_blank"] {
    margin-top: 16px !important;
    text-align: center !important;
  }
}
.site-builder {
  max-width: 750px;
  margin: 40px auto;
  padding: 30px 25px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  font-family: 'Montserrat', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Inputs stylisés */
.styled-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 2px solid #bbaa4d;
  background-color: #fdfdfd;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.styled-input:focus {
  outline: none;
  border-color: #7c6a32;
  box-shadow: 0 0 0 3px rgba(187, 170, 77, 0.2);
}

/* Lignes de formulaire */
.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Groupe de cases */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Case individuelle */
.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  flex: 1 1 300px;
  position: relative;
  padding-left: 28px;
}

/* Cache l'input classique */
.checkbox-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Checkbox personnalisée */
.custom-check {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #bbaa4d;
  border-radius: 5px;
  background: #fff;
  transition: all 0.3s ease;
}

.checkbox-item input:checked ~ .custom-check {
  background: #bbaa4d;
  border-color: #bbaa4d;
}

.checkbox-item input:checked ~ .custom-check::after {
  content: "✓";
  color: #fff;
  font-size: 14px;
  position: absolute;
  top: -2px;
  left: 3px;
}

/* Texte à droite */
.checkbox-text {
  display: flex;
  flex-direction: column;
}

.option-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #111;
  text-align: left;
}

.option-desc {
  font-size: 0.85rem;
  color: #555;
  text-align: left;
  line-height: 1.2;
}
.option-desc2 {
  font-size: 0.85rem;
  color: #555;
  text-align: center;
  line-height: 1.2;
}

/* Total */
.total-price {
  font-weight: 700;
  font-size: 1.2rem;
  color: #bbaa4d;
  text-align: right;
  margin-top: 10px;
}

/* Bouton contact2-btn style */
.contact2-btn {
  background: linear-gradient(90deg,#bbaa4d,#f0e68c);
  color: #111;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 12px;
  padding: 14px 25px;
  text-align: center;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.contact2-btn:hover {
  background: linear-gradient(90deg,#f0e68c,#bbaa4d);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

#recap {
  font-style: normal; /* plus d'italique */
  text-align: justify; /* texte justifié */
  line-height: 1.5; /* meilleur confort de lecture */
  color: #000000; /* ou la couleur adaptée à ton background */
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  #recap {
    font-size: 0.8rem;
    line-height: 1.4;
    text-align: justify;
  }

  .total-price {
    text-align: center; /* centrage du contenu du div */
    font-size: 1rem;
    margin-top: 8px;
  }

  #total {
    display: inline-block; /* pour que le texte soit bien centré */
    font-size: 1.2rem;
    font-weight: bold;
  }
}
/* --- Effet lignes diagonales sur la section makealone --- */
.makealone-lines {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none; /* pour que ça ne gêne pas le clic */
}

.line {
  position: absolute;
  height: 6px; /* épaisseur du trait */
  background-color: #000; /* couleur noire */
  opacity: 0.25; /* légère transparence pour un effet classe */
  border-radius: 10px;
}

/* Première ligne */
.line1 {
  width: 160%;
  bottom: 0;
  left: -20%;
  transform: rotate(8deg);
  transform-origin: left bottom;
}

/* Deuxième ligne */
.line2 {
  width: 180%;
  bottom: -60px;
  left: -10%;
  transform: rotate(-6deg);
  transform-origin: left bottom;
  opacity: 0.2;
}
#makeyours {
  background-image: url("../photo/wave5.jpeg"); /* remplace par le vrai nom du fichier */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

#makeyours::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}
select:disabled {
  background-color: #f0f0f0;
  color: #999;
  cursor: not-allowed;
}
#monElement {
  position: relative; /* ou absolute/fixed selon ton besoin */
  opacity: 1;         /* visible par défaut */
  transition: opacity 0.3s; /* pour effet de grisage doux */
  pointer-events: auto; /* reste cliquable si besoin */
}

/* état grisé */
#monElement.gris {
  opacity: 0.5;       /* rend l'élément grisé */
  pointer-events: none; /* si tu veux qu'il ne soit plus cliquable */
}
@media (max-width: 768px) {
  #recap {
    min-height: 80px; /* un peu plus haut sur mobile */
  }
}

