/* =========================================
   MANAL BOOTSTRAP THEME - v2.0
   Light & Elegant Design System
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&family=Tajawal:wght@300;400;500;700&display=swap');

:root {
    /* Brand Colors */
    --bs-primary: #7D5BA6;
    /* Soft Lavender */
    --bs-primary-rgb: 125, 91, 166;
    --bs-secondary: #6c757d;
    /* Muted Gray */
    --bs-light: #f8f9fa;
    /* Off-white */
    --bs-dark: #343a40;
    /* Charcoal */

    /* Fonts */
    --bs-font-sans-serif: 'Cairo', system-ui, -apple-system, sans-serif;
    --bs-body-font-family: 'Cairo', sans-serif;
    --bs-heading-font-family: 'Tajawal', sans-serif;
}

body {
    font-family: var(--bs-body-font-family);
    color: var(--bs-dark);
    line-height: 1.7;
    background-color: #ffffff;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--bs-heading-font-family);
    font-weight: 700;
}

/* Animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Buttons */
.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #6a4c8f;
    border-color: #6a4c8f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(125, 91, 166, 0.3);
}

.btn-outline-primary {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
    border-radius: 50rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: white;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.nav-link {
    font-weight: 600;
    color: var(--bs-dark);
    margin-inline: 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--bs-primary);
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    padding-top: 5rem;
    background: linear-gradient(135deg, #fdfbfd 0%, #f4f0f9 100%);
    position: relative;
    overflow: hidden;
}

.bg-primary-soft {
    background-color: rgba(125, 91, 166, 0.1);
}

/* Cards */
.card {
    transition: all 0.3s ease;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.social-link {
    width: 36px;
    height: 36px;
    background-color: var(--bs-primary);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background-color: #2c2c2c;
    color: white;
    transform: rotate(360deg);
}

/* Utilities */
.text-justify {
    text-align: justify;
}