/* Global Styles */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header Styles */
header {
  background-color: #dc0a2d;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
}

nav ul {
  list-style-type: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffcdd2;
}

/* Hero Section Styles */
.hero {
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  background-color: #000;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pokeball-1, .pokeball-2, .pokeball-3 {
  width: 150px;
  height: 150px;
  background-image: url('shoppokemon/pokeball-logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  animation: pokeball-float 5s ease-in-out infinite;
}

.pokeball-1 {
  transform: translateX(-50%) translateY(-20%);
}

.pokeball-2 {
  transform: translateX(50%) translateY(20%);
}

.pokeball-3 {
  transform: translateX(-30%) translateY(40%);
}

@keyframes pokeball-float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

/* About Section Styles */
.about {
  padding: 60px 20px;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.about p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px;
}

.store-info {
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.store-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.store-info p {
  margin-bottom: 10px;
}

.store-info ul {
  list-style-type: none;
  padding: 0;
}

.store-info li {
  margin-bottom: 5px;
}

/* Featured Products Section Styles */
.featured-products {
  padding: 60px 20px;
  text-align: center;
}

.featured-products h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
}

.category-item {
  background-color: #f5f5f5;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-item .category-image {
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.category-item .category-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-item h3 {
  font-size: 1.2rem;
  margin: 20px 0 10px;
  cursor: pointer;
}

.category-item .category-details {
  padding: 0 20px 20px;
  display: none;
}

.category-item .category-details ul {
  list-style-type: none;
  padding: 0;
  font-size: 0.9rem;
}

.category-item .category-details li {
  margin-bottom: 5px;
}

@media (max-width: 767px) {
  .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

/* Footer Styles */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer nav ul {
  display: flex;
  gap: 20px;
}

footer nav a {
  font-size: 14px;
  transition: color 0.3s ease;
}

footer nav a:hover {
  color: #ffcdd2;
}
