/* =========================
   FitnessOne80 – THEME (Shared)
   Extracted from landing CSS
   ========================= */

/* 1) Tokens / Variables */
:root {
  --background-dark: #161822;
  --background-light-dark: #1f2230;
  --accent-color: #2b8fdc;
  --text-light: #ffffff;
  --text-medium: #c6c9d5;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* 2) Global base */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-main);
  background-color: var(--background-dark);
  color: var(--text-medium);
  line-height: 1.6;
}

/* 3) Shared layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

/* 4) Shared typography */
h1, h2, h3 {
  color: var(--text-light);
  text-align: center;
  margin: 0 0 20px 0;
  font-weight: 900;
}

h1 { font-size: 3.1em; line-height: 1.15; }
h2 { font-size: 2.4em; }
h3 { font-size: 1.4em; }
p  { margin: 0 0 15px 0; }

/* 5) Shared CTA button (used on landing + can be reused elsewhere) */
.cta-button.modern {
  display: inline-block;
  background-color: var(--accent-color);
  color: #020617;
  padding: 18px 40px;
  font-size: 1.05em;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 22px rgba(43, 143, 220, 0.35);
}

.cta-button.modern.large {
  font-size: 1.1em;
  padding: 18px 40px;
}
