/*
Theme Name: BestExpertToHire
Theme URI: https://bestexpertstohire.com
Author: Antigravity
Description: A premium editorial magazine theme and vetted expert directory. Built with Tailwind CSS and Inter / Playfair Display typography.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: bestexperttohire
*/

/* Core Design System Overlays */
.premium-border {
    border-color: rgba(11, 19, 43, 0.08);
}

.hero-gradient {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

/* Custom premium scrollbars */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #F8FAFC;
}

::-webkit-scrollbar-thumb {
    background: #DDE1EB;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00A896;
}

/* Elegant micro-animations */
.hover-lift {
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -10px rgba(11, 19, 43, 0.08);
}

/* Elegant Typography Rules - Set headings to Editorial Serif (Playfair Display / Times New Roman) */
h1, h2, h3, h4, h5, h6,
.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
    font-family: 'Playfair Display', Georgia, Cambria, "Times New Roman", Times, serif !important;
}

