:root{
  --rose-gold:#E8B4B8;
  --rose-gold-dark:#D89A9E;
  --black:#0E0E0E;
  --white:#FFFFFF;
  --gray:#F6F6F6;
  --charcoal: #3333333;
  --light-gray: #2a2a2a;
  --absolute-black: #000000;
  --accent-gold: rgb(196,188,150);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Segoe UI', sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  background:var(--white);
  background: var(--black);
  color:#222;
  padding-bottom:80px;
}

h1, h2, h3{
  font-family: Cambria, "Times New Roman", serif;
  letter-spacing:0.5px;
}

/* ===== TOP NAV ===== */
/* ===== TOP NAV VERTICAL LUXE ===== */
.top-nav{
  position:sticky;
  top:0;
  background:rgba(14,14,14,0.96);
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:18px 20px 14px;
  z-index:100;
}

/* LOGO EN HAUT */
.logo{
  color:var(--rose-gold);
  font-family: Cambria, serif;
  font-size:1.6em;
  font-weight:bold;
  margin-bottom:12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 21px;
  text-align: center;

}

/* ONGLET SOUS LE LOGO */
.tap_nav{
  list-style:none;
  display:flex;
  gap:21px;
  text-transform: uppercase;
}

/* LIENS */
.tap_nav a{
  color:var(--white);
  text-decoration:none;
  font-size:0.95em;
  position:relative;
  padding-bottom:4px;
}

/* SOULIGNEMENT LUXE AU HOVER */
.tap_nav a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:2px;
  background:var(--rose-gold);
  transition:0.3s;
}

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

.tap_nav a:hover{
  color:var(--rose-gold);
}

/* ===== HERO ===== */
.hero{
  color:var(--white);
  padding:90px 20px;
  text-align:center;
  padding-bottom: 50px;
 background: linear-gradient(rgba(18,18,18,0.8), rgba(18,18,18,0.8)), url('../image/top.image.cover.jpg'); background-size: cover; border-radius: 0 0 50px 50px; 

}

.hero h1{
  font-size:2.4em;
  color:var(--rose-gold);
  margin-bottom:15px;
}

.hero p{
  max-width:600px;
  margin:auto;
  font-size:1.1em;
  opacity:0.9;
  margin-bottom:30px;
}

.hero button{
  background:var(--rose-gold);
  border:none;
  padding:15px 35px;
  border-radius:30px;
  font-weight:600;
  cursor:pointer;
}

.heroLinkOrderLink{
    background:var(--rose-gold);
      border:none;
      padding:15px 35px;
      border-radius:30px;
      font-weight:600;
      cursor:pointer;
} 

/* ===== SECTIONS ===== */
section{
  padding:70px 20px;
}

section h2{
  text-align:center;
  color:var(--rose-gold-dark);
  margin-bottom:40px;
}

/* SERVICES */
.services{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.service{
  background:var(--gray);
  padding:30px;
  border-radius:18px;
  text-align:center;
  transition:.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}



.service:hover{
  transform:translateY(-6px);
}

/* ABOUT */
.about{
  max-width:800px;
  margin:auto;
  text-align:center;
  line-height:1.7;
  color: white;
}

/* GALLERY */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:15px;
}

.pack{
  height:190px;
  background:linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--white);
  font-weight:600;
  box-shadow:0 10px 30px rgba(0,0,0,0.18);
}

/* TESTIMONIALS */
.testimonials{
  background:var(--black);
  color:var(--white);
}

.testimonial{
  max-width:600px;
  margin:20px auto;
  background:#1a1a1a;
  padding:25px;
  border-radius:18px;
}

.testimonial span{
  color:var(--rose-gold);
  font-size:0.9em;
}

/* CONTACT */
.contact{
  max-width:500px;
  margin:auto;
  padding-bottom: 100px;
}

.contact input, .contact textarea{
  width:100%;
  padding:14px;
  margin-bottom:15px;
  border-radius:12px;
  border:1px solid #ddd;
}

.contact button{
  width:100%;
  background:var(--black);
  color:var(--rose-gold);
  border:none;
  padding:15px;
  border-radius:30px;
  cursor:pointer;
  z-index: 0;
}

/* ===== BOTTOM NAV ===== */
.bottom-nav{
  position:fixed;
  bottom:0;
  width:100%;
  background:var(--black);
  display:flex;
  justify-content:space-around;
  padding:12px 0;
}

.bottom-nav a{
  color:var(--rose-gold);
  text-decoration:none;
  font-size:1.4em;
}


