
/* ====== Kourtney Brisco Fitness Starter Styles ====== */
:root {
  --primary: #6A0DAD;
  --accent: #C7A008;
  --dark: #1a1a1a;
  --light: #ffffff;
  --muted: #f7f5fb;
  --radius: 14px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; color: var(--dark); background: var(--muted); }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(1100px, 92vw); margin: 0 auto; }

header { position: sticky; top: 0; z-index: 10; background: var(--light); border-bottom: 1px solid #eee; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 14px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: 0.3px; }
.logo-badge { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); display: grid; place-items: center; color: white; font-weight: 800; }
nav ul { display: flex; gap: 18px; padding: 0; margin: 0; list-style: none; }
nav a { padding: 8px 12px; border-radius: 999px; }
nav a.cta { background: var(--primary); color: white; }
nav a.cta:hover { background: #5a0c93; }

.hero { background: radial-gradient(1200px 600px at 80% -10%, rgba(106,13,173,0.18), transparent), #fff; border-bottom: 1px solid #eee; }
.hero-inner { padding: clamp(38px, 8vw, 84px) 0; display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; align-items: center; }
.hero h1 { font-size: clamp(28px, 4.2vw, 56px); margin: 0 0 12px; line-height: 1.05; }
.hero p {
  font-size: clamp(16px, 1.6vw, 20px);
  margin: 0 0 22px;
}
.badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.badge { background: var(--muted); border: 1px solid #eee; border-radius: 999px; padding: 8px 12px; font-size: 14px; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 18px; }
.card { background: white; padding: 18px; border-radius: var(--radius); border: 1px solid #eee; }
.card h3 { margin-top: 8px; }

.section { padding: 44px 0; }
.section .heading { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.section h2 { margin: 0; font-size: clamp(22px, 3vw, 34px); }
.section p.lead { color: #555; }

.cta-box { background: linear-gradient(135deg, rgba(106,13,173,0.08), rgba(199,160,8,0.08)); border: 1px solid #eee; padding: 24px; border-radius: var(--radius); display: grid; gap: 10px; }
.cta-button { display: inline-block; background: var(--accent); color: #111; padding: 12px 18px; border-radius: 12px; font-weight: 700; }
.cta-button:hover { filter: brightness(0.95); }

footer { background: var(--dark); color: #ddd; padding: 28px 0; margin-top: 40px; }
footer a { color: #fff; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 18px; }
.small { font-size: 14px; color: #888; }

img.responsive { width: 100%; height: auto; border-radius: 12px; border: 1px solid #eee; }

.input, textarea { width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid #ddd; }
.button { background: var(--primary); color: white; padding: 12px 18px; border-radius: 10px; border: none; font-weight: 700; cursor: pointer; }
.button.alt { background: var(--accent); color: #111; }
.button:disabled { opacity: 0.6; cursor: not-allowed; }

.kit-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 14px; }
.kit-item { background: white; border: 1px solid #eee; border-radius: 12px; padding: 14px; }
.kit-item h4 { margin: 8px 0; }

@media (max-width: 850px) {
  .hero-inner { grid-template-columns: 1fr; }
}/* ===== Mobile polish ===== */

/* Fluid type & spacing */
:root{
  --step-xs: clamp(12px, 2.5vw, 14px);
  --step-sm: clamp(14px, 3vw, 16px);
  --step-md: clamp(18px, 4vw, 22px);
  --step-lg: clamp(22px, 6vw, 28px);
}
body { font-size: var(--step-sm); line-height: 1.55; }
h1 { font-size: var(--step-lg); line-height: 1.15; }
h2, h3 { font-size: var(--step-md); }

/* Containers & images */
.container { max-width: 1100px; padding-inline: 16px; }
img, iframe, video { max-width: 100%; height: auto; display: block; }

/* Buttons / links */
.button, .cta-button, .cta, button, a.button {
  display:inline-block;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight:700;
  text-align:center;
  min-width: 44px; min-height: 44px; /* thumb-friendly */
}

/* Cards & sections */
.section { padding: 28px 0; }
.card { padding: 18px; border-radius: 14px; }

/* Nav bar baseline */
.nav { gap: 12px; }
.nav ul { display:flex; flex-wrap:wrap; gap: 8px 14px; }

/* Booking iframe: comfortable height on mobile */
iframe { border-radius: 14px; width:100%; height: 70vh; }
@media (max-width: 768px){ iframe { height: 85vh; } }
@media (max-width: 480px){ iframe { height: 90vh; } }

/* ===== Mobile menu (hamburger) ===== */
.mobile-toggle { display:none; }

@media (max-width: 900px){
  .nav { align-items:center; }
  .nav ul { display:none; flex-direction:column; width:100%; padding:12px 0; }
  .nav.open ul { display:flex; }
  .mobile-toggle {
    display:inline-flex; align-items:center; justify-content:center;
    width:44px; height:44px; border-radius:10px; cursor:pointer;
    border:1px solid #e7e7e7; background:#fff;
  }
  .logo a { font-size: var(--step-md); }
}

/* Footer stacks nicely on phones */
@media (max-width: 768px){
  .footer-grid { display:grid; gap:18px; grid-template-columns:1fr; }
}

