/* Custom Colors and Backgrounds */

/* تغيير لون الخلفية الرمادية */
.bg-light {
    background-color: #f8f9fa !important; /* يمكنك تغيير هذا اللون */
}

/* تخصيص قسم Hero */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
}

/* تخصيص خلفية الأقسام */
.section-bg {
    background-color: #ffffff; /* يمكنك تغيير هذا اللون */
}

/* تخصيص خلفية البطاقات */
.card {
    background-color: #ffffff;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* تخصيص خلفية النافبار */
.navbar {
    background-color: #ffffff !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* تخصيص خلفية الفوتر */
.footer {
    background-color: #2c3e50;
    color: #ffffff;
}

/* تخصيص الألوان الرئيسية */
:root {
    --primary-color: #3498db;    /* اللون الرئيسي */
    --secondary-color: #2ecc71;  /* اللون الثانوي */
    --accent-color: #e74c3c;     /* لون التأكيد */
    --text-color: #2c3e50;       /* لون النص */
    --light-bg: #f8f9fa;         /* لون الخلفية الفاتح */
    --dark-bg: #2c3e50;          /* لون الخلفية الداكن */
}
