/* ========== GLOBAL STYLES ========== */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #000;
  color: #FFD700;
}

h1, h2, h3, h4, h5, h6, p, a, span, label {
  color: #FFD700;
  margin: 0;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ========== NAVBAR ========== */
.navbar {
  background: #000;
  border-bottom: 1px solid #FFD700;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-menu li a {
  font-weight: 500;
  padding: 0.3rem 0.6rem;
  border-bottom: 2px solid transparent;
}

.nav-menu li a:hover {
  border-bottom: 2px solid #FFD700;
}

.cart-icon, .wishlist-icon {
  position: relative;
}

.cart-count, .wishlist-count {
  position: absolute;
  top: -8px;
  right: -12px;
  background: #FFD700;
  color: #000;
  font-size: 0.7rem;
  font-weight: bold;
  border-radius: 50%;
  padding: 2px 6px;
}

/* ========== HAMBURGER ========== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #FFD700;
  margin: 4px 0;
  transition: 0.4s;
}

/* ========== HERO SECTION ========== */
.about-hero {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(to bottom, #000, #111);
}

.about-hero .page-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.about-hero .page-subtitle {
  font-size: 1.2rem;
  color: #fff;
}

/* ========== ABOUT CONTENT ========== */
.about-content {
  padding: 4rem 2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2, .about-text h3 {
  margin-bottom: 1rem;
}

.about-text p {
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.about-text ul {
  list-style: none;
}

.about-text ul li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.about-text ul li i {
  margin-right: 10px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  border: 2px solid #FFD700;
}

/* ========== TEAM SECTION ========== */
.team-section {
  background: #111;
  padding: 4rem 2rem;
  text-align: center;
}

.team-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.team-member {
  background: #000;
  border: 1px solid #FFD700;
  border-radius: 10px;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-6px);
}

.team-member img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2px solid #FFD700;
  margin-bottom: 1rem;
}

.team-member h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.team-member p {
  color: #fff;
  font-size: 0.9rem;
}

/* ========== FOOTER ========== */
.footer {
  background: #000;
  border-top: 1px solid #FFD700;
  padding: 3rem 2rem 1rem;
  margin-top: 3rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-section h3, 
.footer-section h4 {
  margin-bottom: 0.8rem;
}

.footer-section p,
.footer-section a {
  color: #fff;
  font-size: 0.9rem;
}

.footer-section a:hover {
  color: #FFD700;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  border-top: 1px solid #FFD700;
  padding-top: 0.8rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background: #000;
    border-top: 1px solid #FFD700;
    padding: 1rem;
  }
  .nav-menu.active {
    display: flex;
  }
  .hamburger {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}
