@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=Poppins:wght@400;600&family=Rajdhani:wght@500&display=swap');

html {
  scroll-behavior: smooth;
}


/* Global Styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color:#000;
  color:silver;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: none; 


}
.nav-left a,
.nav-right a {
  text-decoration: none;
  color: silver;
  margin: 0 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}
.nav-left a::after,
.nav-right a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: silver;
  transition: width 0.3s ease;
}
.nav-left a:hover::after,
.nav-right a:hover::after {
  width: 100%;
}
.nav-right{
  margin-right: 80px;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: silver;
}

.logo .red {
  color: #d32f2f;
}

/* Parallax Hero */
.parallax-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.parallax-overlay {
  position: relative;
  text-align: center;
  z-index: 2;
  color:silver;
  padding: 20px;
}

.hero-text {
  margin-bottom: 80px;
  font-size: 3.5rem;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 2px;
  background: linear-gradient(to right, silver, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInDown 1.2s ease-out;
}

.hero-sub {
  font-size: 1.5rem;
  margin: 20px 0;
  color: silver;
  font-weight: 300;
  font-family: 'Rajdhani', sans-serif;
  animation: fadeInUp 1.2s ease-out;
}

/* Golden Button */
.hero-btn {
  padding: 12px 30px;
  border: 2px solid silver;
  background: transparent;
  color: silver;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  z-index: 2;
}

.dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.dropdown-wrapper .dropdown {
  display: none;
  position: absolute;
  min-width: 160px;
  z-index: 1;
  border-radius: 5px;
}

.dropdown-wrapper:hover .dropdown {
  display: block;
}

.dropdown a {
  color: silver;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
}

.dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.dropdown-wrapper .dropdown {
  display: none;
  position: absolute;
  background-color: #000;
  min-width: 160px;
  box-shadow: 0px 2px 5px rgba(0,0,0,0.3);
  z-index: 1;
  border-radius: 5px;
}

.dropdown-wrapper:hover .dropdown {
  display: block;
}

.dropdown a {
  color: silver;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
}

/* .dropdown a:hover {
  background-color: silver;
} */

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, white, silver, white);
  transform: skewX(-20deg);
  z-index: 1;
}

/* .hero-btn:hover::before {
  animation: shine 1s ease-in-out forwards;
} */

/* .hero-btn:hover {
  background:silver;
  color: black;
  box-shadow: 0 0 25px 5px grey;
  transform: scale(1.05);
} */

.hero-btn:active {
  transform: scale(0.96);
  box-shadow: 0 0 40px 10px grey;
}
  

/*product page*/




/* Section Titles */
/* Glowing Section Headings */
.home-things {
  font-size: 2.5rem;
  text-align: center;
  margin: 80px 0 30px;
  font-weight: 800;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 2px;
  color: #ffffff;
  background: linear-gradient(to right,white, white, white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldGlow 2s ease-in-out infinite alternate;
  text-shadow: 0 0 1px white, 0 0 2px silver, 0 0 3px white;
}
.fam-item-link {
    display: block; /* Make the link a block-level element to wrap the div properly */
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit text color */
}

/* Optional: Add hover effects to make clickable items obvious */
/* .fam-item-link .item-block {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
} */

/* .fam-item-link .item-block:hover {
    transform: translateY(-5px); /* Lift effect */
    /*box-shadow: 0 8px 16px rgba(0,0,0,0.2); /* Add shadow */
    /*cursor: pointer; } */

/* Section Containers */
.best-sellers-container,
.top-rated-container,
.whats-new-container,
.fam-container {
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
  padding: 20px;
  box-shadow: 0 12px 20px rgb(64, 64, 64);
  width: 100%;
  flex-wrap: wrap;
}


/* Product & Fam */
.item-block,
.item-block-2,
.item-block-3
{ 
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px; 
  flex-basis: calc(20% - 16px);
  max-width: 180px; 
  min-width: 120px;
}

.item-block-4{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px; 
  flex-basis: calc(20% - 16px);
  max-width: 300px; 
  min-width: 250px;
}

.fam-item {
  background: black;
  border-radius: 12px;
  
  width: 100%;
  padding-bottom: 100%;
  height: 0; 
  position: relative;
  overflow: hidden;
}
.fam-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  position: absolute; 
  top: 0;          
  left: 0;  
}      
/* .product:hover,
.fam-item:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 10px rgb(64, 64, 64);
  cursor: pointer;
} */



