/* 🔄 RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* 🖤 BODY */
body {
  background-color: #0d0d0d;
  color: #f5f5f5;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* HEADER */
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 25px 0;
  border-bottom: 1px solid #222;
  background-color: #0d0d0d;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 50px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

nav {
  display: flex;
  justify-content: center;
  gap: 40px;
}

nav a {
  color: #ccc;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #00ff7f;
}

/* HERO */
.banner {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2;
  opacity: 0;
  animation: fadeInUp 1.8s ease-out forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translate(-50%, -40%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}

/* 🛍️ PREORDER SECTION */
/* 🛒 PRODUCT SECTION */
.product-section {
  padding: 80px 40px;
  text-align: center;
  background-color: #0d0d0d;
}

.section-title {
  color: #00ff7f;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 50px;
  letter-spacing: 2px;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  justify-items: center;
}

/* Each product card */
.product {
  background: #111;
  border: 1px solid #222;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Product image size */
.product img {
  width: 100%;
  max-width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.product img:hover {
  transform: scale(1.05);
}

/* Product details */
.product-details {
  margin-top: 15px;
}

.product-name {
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  margin-bottom: 5px;
}

.product-price {
  font-size: 14px;
  color: #00ff7f;
  margin-bottom: 10px;
}

/* Preorder button */
.preorder-btn {
  display: inline-block;
  padding: 8px 20px;
  background-color: #00ff7f;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.preorder-btn:hover {
  background-color: #00cc66;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .product-grid {
    gap: 25px;
  }

  .product img {
    max-width: 180px;
    height: 180px;
  }

  .product-name {
    font-size: 14px;
  }
}

/* 🎥 FIXED FULL VIDEO BACKGROUND FOR ABOUT */
.about {
  position: relative;
  width: 100%;
  min-height: 120vh; /* more height for long text */
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px;
  background: #000; /* fallback if video doesn't load */
}

.about-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140%; /* make video taller than container */
  object-fit: cover;
  transform: translateY(-10%);
  z-index: 1;
  transition: transform 0.3s ease-out;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.85), rgba(0,0,0,0.75));
  z-index: 2;
}

/* 📝 Text Box */
.about-text {
  position: relative;
  z-index: 3;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 60px 40px;
  max-width: 900px;
  text-align: center;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}

/* ✨ Typography + Animation */
.about-text h2 {
  color: #00ff7f;
  font-size: 34px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-text h3 {
  color: #00ff7f;
  text-transform: uppercase;
  margin-top: 25px;
}

.about-text p {
  color: #ddd;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.about-text .quote {
  color: #00ff7f;
  font-style: italic;
  margin: 25px 0;
  font-size: 16px;
}

.about-text .brand-slogan {
  font-weight: bold;
  color: #fff;
  margin-top: 30px;
  font-size: 18px;
}

/* Fade-in animation */
.about-text > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-text > *.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .about {
    min-height: 130vh;
    padding: 80px 20px;
  }
  .about-text {
    padding: 35px 20px;
  }
  .about-text h2 {
    font-size: 26px;
  }
  .about-text p {
    font-size: 14px;
  }
}
/* 📱 CONTACT SECTION */
.contact {
  background-color: #0d0d0d;
  padding: 100px 40px;
  text-align: center;
  border-top: 1px solid #222;
}

.contact h2 {
  color: #00ff7f;
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contact-text {
  color: #ccc;
  font-size: 16px;
  margin-bottom: 40px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 24px;
  border: 1px solid #00ff7f;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.social-link svg {
  transition: transform 0.3s ease;
}

.social-link:hover {
  background-color: #00ff7f;
  color: #000;
}

.social-link:hover svg {
  transform: scale(1.1);
}

/* 🌈 Brand hover styles */
.social-link.instagram:hover {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  color: #fff;
  border-color: transparent;
}

.social-link.tiktok:hover {
  background: linear-gradient(45deg, #25F4EE, #FE2C55);
  color: #fff;
  border-color: transparent;
}

@media (max-width: 600px) {
  .social-links {
    flex-direction: column;
    gap: 20px;
  }
}
/* ✨ Fade-in effect for Contact section */
.contact {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.contact.visible {
  opacity: 1;
  transform: translateY(0);
}





/* FOOTER */
.footer {
  text-align: center;
  padding: 60px 20px;
  border-top: 1px solid #222;
  color: #777;
  font-size: 13px;
}

.footer .admin-link {
  display: block;
  margin-top: 10px;
  color: #555;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}

.footer .admin-link:hover {
  color: #00ff7f;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-text {
    max-width: 90%;
    padding: 25px;
  }
  .about-text h2 { font-size: 26px; }
  .about-text p { font-size: 14px; }
}
/* 🔍 IMAGE POPUP */
.image-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.image-popup.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.popup-img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0, 255, 127, 0.5);
  object-fit: contain;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.image-popup.active .popup-img {
  transform: scale(1);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 35px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
}

.close-btn:hover {
  color: #00ff7f;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
