/* Shamia Co-op Website - Custom Styles */

:root {
    --primary: #0A4A8A;
    --primary-light: #1E5FA8;
    --primary-dark: #083A6E;
    --accent: #00A8E8;
    --success: #48BB78;
    --text-primary: #2D3748;
    --text-secondary: #718096;
    --border: #E2E8F0;
    --bg-light: #F7FAFC;
}

/* RTL Support */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .list-disc {
    padding-right: 1.5rem;
    padding-left: 0;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Language toggle active state */
.lang-toggle.active {
    background-color: var(--primary);
    color: white;
}

/* Section anchor offset for fixed header */
section[id] {
    scroll-margin-top: 80px;
}

/* Table styles */
.support-table th {
    background-color: var(--primary);
    color: white;
    padding: 0.75rem 1rem;
    text-align: left;
}

[dir="rtl"] .support-table th {
    text-align: right;
}

.support-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
}

.support-table tr:nth-child(even) {
    background-color: var(--bg-light);
}

/* Card hover effect */
.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(10, 74, 138, 0.15);
}

/* Print styles */
@media print {
    nav, footer, .lang-toggle, .no-print {
        display: none !important;
    }
    body {
        font-size: 12pt;
    }
}
