/* Général */
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background-color: #fff2f2;
  font-family: 'Roboto', sans-serif;
  color: #000;
}
* { box-sizing: border-box; }
img { max-width: 100%; height: auto; }

/* Header */
.site-header {
  background: #000;
  padding: 10px 40px;
  position: sticky; top: 0; z-index: 100;
}
.header-container {
  display: flex; justify-content: space-between; align-items: center;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Orbitron', sans-serif; font-size: 32px; color: #fff;
}
.logo img { height: 40px; }
.main-nav { display: flex; gap: 40px; }
.main-nav a {
  font-family: 'Orbitron', sans-serif; font-size: 20px;
  text-decoration: none; color: #fff;
}
.main-nav a:hover { color: #e489f6; }

/* Hero */
.hero-section { 
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
   padding: 80px 20px;
   }
   #mask {
  position: absolute;
  top: 835px;
  left: 1687px;
  width: 171px;
  height: 71px;
  background: #fff2f2;
z-index: 12;

  

  }
  



#hero{
  display: flex;
  flex-direction: row;
  width: 100%;
}

.margehero{margin:20px;
            width:100%;}

.hero-title { font-family: 'Orbitron', sans-serif; margin-bottom: 30px; }
.hero-title-large { font-size: 126px; display: block; }

.hero-title-small { font-size: 51px; display: block; margin-top: 10px; }

.hero-product-image { 
  width: 17%;
   max-width: 700px; margin: 20px auto;;
   margin-left: 522px;
  -webkit-animation: rotate-scale-up 0.65s linear both;
	        animation: rotate-scale-up 0.65s linear both;
}

	
.cask{
  width: 100%;
  height: 80vh;
  align-items: center;
}


@-webkit-keyframes rotate-scale-up {
  0% {
    -webkit-transform: scale(1) rotateZ(0);
            transform: scale(1) rotateZ(0);
  }
  50% {
    -webkit-transform: scale(2) rotateZ(180deg);
            transform: scale(2) rotateZ(180deg);
  }
  100% {
    -webkit-transform: scale(1) rotateZ(360deg);
            transform: scale(1) rotateZ(360deg);
  }
}
@keyframes rotate-scale-up {
  0% {
    -webkit-transform: scale(1) rotateZ(0);
            transform: scale(1) rotateZ(0);
  }
  50% {
    -webkit-transform: scale(2) rotateZ(180deg);
            transform: scale(2) rotateZ(180deg);
  }
  100% {
    -webkit-transform: scale(1) rotateZ(360deg);
            transform: scale(1) rotateZ(360deg);
  }
}

 



/* CTA */
.cta-button {
  display: inline-block;
  padding: 12px 60px;
  font-family: 'Orbitron', sans-serif;
  font-size: 20px; text-transform: uppercase;
  color: #fff; text-decoration: none;
  border: 3px solid #000;
  border-radius: 40px;
  background: linear-gradient(20deg, #e489f6, #865190);
  box-shadow: 8px 8px 6px rgba(0,0,0,0.25);
  transition: all 0.2s;
  margin-top: 109px;
}
.cta-button:hover { transform: translateY(-3px); }

/* Sections */
.info-section { padding: 80px 20px; }
.info-container {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(350px,1fr));
  gap: 40px; align-items: center;
}
.info-text-box {
  background: #dbd8d8; padding: 30px;
}
.info-title {
  font-family: 'Orbitron', sans-serif; font-size: 28px; margin-bottom: 20px;
}
.info-paragraph, .sound-features-list, .features-list, .testimonial-item {
  font-size: 16px; line-height: 1.6;
  list-style: none;
}

/* Fonctionnalités */
.features-section { text-align: auto; }
.features-content-box {
  background: #dbd8d8; padding: 40px; max-width: 800px; margin: auto;
}
.features-title { font-family: 'Orbitron', sans-serif; font-size: 28px; margin-bottom: 20px; }
.features-list { list-style: none; padding: 0; }

/* Témoignages */
.testimonials-section { padding: 60px 20px; text-align: center; }
.testimonials-wrapper { background: #dbd8d8; padding: 40px; }
.testimonials-title { font-family: 'Orbitron', sans-serif; font-size: 28px; margin-bottom: 20px; }
blockquote { font-style: italic; margin: 20px 0; }

/* Achat */
.purchase-section { padding: 80px 20px; text-align: center; }
.purchase-container { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.logpurchase {
  
} 
.purchase-img { 
    max-width: 400px;
    margin-right: -30px;
    position: absolute;
    /* top: -500px; */
    bottom: -3400px;
} 
.logpurchase {position: relative;}            
.price {
  font-family: 'Orbitron', sans-serif; font-size: 48px; margin-top: 20px;
}

/* Footer */
.site-footer { background: rgba(0,0,0,0.25); padding: 20px; }
.footer-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: 'Orbitron', sans-serif; font-size: 24px; }
.footer-logo img { height: 40px; }
.social-links { display: flex; gap: 20px; }
.social-links img { width: 32px; transition: transform 0.2s; }
.social-links img:hover { transform: scale(1.1); }