html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #6b27a0;
  color: white;
}

/* LOADER */

#loader{
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.spinner{
  width: 60px;
  height: 60px;
  border: 5px solid #222;
  border-top: 5px solid #6b27a0;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin{
  100% { transform: rotate(360deg);}
}

/* HEADER */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: rgba(0,0,0,0.85);
  position: sticky;
  top: 0;
}

.logo {
  height: 60px;
}

nav a {
  color: white;
  margin-left: 25px;
  text-decoration: none;
}

nav a:hover {
  color: #D4AF37;
}

/* HERO */

.hero {
  min-height: 92vh;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: radial-gradient(circle at center, #6b27a0, #000);
  padding: 20px;
}

.hero-text h1 {
  font-family: 'Orbitron', sans-serif;
  color: #D4AF37;
  font-size: 44px;
  text-shadow: 0 0 25px rgba(122,60,240,0.6);
}

.btn {
  background: linear-gradient(45deg,#6b27a0,#D4AF37);
  padding: 12px 28px;
  border-radius: 30px;
  color: white;
  text-decoration: none;
}

.bottle {
  width: 270px;
  filter: drop-shadow(0 0 25px #6b27a0);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* TRUST */

.trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  background: #111;
  flex-wrap: wrap;
}

.trust div {
  border: 1px solid #6b27a0;
  padding: 12px 22px;
  border-radius: 25px;
  color: #D4AF37;
}

/* PRODUCTS */

.products {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 70px 20px;
  flex-wrap: wrap;
}

.card {
  position: relative;
  background: #111;
  padding: 25px;
  width: 260px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid #222;
  overflow: hidden;
  transition: 0.4s;
}

.card:hover {
  transform: translateY(-10px);
  border-color: #6b27a0;
  box-shadow: 0 0 25px rgba(122,60,240,0.6);
}

.card h3 {
  color: #D4AF37;
}

/* shine effect */

.card::after{
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background: linear-gradient(120deg,transparent,rgba(255,255,255,0.4),transparent);
  transition:0.6s;
}

.card:hover::after{
  left:100%;
}

/* SPOTLIGHT */

.spotlight{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 80px 20px;
  background: radial-gradient(circle,#14042a,#000);
  flex-wrap: wrap;
}

.spotlight img{
  width: 260px;
  filter: drop-shadow(0 0 30px #6b27a0);
}

.spotlight h2{
  color: #D4AF37;
}

/* ABOUT & CONTACT */

.about, .contact {
  padding: 60px 20px;
  text-align: center;
}

.about h2, .contact h2 {
  color: #D4AF37;
}

/* FOOTER */

footer {
  text-align: center;
  padding: 20px;
  background: black;
  color: #777;
}

/* WHATSAPP */

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 24px;
  padding: 12px 16px;
  border-radius: 50%;
  text-decoration: none;
}

/* REVEAL ANIMATION */

.hidden{
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.show{
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */

@media(max-width:768px){
.hero {
  flex-direction: column;
  text-align: center;
}
.hero-text h1 {
  font-size: 30px;
}
.bottle {
  width: 200px;
  margin-top: 20px;
}
}


/* SINGLE PRODUCT PAGE */

.single-product{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 80px 20px;
  flex-wrap: wrap;
}

.product-image img{
  width: 260px;
  filter: drop-shadow(0 0 25px #6b27a0);
}

.product-details{
  max-width: 500px;
}

.product-details h2{
  color: #D4AF37;
}

.product-details h3{
  margin-top: 20px;
  color: #D4AF37;
}

.product-details ul{
  padding-left: 18px;
  opacity: 0.9;
}











/* ABOUT PAGE */

.about-section{
  padding: 80px 20px;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.about-dark{
  padding: 80px 20px;
  background: radial-gradient(circle,#14042a,#000);
  text-align: center;
}

.about-section h2,
.about-dark h2{
  color: #D4AF37;
  margin-bottom: 20px;
}

/* FEATURES GRID */

.features-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 30px;
  margin-top: 40px;
}

.features-grid div{
  background: #111;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #222;
  transition: 0.3s;
}

.features-grid div:hover{
  border-color: #6b27a0;
  box-shadow: 0 0 20px rgba(122,60,240,0.5);
}

/* PRINCIPLES */

.principles{
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.principles div{
  background: #111;
  padding: 20px 30px;
  border-radius: 10px;
  border: 1px solid #222;
}

/* CREDENTIALS */

.credentials{
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.credentials li{
  padding: 8px 0;
  opacity: 0.9;
}


/* CONTACT PAGE */

.contact-container{
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 70px 20px;
  flex-wrap: wrap;
}

.contact-info{
  max-width: 420px;
}

.contact-info h2{
  color: #D4AF37;
}

.contact-info a{
  color: #D4AF37;
  text-decoration: none;
}

.map iframe{
  width: 400px;
  height: 300px;
  border: 0;
  border-radius: 12px;
}

/* MOBILE */

@media(max-width:768px){
.map iframe{
  width: 100%;
}
}