product img,
.fam-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This is good to fill the square container */
  border-radius: 8px; /* Apply to the image itself if you want rounded image corners */
  /* If using the padding-bottom trick for square containers, you'd need: */
  /* position: absolute; top: 0; left: 0; */
}

/* Product Text */
.details {
  margin-top: 8px;
  text-align: center;
  color:silver;
  font-family: 'Rajdhani', sans-serif;
}
.details p {
  margin: 2px 0;
  font-weight: 500;
  font-size: 15px;
}

/* Launching Soon & Banner */

.banner {
  width: 96vw;
  height: 80vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;                
  box-shadow: 0 18px 30px rgb(64, 64, 64);
  margin-left: 10px;
  margin: 23px 0;
}
.launching-soon{
  width: 96vw;
  height: 40vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
               /* 💥 PREMIUM BORDER */
  border-radius: 12px;                 /* match product style */
  box-shadow: 0 15px 30px  rgb(64, 64, 64); /* golden glow */
  margin: 20px 0;
}

.launching-soon img,
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Reviews */
.review-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px;
}
.review {
  background: black;
  border-left: 4px solid silver;
  padding: 15px;
  flex: 1 1 200px;
  font-style: italic;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(222, 222, 220, 0.2);
  transition: background 0.3s ease;
}
/* .review:hover {
  background: black;
} */

/* Info Bar */
.info-bar {
  display: flex;
  justify-content: space-evenly;
  background:black;
  padding: 15px;
  margin-top: 100px;
  font-weight: bold;
  border-top: 2px solid silver;
  border-bottom: 2px solid silver;
  flex-wrap: wrap;
}
.info-bar div {
  margin: 5px 10px;
}

/* Footer */
.footer {
  display: flex;
  justify-content: space-around;
  padding: 40px 20px;
  background:black;
  color: silver;
  flex-wrap: wrap;
}
.footer h4 {
  margin-bottom: 10px;
  border-bottom: 1px solid silver;
  padding-bottom: 5px;
}
.footer-logo {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
}

.footer .footer-1{
  padding-top: 50px;
}

/* Copyright */
footer p {
  text-align: center;
  padding-bottom: 20px;
  font-size: 14px;
  color: silver;
}

/* Click Effect */
.product:active,
.fam-item:active,
.review:active {
  transform: scale(0.97);
  box-shadow: 0 4px 10px rgba(161, 161, 160, 0.4);
}
.click-effect {
  transition: all 0.2s ease;
}
.click-effect:active {
  transform: scale(0.95);
}


/* Responsive */
@media (max-width: 768px) {
  .navbar,
  .footer {
    flex-direction: column;
    align-items: center;
  }
  .nav-left a,
  .nav-right a {
    display: block;
    margin: 8px 0;
  }
  .product,
  .fam-item {
    width: 90vw;
    height: 90vw;
  }
  .item-block {
    width: 100%;
  }
  .info-bar {
    flex-direction: column;
    text-align: center;
  }
}

@keyframes goldGlow {
  0% {
    text-shadow: 0 0 1px silver, 0 0 3px white, 0 0 5px silver;
  }
  50%{
    text-shadow: 0 0 2px white, 0 0 7px silver, 0 0 10px white;
  }
  100% {
    text-shadow: 0 0 5px silver, 0 0 8px white, 0 0 12px silver;
  }
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

@keyframes fadeInDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@media (max-width: 768px) {
 

 
  .item-block-4 { 
    flex-basis: calc(50% - 15px); 
    max-width: unset;
    min-width: unset; 
  }

  .product, 
  .fam-item { 
    width: 100%;
    padding-bottom: 100%; 
    height: 0; 
  }
}
