/* =========================
   FONT FACE
========================= */
@font-face {
    font-family: 'Vazirmatn';
    src: url('../../fonts/fa/Vazirmatn-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('../../fonts/fa/Vazirmatn-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../../fonts/en/poppins-v24-latin-300.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../../fonts/en/poppins-v24-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* =========================
   CSS VARIABLES (THEME)
========================= */
:root {
    --color-black: #1C1C1C;
    --color-cream: #F5F1E9;
    --color-taupe: #A68A74;
    --color-rosegold: #B76E79;

    --font-fa: 'Vazirmatn', sans-serif;
    --font-en: 'Poppins', sans-serif;

    --radius-lg: 1.25rem;
    --radius-md: .75rem;
    --radius-sm: .375rem;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .1);

    --transition: all .3s ease;
}

/* =========================
   BASE STYLES
========================= */
html {
    font-size: 16px;
}

body {
    font-family: var(--font-fa), sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-black);
    background-color: var(--color-cream);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-fa), sans-serif;
    font-weight: 700;
    margin: 0 0 .5rem;
    line-height: 1.3;
}

a {
    color: var(--color-rosegold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-taupe);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* =========================
   UTILITIES
========================= */
.text-muted {
    color: #777;
}