/* ===== RESPONSIVE MOBILE ===== */
@media screen and (max-width: 768px){

  /* TOP NAV */
  .top-nav{
    padding:16px 12px;
    border-bottom: 1px solid var(--rose-gold);
  }

  /* LOGO */
  .logo{
    font-size:1.4em;
    margin-bottom:12px;
    background: var(--rose-gold);
    width: 100%;
    padding: 9px;
    color: black;

  }
  /* LOGO */
  

  /* NAV TABS */
  .tap_nav{
    width:100%;
    justify-content:space-around;
    gap:5px;
  }

  .tap_nav li{
    flex:1;
    text-align:center;
  }

  .tap_nav a{
    font-size:0.85em;
    padding:6px 0;
  }

  /* HERO */
  .hero{
    padding:80px 15px;
    padding-bottom: 21px;
  }

  .hero h1{
    font-size:2em;
  }

  .hero p{
    font-size:1em;
  }

  /* SERVICES */
  .services{
    grid-template-columns:1fr;
  }

  /* GALLERY */
  .gallery-grid{
    grid-template-columns:1fr 1fr;
  }

  .pack{
    height:160px;
    font-size:1em;
  }

  /* TESTIMONIALS */
  .testimonial{
    margin:15px;
  }

  /* CONTACT */
  .contact{
    padding:0 5px;
  }

  /* BOTTOM NAV */
  .bottom-nav a{
    font-size:1.2em;
  }


  /* TOP NAV */
  .top-nav{
    padding:16px 12px 14px;
  }

  

  /* NAVIGATION MULTI-LIGNES */
  .tap_nav{
    display:flex;
    flex-wrap:wrap;              /* ✅ AUTORISE LE RETOUR À LA LIGNE */
    justify-content:center;      /* ✅ CENTRÉ */
    gap:9px;               /* ligne / colonne */
    width:100%;
  }

  .tap_nav li{
    list-style:none;
  }

  .tap_nav a{
    display:inline-block;
    font-size:0.85em;
    padding: 3px 7px;
    white-space:nowrap;          /* empêche les mots de se casser */
  }
}


.uppercasseText{
    text-transform: uppercase;
}





/* ================= BOTTOM NAV FIXE ================= */
.bottom-nav{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  background:var(--black);
  display:flex;
  justify-content:space-around;
  padding:12px 0;
  z-index:100;
}

.bottom-nav a{
  color:var(--rose-gold);
  text-decoration:none;
  font-size:1.4em;
  transition:0.3s;
}

.bottom-nav a:hover{
  transform:scale(1.2);
  color:var(--white);
}

/* ================= FOOTER CLASSIQUE ================= */
.footer{
  background:var(--black);
  color:var(--rose-gold);
  padding:30px 15px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
  text-align:center;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:15px 20px;
}

.footer-links a{
  color:var(--rose-gold);
  text-decoration:none;
  transition:0.3s;
}

.footer-links a:hover{
  color:var(--white);
  text-decoration:underline;
}

.footer-contact{
  display:flex;
  flex-direction:column;
  gap:6px;
  font-size:0.85em;
  color:var(--rose-gold-dark);
}

.footer-contact a{
  color:var(--rose-gold);
  text-decoration:none;
}

.footer-contact a:hover{
  text-decoration:underline;
  color:var(--white);
}

.footer-socials{
  display:flex;
  gap:15px;
}

.footer-socials a{
  transition:0.3s;
}

.footer-socials a:hover{
  transform:scale(1.2);
}

/* ================= RESPONSIVE ================= */
@media screen and (max-width: 768px){
  .footer-links{
    gap:10px 12px;
  }

  .footer-contact{
    font-size:0.8em;
  }

  .footer-socials a svg{
    width:18px;
    height:18px;
  }
}






.footer-socials{
  display:flex;
  gap:15px;
}

.footer-socials a svg{
  width:22px;
  height:22px;
  transition:0.3s;
}

.footer-socials a:hover svg{
  transform:scale(1.2);
  stroke:#FFFFFF; /* glow sur hover */
}


.bottom-nav{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  background:var(--black);
  display:flex;
  justify-content:space-around;
  align-items:center;
  padding:10px 0;
  z-index:100;
  border-top:1px solid rgba(232,180,184,0.3);
}

.bottom-nav a{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  color:var(--rose-gold);
  text-decoration:none;
  font-size:0.75em;
  transition:0.3s;
}

.bottom-nav a svg{
  width:24px;
  height:24px;
  margin-bottom:4px;
  stroke:var(--rose-gold);
  transition:0.3s;
}

/* EFFET HOVER ET ACTIVE */
.bottom-nav a:hover svg,
.bottom-nav a.active svg{
  stroke:#FFFFFF;
  transform:scale(1.25);
}

.bottom-nav a:hover span,
.bottom-nav a.active span{
  color:#FFFFFF;
  font-weight:600;
  transform:translateY(-2px);
}

/* ANIMATION DOUCE */
.bottom-nav a svg,
.bottom-nav a span{
  transition: transform 0.3s ease, color 0.3s ease, stroke 0.3s ease;
}

/* RESPONSIVE MOBILE */
@media screen and (max-width: 480px){
  .bottom-nav a span{
    font-size:0.65em;
  }
  .bottom-nav a svg{
    width:20px;
    height:20px;
  }
}


