/* Typography Styles */

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
    line-height: 1.2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.section-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.3;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.lead {
    font-size: 1.2rem;
    font-weight: 400;
}

.greeting {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-primary);
}

/* Responsive Typography */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.4rem;
    }

    .brand-text {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }
}