/* 
==============================================
FONT FIX FOR HERO TITLE - VIETNAMESE SUPPORT
==============================================
Priority: Override all existing font declarations
*/

/* Force Playfair Display for hero title */
.hero-title,
.hero-title-main,
.hero-title-accent {
    font-family: 'Playfair Display', 'Times New Roman', Georgia, serif !important;
    letter-spacing: -0.01em !important;
}

/* CSS Variables Override */
:root {
    --font-primary: 'Playfair Display', 'Times New Roman', Georgia, serif !important;
}

/* Direct targeting for any conflicting selectors */
h1.hero-title {
    font-family: 'Playfair Display', 'Times New Roman', Georgia, serif !important;
}

.hero-section .hero-title {
    font-family: 'Playfair Display', 'Times New Roman', Georgia, serif !important;
}

.hero-content .hero-title {
    font-family: 'Playfair Display', 'Times New Roman', Georgia, serif !important;
}

/* Backup fallback fonts that support Vietnamese */
@supports not (font-family: 'Playfair Display') {
    .hero-title {
        font-family: 'Times New Roman', Georgia, 'Roboto', 'Noto Sans', sans-serif !important;
    }
}
