/*
Theme Name: Nexgen CMI Theme
Author: Kate Hoang
Version: 1.0
Description: Custom theme for Nexgen CMI website
*/


/* Reset + style toàn trang */
html, body {
  margin: 0;
  padding: 0;
  background: #fff;
}

html {
  box-sizing: border-box;
  overflow-x: clip;
  overflow-y: visible;
}
body {
  overflow: visible;
}
*, *::before, *::after{ box-sizing: inherit; }
@supports not (overflow: clip){
  html{ overflow-x: hidden; }   /* vẫn ổn trong đa số case */
  body{ overflow: visible; }    /* đừng đổi */
}


body {
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.5;
  color: var(--color-text);
}

/* Khai báo biến màu trong :root */
:root {
  --color-primary: #0057B8;   /* xanh đậm bên phải */
  --color-bg-light: #FFFFFF;  /* nền trắng */
  --color-bg-soft: #EFF3F6;   /* nền xám nhạt */
  --color-text: #2E2E2E;      /* màu chữ */
  --color-muted: #6b7280;     /* màu chữ nhạt */
  --color-border: #D1D5DB;    /* màu viền */
  --color-primary-hover: #003a75; /* xanh đậm bên phải khi hover */
}

/*font size*/
h1 {
  font-size: 3rem;
  color: var(--color-text);
}

/* Link styles 
a,
a:link { 
  color: var(--color-primary);
  text-decoration: none;
}
a:hover,
a:focus,
a:active { 
  text-decoration: underline;
}
  */