.whatsapp-chat-item {
        display: flex;
        align-items: center;
        padding: 12px 16px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        max-width: 280px; 
        margin: 20px auto;
        background-color: #000; /* Fond noir pour le style PROFILE */
        color: #fff;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        border: 1px solid #333;
    }

    /* Logo WhatsApp à gauche */
    .chat-avatar {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        margin-right: 15px;
        object-fit: contain;
    }

    /* Infos au milieu */
    .chat-details {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        text-align: left;
    }

    .chat-name {
        font-weight: 600;
        font-size: 15px;
        line-height: 1.2;
    }

    .company-sub {
        font-size: 10px;
        color: #888;
    }

    .chat-number {
        font-size: 13px;
        color: #00a884;
        margin-top: 4px;
        font-weight: bold;
    }

    /* Le Bouton Envoyer cliquable */
    .whatsapp-send-circle {
        width: 45px;
        height: 45px;
        background-color: #00a884; 
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 4px rgba(0,0,0,0.3);
        transition: transform 0.2s, background-color 0.2s;
        text-decoration: none; /* Enlève le soulignement du lien */
    }

    .whatsapp-send-circle:hover {
        background-color: #00c298;
        transform: scale(1.1); /* Grossit légèrement au survol */
    }
    
    .send-icon {
        width: 20px;
        height: 20px;
        fill: white;
        transform: translateX(2px); /* Centrage optique de la flèche */
    }



.shop-section{
  color:var(--rose-gold);
  font-family:Cambria, serif;
}

.shop-section h2{
  text-align:center;
  margin-bottom:30px;
  font-size:2em;
}

/* LISTE ARTICLES */
.articles-list{
  display:flex;
  flex-direction:column;
  gap:7px;
  max-width:600px;
  margin:0 auto;
}

/* ARTICLE CARD */
.article-card{
  display:flex;
  align-items:center;
  gap:15px;
  padding:7px;
  margin-bottom: 30px;
  border:1px solid rgba(232,180,184,0.3);
  border-radius:8px;
  background:rgba(232,180,184,0.05);
  cursor:pointer;
  transition:0.3s;
}

.article-card:hover{
  background:rgba(232,180,184,0.15);
  transform:scale(1.02);
}

.article-card img{
  width:90px;
  height:90px;
  object-fit:cover;
  border-radius:8px;
}

.article-info{
    color: black;
  display:flex;
  flex-direction:column;
}

.article-price{
  font-weight:bold;
  margin:0;
  font-size:1.1em;
}

.article-name{
  margin:5px 0 0 0;
}

/* DETAIL ARTICLE */
.article-detail{
  display:none;
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  background:var(--black);
  border:1px solid rgba(232,180,184,0.3);
  padding:20px;
  max-width:450px;
  width:90%;
  z-index:200;
  border-radius:10px;
  text-align:center;
}

.article-detail img{
  width:100%;
  border-radius:8px;
  margin-bottom:15px;
}

.article-detail .close-detail{
  position:absolute;
  top:10px;
  right:10px;
  background:none;
  border:none;
  color:var(--rose-gold);
  font-size:1.5em;
  cursor:pointer;
}

#whatsapp-btn{
  display:inline-block;
  margin-top:15px;
  padding:10px 20px;
  background:var(--rose-gold);
  color:var(--black);
  text-decoration:none;
  font-weight:bold;
  border-radius:6px;
  transition:0.3s;
}

#whatsapp-btn:hover{
  background:#FFFFFF;
  color:var(--black);
}

/* MODAL ZOOM IMAGE */
.zoom-modal{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.8);
  z-index:300;
  justify-content:center;
  align-items:center;
}

.zoom-modal img{
  max-width:90%;
  max-height:90%;
  border-radius:10px;
}

.zoom-close{
  position:absolute;
  top:20px;
  right:20px;
  font-size:2em;
  color:var(--rose-gold);
  cursor:pointer;
}


/* MODAL ZOOM IMAGE */
.zoom-modal{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.8);
  z-index:300;
  justify-content:center;
  align-items:center;
  opacity:0;
  transition: opacity 0.3s ease;
}

.zoom-modal.show{
  display:flex;
  opacity:1;
}

.zoom-modal img{
  max-width:90%;
  max-height:90%;
  border-radius:10px;
  transform:scale(0.8);
  transition: transform 0.3s ease;
}

.zoom-modal.show img{
  transform:scale(1);
}

.zoom-close{
  position:absolute;
  top:20px;
  right:20px;
  font-size:2em;
  color:var(--rose-gold);
  cursor:pointer;
  transition: color 0.3s;
}

.zoom-close:hover{
  color:#FFFFFF;
}











.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
    color: var(--text-muted);
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
            
}

    tr { padding:11;px }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
            gap: clamp(2rem, 4vw, 3rem);
            margin-bottom: 3rem;
            text-align: left;
        }
        
        .footer-column h3 {
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
            margin-bottom: 1.5rem;
            color: var(--accent-gold);
            font-weight: bold;
        }
        
        .footer-column p, .footer-column a {
            color: var(--text-muted);
            margin-bottom: 1rem;
            display: block;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: bold;
        }

        
        
        .footer-column a:hover {
            color: var(--accent-gold);
        }
        