@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');

body {
    font-family: 'Tajawal', sans-serif;
}

h1,
h2,
h3,
.brand-name {
    font-family: 'Almarai', sans-serif;
}

.hero-title {
    font-size: var(--font-size-hero);
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.2;
}

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    margin-bottom: var(--space-md);
    text-align: center;
}

.subtitle {
    font-size: var(--font-size-xl);
    font-weight: 300;
    color: var(--color-accent);
}

.body-text {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    color: var(--soft-beige);
}

.quote-text {
    font-family: 'Almarai', sans-serif;
    font-size: var(--font-size-2xl);
    font-style: italic;
    font-weight: 700;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.25rem;
    }
}