/*
Theme Name: Clavera Saudi
Theme URI: https://claverahome.com
Author: Clavera Saudi
Author URI: https://claverahome.com
Description: A custom WordPress theme for Clavera Saudi Group - Automotive care and real estate services
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: clavera-saudi
*/

/* Theme Color Variables */
:root {
    --primary-color: #0e1f31;
    --secondary-color: #738697;
    --text-color: #333;
    --light-bg: #f8f9fa;
}

/* Global Styles */
body {
    font-family: 'Tajawal', sans-serif;
    color: var(--text-color);
    direction: rtl;
}

/* RTL Support for Bootstrap */
.navbar-nav {
    flex-direction: row;
}

/* Custom Animations */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth Transitions */
a, button, .btn {
    transition: all 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

