
/* style.css - Main stylesheet for Fight Factory site */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

/* ---------- Private Training Section ---------- */
#private-training .benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
#private-training .benefit-box {
  background: #f5f5f5;
  padding: 1rem;
  border-radius: 0.5rem;
  line-height: 1.4;
}
#private-training .signature {
  text-align: right;
  font-style: italic;
  margin-top: 1rem;
}

/* ---------- Buttons and Links ---------- */
.button,
a.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 0.25rem;
  transition: background 0.3s ease;
}
.button:hover,
a.button:hover {
  background: #444;
}

/* ---------- Header Navigation ---------- */
.header-nav-list,
.header-menu-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-nav-item a {
  text-decoration: none;
  color: #000;
}
.header-nav-item--active a,
.header-nav-item a:hover {
  color: #007acc;
}

/* ---------- Mobile Menu Overrides ---------- */
@media (max-width: 768px) {
  .benefit-grid {
    grid-template-columns: 1fr;
  }
}


/* Container for consistent page margins */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}
