/* Typography System */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Montserrat:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@400;600&display=swap');

/* Base Typography */
body {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-normal);
  color: var(--color-text-primary);
  background-color: var(--color-background);
}

/* Heading Styles */
h1, h2, h3, h4, h5, h6,
.heading-hero,
.heading-1,
.heading-2,
.heading-3,
.heading-4 {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

h1,
.heading-hero {
  font-size: var(--font-size-xxl);
  letter-spacing: var(--letter-spacing-tight);
  margin-bottom: var(--space-lg);
}

h2,
.heading-1 {
  font-size: var(--font-size-xl);
  letter-spacing: var(--letter-spacing-tight);
}

h3,
.heading-2 {
  font-size: var(--font-size-lg);
}

h4,
.heading-3 {
  font-size: var(--font-size-md);
}

h5,
.heading-4 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
}

h6 {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
}

/* Paragraph Styles */
p {
  margin-bottom: var(--space-md);
}

.body-large {
  font-size: var(--font-size-md);
  line-height: var(--line-height-relaxed);
  font-weight: var(--font-weight-light);
}

.body-regular {
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
}

.body-small {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-normal);
}

/* Accent Text */
.text-accent {
  font-family: var(--font-family-accent);
  font-style: italic;
  font-weight: var(--font-weight-regular);
}

.text-uppercase {
  font-family: var(--font-family-secondary);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wider);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);
}

/* Text Colors */
.text-primary {
  color: var(--color-text-primary);
}

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

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

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

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

.text-gold {
  color: var(--color-bourbon-gold);
}

/* Text Alignment */
.text-left {
  text-align: left;
}

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

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

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

a:hover {
  color: var(--color-bourbon-light);
}

a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Strong & Emphasis */
strong, b {
  font-weight: var(--font-weight-bold);
}

em, i {
  font-style: italic;
}

/* Blockquote */
blockquote {
  font-family: var(--font-family-accent);
  font-size: var(--font-size-lg);
  font-style: italic;
  color: var(--color-bourbon-medium);
  border-left: 4px solid var(--color-bourbon-gold);
  padding-left: var(--space-lg);
  margin: var(--space-xl) 0;
}

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

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

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

/* Horizontal Rule */
hr {
  border: none;
  border-top: var(--border-width-thin) solid var(--color-gray-light);
  margin: var(--space-xl) 0;
}
