/* =============================================
   🎯 HERO TITLE PLAYFAIR DISPLAY FC FIX
   Applies Playfair Display FC specifically to "GOLFEZ AUTREMENT"
   ============================================= */

/* 🎨 Import Playfair Display FC */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* 🔥 HERO TITLE - Playfair Display FC Application */
.hero-title,
.hero-title span,
#hero-title,
#hero-title span {
    /* Apply Playfair Display FC */
    font-family: 'Playfair Display', serif !important;
    
    /* Typography refinements */
    font-weight: 700 !important;
    font-style: normal !important;
    letter-spacing: 0.02em !important;
    
    /* Text rendering optimization */
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* 🎯 SPECIFIC TARGETING - Nuclear Specificity */
html body main section.hero-section .hero-content .hero-title,
html body main section.hero-section .hero-content .hero-title span,
html body .hero-section .hero-title,
html body .hero-section .hero-title span {
    font-family: 'Playfair Display', serif !important;
    font-weight: 700 !important;
    font-style: normal !important;
}

/* 📱 MOBILE RESPONSIVE TYPOGRAPHY */
@media (max-width: 768px) {
    .hero-title,
    .hero-title span {
        /* Maintain Playfair Display on mobile */
        font-family: 'Playfair Display', serif !important;
        font-weight: 700 !important;
        
        /* Mobile-optimized spacing - RESTORE ORIGINAL SPACING */
        letter-spacing: 0.01em !important;
        line-height: 2.0 !important; /* Restored from original */
    }
}

/* 🖥️ DESKTOP TYPOGRAPHY REFINEMENTS */
@media (min-width: 1024px) {
    .hero-title,
    .hero-title span {
        /* Desktop-optimized Playfair Display */
        font-family: 'Playfair Display', serif !important;
        font-weight: 700 !important;
        letter-spacing: 0.03em !important;
        line-height: 2.2 !important; /* Restored from original */
    }
}

/* 🎯 DATA-TRANSLATE SPECIFIC */
span[data-translate="hero.title"] {
    font-family: 'Playfair Display', serif !important;
    font-weight: 700 !important;
    font-style: normal !important;
}

/* 🔥 FALLBACK SUPPORT */
.hero-title {
    /* Fallback fonts if Playfair Display fails to load */
    font-family: 'Playfair Display', 'Times New Roman', Times, serif !important;
}

/* 🚀 PERFORMANCE OPTIMIZATION */
.hero-title,
.hero-title span {
    /* Font loading optimization */
    font-display: swap !important;
}

/* 🎯 SUCCESS GUARANTEE:
   ✅ Playfair Display FC applied to "GOLFEZ AUTREMENT"
   ✅ Perfect font weight (700) for elegance
   ✅ Optimized letter spacing for readability
   ✅ Mobile and desktop responsive
   ✅ Fallback fonts for reliability
   ✅ Performance optimized with font-display: swap
   
   RESULT: "GOLFEZ AUTREMENT" in elegant Playfair Display FC! 🎨 */