/*
 * HP-3.css – Diamond Naturals | About Us Section
 *
 * Only styles that CANNOT be reproduced with Tailwind utility classes:
 *  1. Custom font-family declarations (Tailwind requires config for these)
 *  2. Keyframe animation for tab panel fade-in
 */

/* ── Custom fonts ─────────────────────────────────────────── */
.font-cormorant {
    font-family: 'Cormorant Garamond', serif;
}

.font-nunito {
    font-family: 'Nunito', sans-serif;
}

/* ── Tab panel fade-up animation ──────────────────────────── */
.tab-anim {
    animation: fadeUp 0.32s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}