/**
 * Default Theme CSS
 * القالب الافتراضي - نظام الألوان الأخضر
 */

:root {
    --theme-primary: #203526;
    --theme-secondary: #51ba74;
    --theme-accent: #3498db;
    --theme-success: #10b981;
    --theme-warning: #f59e0b;
    --theme-danger: #ef4444;
    --theme-info: #3b82f6;
}

/* Primary Color Overrides */
.theme-bg-primary {
    background-color: var(--theme-primary) !important;
}

.theme-text-primary {
    color: var(--theme-primary) !important;
}

.theme-border-primary {
    border-color: var(--theme-primary) !important;
}

/* Hover Effects */
.theme-hover\:bg-primary:hover {
    background-color: var(--theme-primary) !important;
}

.theme-hover\:text-primary:hover {
    color: var(--theme-primary) !important;
}

/* Buttons */
.btn-theme-primary {
    background-color: var(--theme-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.btn-theme-primary:hover {
    background-color: #2d4a38;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-theme-secondary {
    background-color: var(--theme-secondary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.btn-theme-secondary:hover {
    background-color: #45a565;
    transform: translateY(-2px);
}

/* Cards */
.theme-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.theme-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* Dark Mode Support */
.dark .theme-card {
    background: #1f2937;
}

/* Header Styles */
.theme-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.dark .theme-header {
    background: rgba(31, 41, 55, 0.95);
    border-bottom-color: rgba(75, 85, 99, 0.5);
}

/* Footer Styles */
.theme-footer {
    background: var(--theme-primary);
    color: white;
}

.theme-footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s;
}

.theme-footer a:hover {
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.theme-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .btn-theme-primary,
    .btn-theme-secondary {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
}

