/*
Theme Name: Forging Stronger People
Theme URI: https://forgingstrongerpeople.com
Author: Forging Stronger People
Author URI: https://forgingstrongerpeople.com
Description: A bold, single-page theme for Forging Stronger People personal training. Fluoro yellow on black, hard and motivational. Built around a full-screen hero with a get-in-touch call to action.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: forging-stronger-people
*/

/* ---------- Brand tokens ---------- */
:root {
  --fsp-yellow: #D9FF00;
  --fsp-yellow-dim: #b8d800;
  --fsp-black: #000000;
  --fsp-near-black: #0a0a0a;
  --fsp-grey: #8a8a8a;
  --fsp-white: #ffffff;
  --fsp-font: "Inter", "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--fsp-font);
  background-color: var(--fsp-black);
  color: var(--fsp-white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: var(--fsp-yellow); text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

/* ---------- Hero ---------- */
.fsp-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6vh 24px;
  background:
    radial-gradient(circle at 50% 38%, rgba(217,255,0,0.10), rgba(0,0,0,0) 55%),
    var(--fsp-black);
  overflow: hidden;
}

/* subtle diagonal motion lines echoing the logo's italic slant */
.fsp-hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(217,255,0,0.04) 0px,
    rgba(217,255,0,0.04) 2px,
    transparent 2px,
    transparent 46px
  );
  pointer-events: none;
}

.fsp-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fsp-rise 0.9s ease-out both;
}

.fsp-hero__logo {
  width: min(340px, 62vw);
  margin-bottom: 36px;
  filter: drop-shadow(0 0 30px rgba(217,255,0,0.25));
}

.fsp-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--fsp-yellow);
  margin: 0 0 18px;
  padding-left: 0.42em;
}

.fsp-hero__title {
  font-size: clamp(2.4rem, 8vw, 5rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 22px;
  font-style: italic;
}

.fsp-hero__title .accent { color: var(--fsp-yellow); }

.fsp-hero__subtitle {
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  color: #d7d7d7;
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 400;
}

/* ---------- CTA button ---------- */
.fsp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--fsp-yellow);
  color: var(--fsp-black);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
  padding: 18px 40px;
  border-radius: 4px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  box-shadow: 0 0 0 rgba(217,255,0,0);
}

.fsp-btn:hover {
  transform: translateY(-2px);
  background: #e6ff33;
  box-shadow: 0 10px 40px rgba(217,255,0,0.35);
}

.fsp-btn:active { transform: translateY(0); }

.fsp-btn__arrow { font-size: 1.15em; line-height: 1; }

/* ---------- Footer strip ---------- */
.fsp-foot {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fsp-grey);
}

.fsp-foot a { color: var(--fsp-grey); transition: color 0.18s ease; }
.fsp-foot a:hover { color: var(--fsp-yellow); }

/* ---------- Motion ---------- */
@keyframes fsp-rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .fsp-hero__inner { animation: none; }
  .fsp-btn { transition: none; }
}

@media (max-width: 480px) {
  .fsp-hero__eyebrow { letter-spacing: 0.3em; }
  .fsp-btn { width: 100%; justify-content: center; }
}
