/* =============================================================
   WONDERLAND CREATIVE INDUSTRIES — BASE STYLES
   Global typography, colors, and element defaults.
   ============================================================= */

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  color: var(--color-text-primary);
  background-color: var(--color-bg-base);
  line-height: var(--leading-normal);
}

/* -----------------------------------------------------------
   TYPOGRAPHY
----------------------------------------------------------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: var(--weight-regular);
  line-height: var(--leading-tight);
  letter-spacing: -0.01em;
}

h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
}

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl));
  font-weight: var(--weight-regular);
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 4.5vw, var(--text-5xl));
  font-weight: var(--weight-regular);
  line-height: var(--leading-tight);
  letter-spacing: -0.015em;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  font-weight: var(--weight-regular);
  line-height: var(--leading-snug);
  letter-spacing: -0.01em;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
  font-weight: var(--weight-regular);
  line-height: var(--leading-snug);
  letter-spacing: -0.01em;
  color: var(--color-text-primary);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 600px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
}

p {
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

strong, b {
  font-weight: var(--weight-semibold);
  color: var(--color-text-primary);
}

/* -----------------------------------------------------------
   LINKS
----------------------------------------------------------- */

a.link {
  color: var(--color-text-accent);
  border-bottom: 1px solid var(--color-accent-border);
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

a.link:hover {
  color: var(--color-accent-light);
  border-color: var(--color-accent);
}

/* -----------------------------------------------------------
   SELECTION
----------------------------------------------------------- */

::selection {
  background: var(--color-accent-dim);
  color: var(--color-text-primary);
}

/* -----------------------------------------------------------
   SCROLLBAR
----------------------------------------------------------- */

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-base);
}

::-webkit-scrollbar-thumb {
  background: var(--color-border-light);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-muted);
}

/* -----------------------------------------------------------
   DIVIDER
----------------------------------------------------------- */

.divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: var(--space-8) 0;
}

/* -----------------------------------------------------------
   UTILITY CLASSES
----------------------------------------------------------- */

.text-accent    { color: var(--color-text-accent); }
.text-muted     { color: var(--color-text-muted); }
.text-secondary { color: var(--color-text-secondary); }
.text-center    { text-align: center; }
.text-left      { text-align: left; }
.text-right     { text-align: right; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.no-scroll {
  overflow: hidden;
}
