*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial,sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#f8f5ef;
  color:#222;
}

/* NAVBAR */

.navbar{
  position:fixed;
  top:0;
  width:100%;
  padding:20px 60px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:1000;
  background:rgba(0,0,0,0.35);
  transition:0.3s;
}

.logo{
  color:#fff;
  font-size:28px;
  font-weight:bold;
  letter-spacing:2px;
}

.navbar nav a{
  color:#fff;
  text-decoration:none;
  margin-left:25px;
  font-size:15px;
}

/* HERO SECTION */

.hero{
  height:100vh;
  position:relative;
  overflow:hidden;
}

.hero-video{
  width:100%;
  height:100%;
  object-fit:cover;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
}

.hero-content{
  position:absolute;
  top:50%;
  left:8%;
  transform:translateY(-50%);
  color:#fff;
  max-width:600px;
}

.hero-content h1{
  font-size:65px;
  margin-bottom:20px;
}

.hero-content p{
  font-size:20px;
  margin-bottom:30px;
}

.btn{
  display:inline-block;
  padding:14px 32px;
  background:#c49a3c;
  color:#fff;
  text-decoration:none;
  border-radius:3px;
}

/* PRODUCT SECTION */

.single-product{
  padding:100px 8%;
}

.single-product h2{
  text-align:center;
  font-size:45px;
  margin-bottom:60px;
}

.product-box{
  display:flex;
  gap:50px;
  align-items:center;
  background:#fff;
  padding:30px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.slider{
  position:relative;
  width:50%;
  height:600px;
  overflow:hidden;
  border-radius:10px;
}

.slide{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transition:opacity 1.5s ease-in-out;
}

.slide.active{
  opacity:1;
}

.product-content{
  width:50%;
}

.product-content h3{
  font-size:42px;
  margin-bottom:20px;
}

.product-content p{
  color:#666;
  line-height:1.8;
  margin-bottom:25px;
  font-size:18px;
}

.product-content span{
  display:block;
  font-size:28px;
  color:#9a6a10;
  font-weight:bold;
  margin-bottom:30px;
}

.whatsapp-btn{
  display:inline-block;
  padding:15px 35px;
  background:#25d366;
  color:#fff;
  text-decoration:none;
  border-radius:5px;
}

/* ABOUT */

.about{
  padding:100px 15%;
  text-align:center;
  background:#fff;
}

.about h2{
  font-size:42px;
  margin-bottom:20px;
}

.about p{
  color:#555;
  line-height:1.8;
  font-size:18px;
}

/* CONTACT */

.contact{
  padding:100px 15%;
  text-align:center;
}

.contact h2{
  font-size:42px;
  margin-bottom:20px;
}

.contact p{
  color:#555;
  font-size:18px;
}

/* FOOTER */

footer{
  background:#111;
  color:#fff;
  text-align:center;
  padding:25px;
}

/* MOBILE */

@media(max-width:900px){

  .navbar{
    padding:18px 20px;
  }

  .navbar nav{
    display:none;
  }

  .hero-content h1{
    font-size:42px;
  }

  .product-box{
    flex-direction:column;
  }

  .slider{
    width:100%;
    height:400px;
  }

  .product-content{
    width:100%;
  }

  .product-content h3{
    font-size:32px;
  }

}

.instagram-btn{
  display:inline-block;
  padding:15px 35px;
  background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  color:#fff;
  text-decoration:none;
  border-radius:5px;
  margin-top:25px;
  font-size:16px;
  transition:0.3s;
}

.instagram-btn:hover{
  transform:translateY(-3px);
  opacity:0.9;
}

body{
  background:#050505;
  color:#fff;
}

.single-product{
  background:#050505;
}

.product-box{
  background:#111;
  color:#fff;
}

.product-content p,
.about p,
.contact p{
  color:#ccc;
}

.about{
  background:#0b0b0b;
  color:#fff;
}

.contact{
  background:#050505;
  color:#fff;
}

.single-product h2,
.about h2,
.contact h2,
.product-content h3{
  color:#fff;
}

.logo-area{
  display:flex;
  align-items:center;
  gap:12px;
}

.header-logo{
  width:42px;
  height:42px;
  object-fit:contain;
}

.logo-text{
  color:#fff;
  font-size:28px;
  font-weight:bold;
  letter-spacing:2px;
}
