/* ============================================================
   Luxury Typography — Arusha Excursions
   Pairs an elegant serif italic accent with the site's existing
   "Outfit" sans-serif for a premium, editorial heading style.
   Usage: wrap the word(s) you want emphasized in
   <span class="text-accent-serif"> (light text, dark backgrounds)
   or <span class="text-accent-serif-dark"> (dark text, light backgrounds).
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,500;1,600&display=swap");

.text-accent-serif,
.text-accent-serif-dark {
    font-family: "Playfair Display", "Outfit", serif;
    font-style: italic;
    font-weight: 500;
}

.text-accent-serif {
    color: inherit;
}

.text-accent-serif-dark {
    color: var(--bs-primary, #0d3034);
}
