
.gym-info {
  background-color: #0f0f0f;
  color: white;
  padding: 100px 80px;
  text-align: left;
  animation: fadeIn 0.8s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0f0f0f;
  font-family: 'Inter', sans-serif;
  color: white;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.navbar a.active {
  color: #00ff99;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #ccff00;
}

.gym-info h2 {
  color: #ccff00;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.gym-info p {
  max-width: 800px;
  margin-bottom: 40px;
  line-height: 1.6;
  font-size: 1rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.info-box {
  background-color: #1e1e1e;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.info-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(204, 255, 0, 0.2);
}

.tips h3 {
  color: #ccff00;
  margin-bottom: 15px;
}

.tips ul {
  list-style: none;
  padding-left: 0;
}

.tips li {
  margin-bottom: 10px;
  font-size: 1rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

