/* Base Styles */
body {
  font-family: "Poppins", sans-serif;
  background-color: #202020;
  color: #ffffff;
  margin: 0;
}

/* Navigation Bar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #2a2a2a;
}

.nav__logo img {
  max-width: 150px;
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.link a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.link a:hover {
  color: #f1f954;
}

.link a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #f1f954;
  transition: width 0.3s ease;
}

.link a:hover::after {
  width: 100%;
}

/* About Section */
.about__gym, .why__gym, .faq__section, .team {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 1.5rem;
  background-color: #2a2a2a;
  border-radius: 10px;
}

h1, h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.team__grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.team__member {
  text-align: center;
  max-width: 250px;
}

.team__member img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  margin-bottom: 1rem;
}

.features {
  display: flex;
  gap: 1.5rem;
  justify-content: space-around;
  flex-wrap: wrap;
}

.feature {
  text-align: center;
  max-width: 300px;
  padding: 1rem;
}

.feature i {
  font-size: 2.5rem;
  color: #f1f954;
  margin-bottom: 1rem;
}

/* Footer */
.footer__content {
  text-align: center;
  padding: 2rem;
  background-color: #2a2a2a;
}

.social__links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social__links a {
  color: #ffffff;
  font-size: 1.5rem;
  transition: color 0.3s, transform 0.3s;
}

.social__links a:hover {
  color: #f1f954;
  transform: scale(1.2);
}
