/* =========================================================
   THE DANCE COLLECTIVE — shared styles
   Palette pulled from the studio's own site: black background,
   electric purple accent, white/gray type, thin outlined buttons,
   uppercase tracked headings, scrolling marquee band.
   Used by both index.html and admin.html.
   ========================================================= */

:root {
  --black: #000000;
  --ink: #0a0a0c;
  --card: #131316;
  --card-2: #1a1a1f;
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);
  --white: #ffffff;
  --dim: rgba(255, 255, 255, 0.68);
  --dimmer: rgba(255, 255, 255, 0.46);
  --purple: #7b3ff2;
  --purple-bright: #9a6bff;
  --purple-dim: rgba(123, 63, 242, 0.16);
  --green: #35d07f;
  --amber: #f2b23f;
  --red: #ef5a5a;
  --radius: 14px;
  --maxw: 880px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
}

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.kicker {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
  margin: 0 0 10px;
}

.eyebrow-purple {
  color: var(--purple-bright);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- marquee band ---------- */
.marquee {
  background: var(--black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
}

.marquee__track {
  display: inline-flex;
  animation: marquee-scroll 22s linear infinite;
}

.marquee__track span {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 22px;
  white-space: nowrap;
}

.marquee__track span::after {
  content: '|';
  margin-left: 22px;
  color: var(--purple-bright);
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
}

.btn:hover { background: var(--white); color: var(--black); }

.btn-solid {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
}

.btn-solid:hover {
  background: var(--purple-bright);
  border-color: var(--purple-bright);
  color: var(--white);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--dim);
  padding: 10px 18px;
  font-size: 11px;
}

.btn-ghost:hover { background: var(--card-2); color: var(--white); }

.btn-block { width: 100%; }

.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn:disabled:hover { background: transparent; color: var(--white); }

/* ---------- form elements ---------- */
label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 8px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="password"],
textarea,
select {
  width: 100%;
  background: var(--card-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.15s ease;
}

input::placeholder, textarea::placeholder { color: var(--dimmer); }

input:focus, textarea:focus, select:focus {
  border-color: var(--purple-bright);
}

textarea { resize: vertical; min-height: 90px; font-family: 'Inter', sans-serif; }

.field { margin-bottom: 18px; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
}

.hint {
  font-size: 12px;
  color: var(--dimmer);
  margin-top: 6px;
}

/* ---------- card ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  text-align: center;
  color: var(--dimmer);
  font-size: 13px;
}

.site-footer strong { color: var(--dim); }

/* ---------- scrollbar niceties (webkit) ---------- */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--line); border-radius: 10px; }
