

:root {
    --color-primary: #0F766E; /* Firoozeh */
    --color-secondary: #1E3A8A; /* Lajvard */
    --color-accent: #D97706; /* Gold */
    --bg-pattern: url('../images/pattern.png'); /* Placeholder */
}

body {
    font-family: 'Vazirmatn', sans-serif;
    background-color: #F3F4F6;
}

.font-heading {
    font-family: 'Vazirmatn', sans-serif;
    font-weight: 700;
}

/* Islamic Geometric Pattern Overlay */
.islamic-pattern {
    background-image: radial-gradient(#0F766E 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.05;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: #0F766E; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0D6E66; 
}

/* Primary Button */
.btn-primary {
    background-color: var(--color-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color 0.3s;
    text-decoration: none;
    font-size: 0.875rem; /* text-sm */
    font-weight: 700;
}
.btn-primary:hover {
    background-color: #0D6E66; /* Darker teal */
}

@media (max-width: 768px) {
    .btn-primary {
        width: 100%;
        display: flex;
    }
}
