body {
  background-color: #000000;
  color: #ffffff;
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 50px;
}

.hero {
  position: relative;
  min-height: 80vh;
  margin: -50px -50px 0 -50px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.15) 35%,
    rgba(0, 0, 0, 0.7) 85%,
    #000000 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 30px 20px;
}

.hero-content h1,
.hero-content p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.hero-content .logo {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

nav {
  margin-bottom: 20px;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.55);
  padding: 10px 20px;
  border-radius: 30px;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  margin: 0 15px;
  font-size: 18px;
}

nav a:hover {
  color: #f0178c;
}

.logo {
  display: block;
  width: 150px;
  margin: 0 auto 10px auto;
  border-radius: 12px;
}

h1 {
  color: #f0178c;
  font-size: 48px;
}

.divider {
  width: 80px;
  height: 4px;
  background-color: #f0178c;
  margin: 15px auto 25px auto;
  border-radius: 2px;
}

p {
  font-size: 18px;
  color: #dddddd;
}

.button {
  display: inline-block;
  background-color: #f0178c;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
}

.coaches-graphic {
  width: 100%;
  max-width: 900px;
  border-radius: 16px;
  margin-top: 10px;
}

footer {
  margin-top: 50px;
  font-size: 14px;
  color: #888888;
}

@media (max-width: 600px) {
  body {
    padding: 25px 15px;
  }

  h1 {
    font-size: 32px;
  }

  nav a {
    margin: 0 8px;
    font-size: 16px;
  }

  .hero {
    min-height: 65vh;
    margin: -25px -15px 0 -15px;
  }
}
