﻿/* إعدادات الخطوط والاتجاه العام */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap');

:root {
    --brand-dark: #0f172a; /* أزرق نيلي داكن جداً وعميق (Oxford Blue) للمظهر الفخم */
    --brand-secondary: #475569; /* رمادي مائل للأزرق (Slate Blue) للنصوص الفرعية */
    --brand-accent: #2563eb; /* أزرق هندسي حيوي واحترافي (Royal Blue) للأزرار والروابط النشطة */
    --brand-light: #f8fafc; /* أبيض ثلجي مريح جداً للعين كخلفية */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--brand-light);
    color: var(--brand-dark);
    overflow-x: hidden;
}

/* تخصيص القائمة العلوية (Navbar) */
.front-navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.front-nav-link {
    color: var(--brand-secondary) !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: var(--transition-smooth);
    border-bottom: 2px solid transparent;
}

    .front-nav-link:hover, .front-nav-link.active {
        color: var(--brand-accent) !important;
        border-bottom-color: var(--brand-accent);
    }

/* أزرار مخصصة احترافية (Flat & Elegant) */
.btn-brand-dark {
    background-color: var(--brand-dark);
    color: #ffffff;
    font-weight: 600;
    border: none;
    transition: var(--transition-smooth);
}

    .btn-brand-dark:hover {
        background-color: var(--brand-accent);
        color: #ffffff;
        transform: translateY(-1px);
    }

.btn-brand-outline {
    border: 2px solid var(--brand-dark);
    color: var(--brand-dark);
    font-weight: 600;
    transition: var(--transition-smooth);
}

    .btn-brand-outline:hover {
        background-color: var(--brand-dark);
        color: #ffffff;
    }

/* تذييل الصفحة (Footer) */
.front-footer {
    background-color: var(--brand-dark);
    color: #e2e8f0;
    padding: 4rem 0 2rem 0;
}

    .front-footer a {
        color: #94a3b8;
        text-decoration: none;
        transition: var(--transition-smooth);
    }

        .front-footer a:hover {
            color: #ffffff;
            padding-right: 4px; /* تأثير إزاحة بسيط عند التمرير بالعربية */
        }
