/*
Theme Name: FaculteDeDroit Child Theme
Theme URI: https://facultededroit.com
Description: Child Theme for Faculté de Droit Maroc
Author: Ismail
Template: kadence
Version: 1.0.0
Text Domain: facultededroit
*/

/* =====================================================
   GLOBAL VARIABLES
===================================================== */

:root{

    --fdd-primary:#1e40af;
    --fdd-primary-light:#3b82f6;

    --fdd-secondary:#0f172a;

    --fdd-bg:#ffffff;
    --fdd-bg-soft:#f8fafc;

    --fdd-border:#e5e7eb;

    --fdd-text:#1f2937;
    --fdd-text-light:#6b7280;

    --fdd-radius:18px;

    --fdd-shadow:
    0 10px 30px rgba(15,23,42,.06);
}

/* =====================================================
   BASE
===================================================== */

html{

    scroll-behavior:smooth;
}

body{

    direction:rtl;

    font-family:
    "Vazirmatn",
    sans-serif;

    color:var(--fdd-text);

    background:var(--fdd-bg);
}

img{

    max-width:100%;

    height:auto;
}

a{

    text-decoration:none;
}

*{

    box-sizing:border-box;
}