/* /public/css/unified.css */

/* --- Font Imports --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700;800;900&display=swap');

/* --- Base Styles & Overrides --- */
body { 
    font-family: 'Inter', sans-serif; 
    color: #1F2937; /* slate-800 */
    background-color: #F9FAFB; /* gray-50 */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* NUCLEAR CONTRAST OVERRIDES */
/* Ensures high readability for body text */
p, li, span, div { 
    color: #374151; /* gray-700 */
} 

/* Ensures high impact for all headings */
h1, h2, h3, h4, h5, h6 { 
    color: #1A2B44 !important; /* hlomo-blue */
    font-family: 'Playfair Display', serif;
} 

/* --- Article Typography (`.prose` class) --- */
.prose p { 
    margin-bottom: 1.5em; 
    line-height: 1.8; 
    font-size: 1.125rem; 
}
.prose h2 { 
    margin-top: 2em; 
    margin-bottom: 1em; 
}
.prose blockquote { 
    border-left: 4px solid #F97316; /* hlomo-orange */
    padding-left: 1rem; 
    font-style: italic; 
    color: #4B5563; /* gray-600 */
    margin: 2rem 0; 
}
.prose ul { 
    margin: 1.5em 0; 
    list-style-position: inside;
}
.prose li { 
    margin-bottom: 0.75em; 
}

/* --- Component Styles --- */

/* Header */
.header-main {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    border-bottom: 1px solid #e5e7eb; /* gray-200 */
}

/* Footer */
.footer-main {
    background-color: #1A2B44; /* hlomo-blue */
}
.footer-main p, .footer-main a, .footer-main span { 
    color: #E5E7EB !important; /* gray-200 */
}
.footer-main a:hover {
    color: #F97316 !important; /* hlomo-orange */
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 700;
    text-align: center;
    border-radius: 9999px; /* pill shape */
    transition: background-color 0.3s;
    padding: 0.75rem 1.5rem;
}
.btn-primary {
    background-color: #1A2B44; /* hlomo-blue */
    color: white;
}
.btn-primary:hover {
    background-color: #314058;
}
.btn-secondary {
    background-color: #F97316; /* hlomo-orange */
    color: white;
}
.btn-secondary:hover {
    background-color: #dd6b1d;
}

/* Bro Animation */
.bro-fab { 
    animation: float 3s ease-in-out infinite; 
}
@keyframes float { 
    0% { transform: translateY(0px); } 
    50% { transform: translateY(-10px); } 
    100% { transform: translateY(0px); } 
}
