/* Global Styles */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #0a1931;
  color: #f5f5f5;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1000;
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  font-size: 1rem;
  color: #ffffff;
  transition: color 0.2s ease;
}

.nav-links li a:hover {
  color: #00aaff;
}

/* Hero Section */
.hero {
  background: linear-gradient(
      rgba(10, 25, 49, 0.8),
      rgba(10, 25, 49, 0.8)
    ),
    url('assets/jersey_set.png') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  background: #00aaff;
  color: #ffffff;
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #0077c8;
}

/* Sections */
section {
  padding: 4rem 2rem;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #ffffff;
}

/* Categories */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #001f3f;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.category-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-info {
  padding: 1rem;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  position: absolute;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: #001f3f;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-info {
  padding: 1rem;
}

.product-info h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.product-info p {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  color: #b0c4de;
}

.price {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.btn-secondary {
  background: #00aaff;
  color: #ffffff;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-secondary:hover {
  background: #0077c8;
}

/* Contact Section */
.contact-section {
  background: #001f3f;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  color: #0a1931;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px #00aaff;
}

/* Footer */
.footer {
  background: #001f3f;
  color: #b0c4de;
  text-align: center;
  padding: 1rem;
}