/*
 * Ambition Dance Productions — Global Stylesheet
 * ───────────────────────────────────────────────
 * Shared across all pages. Page-specific styles live in each HTML file's
 * <style> block. To update sitewide design tokens, backgrounds, containers,
 * typography, buttons, section labels, or the ticker — edit this file only.
 */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,300&family=Work+Sans:wght@300;400;500;600&display=swap');

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── DESIGN TOKENS ── */
:root {
  /* ── Core palette ── */
  --gold:           #c8a96e;
  /* --gold:           #d7d48a;  */
  --gold-dark:      #a8893e;
  --gold-light:     rgba(200, 169, 110, 0.10);
  --gold-border:    rgba(200, 169, 110, 0.25);

  --teal: #8ad7d4;

  /* ── Backgrounds ── */
  --bg:             #0a0a0f;
  --bg-card:        rgba(255, 255, 255, 0.04);
  --bg-card-hover:  rgba(200, 169, 110, 0.04);

  /* ── Borders ── */
  --border:         rgba(255, 255, 255, 0.08);
  --border-gold:    rgba(200, 169, 110, 0.25);  /* alias of --gold-border */

  /* ── Text ── */
  --text-muted:     rgba(255, 255, 255, 0.52);
  --text-faint:     rgba(255, 255, 255, 0.28);

  /* ── Typography ── */
  --font-display:   'Montserrat', sans-serif;
  --font-body:      'Work Sans', sans-serif;
}

/* ── BASE ── */
html, body {
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── BACKGROUND EFFECTS ── */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 169, 110, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 169, 110, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.bg-glow-1 {
  position: fixed;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.09) 0%, transparent 70%);
  top: -200px;
  right: -150px;
  pointer-events: none;
  z-index: 0;
}

.bg-glow-2 {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 111, 212, 0.05) 0%, transparent 70%);
  bottom: 100px;
  left: -100px;
  pointer-events: none;
  z-index: 0;
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  position: relative;
  z-index: 5;
  padding: 24px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb a,
.breadcrumb span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep    { color: rgba(255, 255, 255, 0.12); }
.breadcrumb .current { color: rgba(255, 255, 255, 0.55); }

/* ── EYEBROW ── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── SECTION LABEL (gold rule with line) ── */
.section-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: rgba(200, 169, 110, 0.18);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 2px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  text-decoration: none;
  border: 0.5px solid rgba(255, 255, 255, 0.18);
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}

.btn-text-link::after {
  content: '→';
  color: var(--gold);
}

.btn-text-link:hover { color: #fff; }

/* ── CARD BASE ── */
.card-base {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: 6px;
  transition: border-color 0.18s, background 0.18s, transform 0.18s;
}

.card-base:hover {
  border-color: var(--gold-border);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

/* ── GOLD INFO CARD ── */
.gold-card {
  background: var(--gold-light);
  border: 0.5px solid var(--gold-border);
  border-radius: 6px;
}

/* ── CHECK ITEM (used in lists across pages) ── */
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check-item svg { flex-shrink: 0; margin-top: 1px; }

.check-item span {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
}

/* ── DOT ITEM (used in feature / goal lists) ── */
.dot-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: 4px;
  padding: 13px 16px;
  transition: border-color 0.18s;
}

.dot-item:hover { border-color: var(--gold-border); }

.dot-item .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.dot-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* ── BOTTOM CTA SECTION ── */
.bottom-cta {
  position: relative;
  z-index: 5;
  padding: 72px 0 80px;
  text-align: center;
}

.bottom-cta h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 14px;
}

.bottom-cta h2 em {
  font-style: normal;
  color: var(--teal);
}

.bottom-cta p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── TICKER ── */
.ticker-wrap {
  position: relative;
  z-index: 10;
  background: rgba(200, 169, 110, 0.05);
  border-top: 0.5px solid rgba(200, 169, 110, 0.12);
  padding: 11px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 56px;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  font-family: var(--font-body);
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.ticker-item strong {
  /* color: var(--gold); */
  color: var(--teal);
  font-weight: 600;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

/* ── PAGE HERO (shared hero block pattern) ── */
.page-hero {
  position: relative;
  z-index: 5;
  padding: 48px 0 56px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(38px, 5vw, 62px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 20px;
}

.page-hero h1 em {
  font-style: normal;
  color: var(--teal);
}

.hero-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 28px;
}

/* ── SECTION DIVIDER ── */
.section-block {
  position: relative;
  z-index: 5;
  padding: 64px 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}

/* ── ANIMATION HELPERS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.7s ease both; }
.fade-up-delay { animation: fadeUp 0.7s 0.15s ease both; }

/* ── RESPONSIVE BASE ── */
@media (max-width: 768px) {
  .container { padding: 0 24px; }
}
