@font-face {
    font-family: 'Cairo';
    src: url('/assets/fonts/Cairo/static/Cairo-Regular.ttf') format('truetype');
    font-weight: 400;
}
  
@font-face {
    font-family: 'Cairo';
    src: url('/assets/fonts/Cairo/static/Cairo-Bold.ttf') format('truetype');
    font-weight: 700;
}
  
@font-face {
    font-family: 'Saira';
    src: url('/assets/fonts/Saira/static/Saira-Regular.ttf') format('truetype');
    font-weight: 400;
}
  
@font-face {
    font-family: 'Saira';
    src: url('/assets/fonts/Saira/static/Saira-Bold.ttf') format('truetype');
    font-weight: 700;
}



:root {
    --header: 70px;
    --sidebar: 15rem;
    --padding: 8rem;
    --padding-m: 2rem;
  
    --primary-color: #0077b6;
    --logo-color: rgb(3, 3, 135);
    --secondary-color: #6C63FF;
    --accent-color: #028c75;
    --accent-color-hover: #00C9A7;
    --dark-color: #1F1F1F;
    --light-color: #F9F9F9;
    --white-color: #fff;
    --bg-color: #eee;
  
    --font-family-ar: 'Cairo', sans-serif;
    --font-family-en: 'Saira', sans-serif;
  
    --font-xs: 12px;
    --font-sm: 14px;
    --font-md: 16px;
    --font-lg: 20px;
    --font-xl: 28px;
    --font-xxl: 36px;
    --font-3xl: 40px;
  
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    --font-weight-extra-bold: 900;
  }
  
  /* للأجهزة اللوحية - تابلت (768px أو أقل) */
  @media (max-width: 768px) {
    :root {
      --padding: 4rem;
      --font-lg: 18px;
      --font-xl: 24px;
      --font-xxl: 30px;
      --font-3xl: 34px;
      --sidebar: 12rem;
    }
  }
  
  /* للموبايل - شاشات صغيرة (480px أو أقل) */
  @media (max-width: 480px) {
    :root {
      --padding: 2rem;
      --font-lg: 16px;
      --font-xl: 20px;
      --font-xxl: 24px;
      --font-3xl: 28px;
      --sidebar: 10rem;
    }

    input,
    textarea,
    select {
      font-size: 16px;
    }

  }
  

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


li {
    list-style: none;
}

a {
    text-decoration: none;
}

body {
    font-family: var(--font-family-ar);
    height: 100vh;
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: var(--padding);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

h1 {
    font-size: 100px;
    color: #cd1414;
}

h2 {
    font-size: 28px;
    color: #333;
}

p {
    color: #666;
}

a {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

a:hover {
    background-color: #1a6ed8;
}


@media (max-width: 480px) {


    
    .container {
        gap: 1.5rem;
    }
    
    h1 {
        font-size: 80px;
    }
    
    h2 {
        font-size: 23px;
    }
    
    p {
        color: #666;
    }
    
    a {
        padding: 8px 15px;
    }
    
}