/* 
  Global Styles & Resets 
*/

body {
  font-family: var(--mah-font-body);
  color: var(--mah-text-body);
  background-color: var(--mah-bg-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--mah-font-heading);
  color: var(--mah-text-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

a {
  color: var(--mah-secondary);
  text-decoration: none;
  transition: all var(--mah-transition-fast);
}

a:hover {
  color: var(--mah-primary);
}

img {
  max-width: 100%;
  height: auto;
}

/* Typography Utilities */
.text-primary-brand { color: var(--mah-primary) !important; }
.text-secondary-brand { color: var(--mah-secondary) !important; }
.text-accent { color: var(--mah-accent) !important; }

/* Background Utilities */
.bg-primary-brand { background-color: var(--mah-primary) !important; }
.bg-secondary-brand { background-color: var(--mah-secondary) !important; }
.bg-surface { background-color: var(--mah-surface) !important; }
.bg-light-blue { background-color: #f0f7ff !important; }

/* Spacing */
section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--mah-text-body);
  margin-bottom: 3rem;
  max-width: 600px;
}
