.main-content,
.main-content.container-fluid {
  max-width: 100%;
  padding: 0;
}

body {
  margin: 0;
  background: #0a0a0a;
  color: #fff;
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

footer.footer-min {
  display: none;
}

.fitness-page {
  position: relative;
  min-height: 100vh;
  padding: 26px 48px 80px;
  background-color: #0e0e0e;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 0.7) 100%),
    linear-gradient(120deg, #2a2a2a 0%, #0e0e0e 55%, #161616 100%);
  overflow: hidden;
}

.fitness-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.45)),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.015) 0,
      rgba(255, 255, 255, 0.015) 2px,
      rgba(0, 0, 0, 0) 2px,
      rgba(0, 0, 0, 0) 6px
    );
  pointer-events: none;
}

.top-nav,
.fitness-content {
  position: relative;
  z-index: 2;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  color: #fff;
  text-decoration: none;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.menu-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.menu-links a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
}

.menu-links a:hover {
  color: #ff5a1f;
}

.menu-links a.active {
  color: #ff4d17;
}

.fitness-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: calc(100vh - 120px);
  max-width: 620px;
}

.fitness-label {
  margin: 0 0 12px;
  color: #ff4d17;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.fitness-content h1 {
  margin: 0 0 28px;
  font-size: clamp(3.6rem, 9vw, 8rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  color: #ffffff;
}

.fitness-sub {
  margin: 0 0 40px;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: #ff4d17;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 22px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.74rem;
  border: 1px solid #ff4d17;
  transition: all 0.2s ease;
}

.cta-button:hover {
  color: #ff4d17;
  background: transparent;
  text-decoration: none;
}

@media (max-width: 900px) {
  .fitness-page {
    padding: 22px 24px 60px;
  }

  .menu-links {
    gap: 14px;
  }
}
