body{
    font-family: "Open Sans", sans-serif;
    background-color: #1b1b25;
    color: white;
}

h1{
  font-family: "Oswald", sans-serif;
  
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  color: #00aaff;
  text-decoration: none;
}

.logo svg {
  filter: drop-shadow(0 0 8px #00aaff);
}

/* Nav bar */
.main-nav {
  background: #111;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
}

.logo {
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

/* menu */
.navigation-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.navigation-menu a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.navigation-menu a:hover,
.navigation-menu a.active {
  color: #ffbf00;
}

/* dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #222;
  list-style: none;
  padding: 0;
  margin: auto;
  border-radius: 8px;
  min-width: 150px;
  z-index: 1100;
  transform: translate(-30px);
}

nav .dropdown-menu{
    left: 0;
    right: auto;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
}

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

/* Prevent parent containers from clipping dropdowns */
.main-nav, .nav-container, .outfit-page {
  overflow: visible !important;
}

/* mobile toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .navigation-menu {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
  }

  .navigation-menu.show-menu {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    background: #222;
    margin-top: 10px;
  }

  .dropdown:hover .dropdown-menu {
    display: none; /* disable hover on mobile */
  }

  .dropdown > a::after {
    content: "▼";
    margin-left: 8px;
  }

  .dropdown > a {
    display: block;
  }

  #shop-items {
    width: 80%;
    margin: auto;
    
  }

  
}

/* homepage */
.hero-section {
  position: relative;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(5px) brightness(0.6);
  z-index: -1;
}

.hero-overlay {
  z-index: 2;
  font-size: 3rem;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  margin: 0;
}

.hero-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

/* Cards Section */
.cards-section {
  padding: 60px 5%;
  display: flex;
  justify-content: center;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.cards-container a {
  text-decoration: none;
}

.card {
  background: rgba(0, 170, 255, 0.2);
  backdrop-filter: blur(6px);
  border-radius: 15px;
  padding: 2rem;
  width: 200px;
  min-width: 150px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: white;
}

.card a {
  text-decoration: none;
}

.card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 170, 255, 0.3);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .cards-container {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }
  .card {
    width: 140px;
    padding: 1rem;
  }
}

.footer-content{
    background: #1d1b25;
    font-family: "Kanit", sans-serif;
    height: 100px;
    width: 100%;
    margin-top: 5rem;
}

.footer-content p{
    text-align: center;
    color: rgb(255, 255, 255);
    line-height: 40px;
    font-weight: bold;
}

.heading-container {
  text-align: center;
  padding: 40px;
}

#searchInput {
  width: 80%;
  max-width: 400px;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 2px solid #333;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.shop-item:hover {
  transform: scale(1.05);
}

.shop-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #111;
    color: white;
    border-radius: 12px;
    padding: 12px;
    margin: 10px;
    width: 200px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
}

.shop-item img {
    width: 120px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 8px;
}

#shop-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.price-container {
  display: inline-flex;
  align-items: center;
  gap: 5px; /* spacing between icon and number */
}

.shop-item .price-container .vbuck-icon {
    width: 40%;
    height: 40%;
    object-fit: contain; /* ensures the image scales correctly */
    margin-top: 6px;
}

.stats-section {
  padding-bottom: 8rem;
}
