li .nav-link {
  color: var(--text-200) !important;
  padding: 0 !important;
}
li .nav-link:hover {
  transition: all 0.3s ease-in-out;
  font-weight: bold;
  color: var(--accent-300) !important;
}
li .active_menu_item, li .text-footer a:hover, .text-footer li a:hover, li .nav-link:hover {
  color: var(--accent-300);
}

/* =============================== */
/* 5. FOOTER Fluid Dark Styles */
/* =============================== */

/* الألوان الرئيسية المستخلصة من الهوية الجديدة */
:root {
    --primary-dark-bg: #1a0a2e; /* خلفية داكنة جداً */
    --primary-accent: #a469ab;  /* لون التمييز البنفسجي */
    --primary-gradient-end: #845adf; /* نهاية التدرج الأساسي */
    --text-color: #fff; /* لون النصوص الرئيسية */
    --link-color: rgba(255, 255, 255, 0.7); /* لون الروابط */
}

/* 1. القسم الأساسي للـ Footer */
.footer-fluid-dark {
    /* دمج لون الخلفية الداكن لتكون جزءاً من الصفحة */
    background: var(--primary-dark-bg);
    color: var(--link-color);
    padding: 80px 0 0 !important;
    position: relative;
    overflow: hidden;
    z-index: 1; /* مهم ليبقى فوق الـ before element */
}

/* إضافة تدرج دائري خفيف للعمق (مستوحى من الـ Hero Section) */
.footer-fluid-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* تدرج دائري خفيف في الزاوية */
    background: radial-gradient(circle at 10% 80%, rgba(164, 105, 171, 0.1) 0%, transparent 60%);
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}

/* 2. ستايل العناوين والنصوص */
.footer-fluid-dark h5 {
    color: var(--text-color);
    font-weight: 700 !important;
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(164, 105, 171, 0.2);
}

.footer-fluid-dark p, .footer-fluid-dark a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.footer-fluid-dark a:hover {
    color: var(--primary-accent);
    transform: translateX(-5px);
}

.footer-fluid-dark .img-fluid {
    max-width: 120px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(164, 105, 171, 0.3));
}

/* 3. أيقونات التواصل الاجتماعي */
.social-icon-fluid {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(164, 105, 171, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-accent);
    font-size: 1.1rem;
    transition: all 0.4s;
    margin: 0 8px;
    text-decoration: none;
    z-index: 1;
}

.social-icon-fluid:hover {
    background: linear-gradient(135deg, var(--primary-accent), var(--primary-gradient-end));
    color: var(--text-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(164, 105, 171, 0.4);
    border-color: var(--primary-accent);
}

/* 4. قسم حقوق النشر */
.footer-copyright {
    background-color: #000; /* شريط أسود نقي في الأسفل للفصل */
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    text-align: center;
    position: relative;
    z-index: 1;
}/*# sourceMappingURL=main.css.map */
