/* static/css/typography.css */
/* Typography styles for Deep Being Coaching */

/* Base Typography */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: var(--space-md);
  color: var(--text-dark);
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: 2rem;
  margin-bottom: var(--space-lg);
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 1rem;
}

/* Paragraphs */
p {
  margin-top: 0;
  margin-bottom: var(--space-md);
}

/* Links */
a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover, a:focus {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Lists */
ul, ol {
  margin-top: 0;
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

li {
  margin-bottom: var(--space-sm);
}

/* Blockquotes */
blockquote {
  border-left: 4px solid var(--primary-light);
  padding-left: var(--space-md);
  margin-left: 0;
  margin-right: 0;
  font-style: italic;
  color: var(--text-medium);
}

blockquote p:last-child {
  margin-bottom: 0;
}

/* Code */
code, pre {
  font-family: monospace;
  background-color: var(--bg-light);
  border-radius: var(--radius-sm);
}

code {
  padding: 0.1em 0.3em;
  font-size: 0.9em;
}

pre {
  padding: var(--space-md);
  overflow-x: auto;
  line-height: 1.4;
  margin-bottom: var(--space-md);
}

pre code {
  padding: 0;
  background: none;
}

/* Text Utilities */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-bold {
  font-weight: 600;
}

.text-italic {
  font-style: italic;
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.text-accent {
  color: var(--accent);
}

.text-light {
  color: var(--text-light);
}

.text-white {
  color: var(--text-white);
}

/* Section headings with decoration */
.section-heading {
  position: relative;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-sm);
}

.section-heading:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary);
}

.section-heading.text-center:after {
  left: 50%;
  transform: translateX(-50%);
}