/* ==========================================================
   Site Custom Styles — Remplace le <style> inline du layout
   ========================================================== */

:root {
    --title-font: 'Tajawal', sans-serif;
    --body-font: 'Tajawal', sans-serif;
}

body, p, span, li, a, div, button, input, textarea, label {
    font-family: 'Tajawal', sans-serif !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.sec-title, .breadcumb-title {
    font-family: 'Tajawal', sans-serif !important;
    font-weight: 700 !important;
}

/* ---- Pagination ---- */
.pagination {
    display: flex !important;
    justify-content: center !important;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
    gap: 10px;
    margin-top: 40px;
}

.page-item .page-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--title-color);
    background-color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff !important;
    background-color: var(--theme-color) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.page-item .page-link:hover {
    z-index: 2;
    color: var(--theme-color);
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

.page-item.disabled .page-link {
    color: #ccc;
    pointer-events: none;
    background-color: #fff;
    opacity: 0.5;
    box-shadow: none;
}

.pagination svg {
    width: 20px;
    height: 20px;
}

.pagination-info {
    display: block;
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #888;
}

/* ---- Spacing ---- */
.breadcumb-title {
    margin-bottom: 10px !important;
}

.content-text-area p:last-child {
    margin-bottom: 0 !important;
}

.space-top {
    padding-top: 80px !important;
}

@media (max-width: 768px) {
    .space-top {
        padding-top: 40px !important;
    }
}

/* ---- Utilities ---- */
.pt-60  { padding-top: 60px !important; }
.pb-100 { padding-bottom: 100px !important; }
.pb-40  { padding-bottom: 40px !important; }
.pb-0   { padding-bottom: 0 !important; }
