/* ===== GLOBAL RESET ===== */
html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

/* Flex container with three regions: left (logo), center (links), right (icons) */
.nav-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* Left | Center | Right */
  align-items: center;
  padding: 1rem 5%;
}

/* LEFT: Logo area */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 45px;
}

.nav-text-logo {
  height: 25px;
}

/* CENTER: Navigation links */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  position: relative;
  transition: 0.3s ease;
  font-family: "Times New Roman", Times, serif;
}

.nav-links a:hover {
  color: #ffea00;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ffea00, #ff00cc);
  border-radius: 3px;
}

/* RIGHT: Icons */
.nav-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3.5rem;
    padding-right: 0.5rem; /* slight right margin for balance */

}

.nav-icons i {
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-icons i:hover {
  color: #ffea00;
  text-shadow: 0 0 8px #ffea00;
}

/* ===== STORE PAGE MOBILE NAVBAR FIX ===== */
@media (max-width: 768px) {
  header.navbar {
    background: #000 !important;
    backdrop-filter: none !important;
    border-bottom: none !important;
    width: 100%;
  }

  .nav-container {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 1rem 0 !important;
    gap: 0.3rem !important;
  }

  /* Logo + Brand stacked */
  .logo {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin-bottom: 0.3rem !important;
  }

  .logo img {
    height: 40px !important;
    width: auto !important;
  }

  .nav-text-logo {
    height: 22px !important;
    margin-top: 4px !important;
  }

  /* Center Nav Links */
  .nav-links {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 2.5rem !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
  }

  .nav-links a {
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    color: #fff !important;
    text-decoration: none !important;
    text-align: center !important;
    position: relative !important;
    transition: 0.3s ease !important;
  }

  .nav-links a:hover {
    color: #ffea00 !important;
  }

  .nav-links a.active::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    bottom: -5px !important;
    width: 100% !important;
    height: 3px !important;
    background: linear-gradient(90deg, #ffea00, #ff00cc) !important;
    border-radius: 3px !important;
  }

  /* Center Icons below links */
  .nav-icons {
    display: flex !important;
    justify-content: center !important;
    margin-top: 0.6rem !important;
  }

  .nav-icons .icons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 1.6rem !important;
  }

  .nav-icons .icon-link {
    color: #fff !important;
    font-size: 1.3rem !important;
    transition: color 0.3s ease !important;
  }

  .nav-icons .icon-link:hover {
    color: #ffea00 !important;
  }
}


/* ===== STORE HERO SECTION ===== */
.store-hero {
  background: linear-gradient(to bottom right, rgba(255, 0, 100, 0.25), rgba(0, 0, 0, 0.9)),
              url('https://source.unsplash.com/1600x900/?boxing,gym,fight') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 160px; /* pushes below navbar on desktop */
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative;
  z-index: 1;
}

.store-content {
  max-width: 900px;
  margin: auto;
  z-index: 2;
}

.icon-box i {
  font-size: 3.5rem;
  color: #ff1e1e;
  margin-bottom: 1rem;
}

.store-title {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.store-title span {
  background: linear-gradient(90deg, #ff0000, #ff9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.store-text {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.store-text .highlight {
  color: #ff5757;
  font-weight: 600;
}

/* ===== NOTIFY FORM ===== */
.notify-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.notify-form input {
  padding: 0.8rem 1rem;
  border: none;
  outline: none;
  border-radius: 6px;
  background: #111;
  color: #fff;
  width: 260px;
}

.notify-form button {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 6px;
  background: linear-gradient(90deg, #ffea00, #ff0066);
  color: #000;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.notify-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px #ff0066, 0 0 20px #ffea00;
}

/* ===== STORE CARDS ===== */
.store-cards {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.card {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  width: 260px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #ff0066;
  box-shadow: 0 0 15px rgba(255,0,102,0.4);
}

.card i {
  font-size: 2rem;
  color: #ff1e1e;
  margin-bottom: 1rem;
}

.card h3 {
  margin: 0;
  font-size: 1.3rem;
  color: #fff;
}

.card p {
  font-size: 0.9rem;
  color: #bbb;
}

/* ===== MOBILE FIXES ===== */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    gap: 0.3rem;
  }

  .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .logo img {
    height: 40px;
  }

  .nav-text-logo {
    height: 22px;
    margin-top: 4px;
  }

  .nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .store-hero {
    padding-top: 200px; /* pushes hero lower on mobile */
  }

  .store-title {
    font-size: 2.4rem;
  }

  .icon-box i {
    font-size: 3rem;
  }
}




