/* path: static/css/style.css */

/* Import Persian Font */
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100;300;400;500;700;900&display=swap');

:root {
    --primary-gold: #d97706; /* Amber 600 */
    --dark-navy: #0f172a;    /* Slate 900 */
}

body {
    font-family: 'Vazirmatn', sans-serif;
    background-color: #f8fafc;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold);
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.5;
}

/* Card Hover Effects */
.service-card {
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-gold);
}

/* Hero Overlay Gradient */
.hero-overlay {
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.6));
}

/* Blog Content Styling */
.blog-content p {
    margin-bottom: 1.5rem;
    line-height: 2;
    color: #334155;
    font-size: 1.1rem;
    text-align: justify;
}
.blog-content h3 {
    color: var(--dark-navy);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-right: 4px solid var(--primary-gold);
    padding-right: 1rem;
}
.blog-content img {
    border-radius: 0.5rem;
    margin: 2rem 0;
    width: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}