﻿@font-face {
    font-family: 'Noto Kufi Arabic';
    src: url('/fonts/NotoKufiArabic-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
body {
    /* font-family: 'Amiri', serif;*/
    font-family: 'Noto Kufi Arabic', sans-serif;
}

/* Navbar brand spacing */
.navbar-brand img {
    vertical-align: middle;
}

/* Card hover */
.card {
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

/* Sticky footer support via flex in body (layout already uses d-flex flex-column min-vh-100) */
footer {
    border-top: 3px solid #e74c3c;
    font-size: 0.9rem;
}
.navbar .nav-link {
    transition: all 0.2s ease-in-out;
}

    .navbar .nav-link:hover {
        opacity: 0.9;
    }

.dropdown-menu {
    min-width: 230px;
}

.dropdown-item {
    border-radius: 10px;
    margin: 2px 6px;
    transition: all 0.2s ease-in-out;
}

    .dropdown-item:hover {
        background-color: #f8f9fa;
        transform: translateX(-2px);
    }

.dropdown-toggle::after {
    margin-right: .4rem;
}