/* ====================================
   Typography
   ==================================== */

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-white-primary);
    margin-bottom: var(--space-md);
}

h1 {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
}

h2 {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
}

h3 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-semibold);
}

h4 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
}

h5 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-medium);
}

h6 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
}

/* Display Text */
.display-text {
    font-family: var(--font-display);
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-extrabold);
    line-height: var(--line-height-tight);
    color: var(--color-gold-primary);
}

/* Body Text */
p {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
}

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

.text-large {
    font-size: var(--font-size-lg);
}

.text-small {
    font-size: var(--font-size-sm);
}

.text-xs {
    font-size: var(--font-size-xs);
}

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

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

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

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

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

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

/* Font Weights */
.font-light {
    font-weight: var(--font-weight-light);
}

.font-normal {
    font-weight: var(--font-weight-normal);
}

.font-medium {
    font-weight: var(--font-weight-medium);
}

.font-semibold {
    font-weight: var(--font-weight-semibold);
}

.font-bold {
    font-weight: var(--font-weight-bold);
}

/* Special Typography */
.elegant-text {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--color-gold-light);
}

.accent-text {
    color: var(--color-gold-primary);
    font-weight: var(--font-weight-semibold);
}

/* Links */
a.link {
    color: var(--color-gold-primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: all var(--transition-fast);
}

a.link:hover {
    color: var(--color-gold-light);
    text-decoration-thickness: 2px;
}

/* Quotes */
blockquote {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-style: italic;
    color: var(--color-gold-light);
    border-left: 4px solid var(--color-gold-primary);
    padding-left: var(--space-lg);
    margin: var(--space-xl) 0;
}

/* Price Typography */
.price {
    font-family: var(--font-body);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--color-gold-primary);
}

.price-large {
    font-size: var(--font-size-2xl);
}

/* Label Typography */
.label {
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold-primary);
}
