body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #000;
  color: white;
}

nav {
  background-color: #751111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
}

.logo {
  font-weight: bold;
  font-size: 24px;
  color: white;
  text-decoration: none; /* Remove underline */
}


nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.join-btn {
  background-color: #f00;
  color: white;
  padding: 10px 20px;
  border: none;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none; /* make link text look like button */
}


.title {
  text-align: center;
  margin: 40px 0 20px;
  font-size: 32px;
}

.trainer-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  flex-wrap: wrap;
}

.trainer-card {
  background-color: #111;
  padding: 20px;
  border-radius: 12px;
  width: 280px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.trainer-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.trainer-card h3 {
  font-size: 20px;
  margin: 10px 0 5px;
}

.trainer-card {
  background-color: #222;
  color: white;
  border-radius: 12px;
  padding: 20px;
  text-align: center; /* Ensures all content including button is centered */
  width: 300px;
  margin: 20px;
}

.trainer-card img {
  width: 100%;
  height: 250px;           /* Fixed height */
  object-fit: cover;       /* Crop and fill area */
  border-radius: 8px;
  margin-bottom: 10px;
}




