/* global-font.css */
/* css/global-font.css */

/* --- 1. เรียกใช้ไฟล์ fonts.css --- */
/* global-font.css */

@import url('fonts.css'); /* พาธนี้สัมพันธ์กับตำแหน่งของ global-font.css */


#navmenu ul li a {
    font-family: 'DBOzoneX', sans-serif; /* ใช้ DBOzoneX */
    font-size: 20px; /* ใช้ DBOzoneX ปรับขนาด 20px ให้ใหญ่ขึ้นเพื่อให้ดูเท่ากับ Poppins ที่ 17px */
}

/* กำหนดฟอนต์ 'DBOzoneX' ให้กับทุก element ในหน้าเว็บ */
* {
  font-family: 'DBOzoneX', sans-serif;
}

/* ตั้งค่าฟอนต์และขนาดพื้นฐาน */
html {
  font-family: 'DBOzoneX', sans-serif;
  font-size: 18px; /* เทียบเท่า Roboto/Poppins/Raleway ที่ 16px */
  /* line-height: 1.5; */
  /* -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; */
}

/* ใช้ฟอนต์กับทุก element */
body, h1, h2, h3, h4, h5, h6,
p, span, a, li, ul, ol, strong, em, div,
nav, header, footer, section, article, aside, input, button, textarea {
  font-family: 'DBOzoneX', sans-serif;
}
 h1,h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'DB Ozone X', sans-serif; /* Keep DB Ozone X for headings as well */
            font-weight: bold; /* Use bold variant for headings */
        }

span, a {
  font-family: 'DBOzoneX', sans-serif;
  font-size: 25px;
  font-weight: normal;

}
ul,li{
  font-family: 'DBOzoneX', sans-serif;
  font-size: 25px;
  line-height: 1.2;
}
p{
  font-family: 'DBOzoneX', sans-serif;
  font-size: 25px;
  line-height: 1.2;
}
strong {
  font-family: 'DBOzoneX', sans-serif;
  font-weight: bold; 
}

/* Bootstrap font-size utilities (ที่อิงจาก font-size: 18px) */
.fs-1 { font-size: calc(1.625rem * 1.125); } /* ประมาณ 29.25px */
.fs-2 { font-size: calc(1.5rem * 1.125); }   /* ~27px */
.fs-3 { font-size: calc(1.375rem * 1.125); } /* ~24.75px */
.fs-4 { font-size: calc(1.25rem * 1.125); }  /* ~22.5px */
.fs-5 { font-size: calc(1.125rem * 1.125); } /* ~20.25px */
.fs-6 { font-size: calc(1rem * 1.125); }     /* ~18px (เท่า base) */

/* เพิ่มเสริมของ Bootstrap */
.lead {
  font-size: 1.25rem; /* ~22.5px */
  font-weight: 400;
}
span {
  font-weight: normal
}
small, .small {
  font-family: 'DBOzoneX', sans-serif;
  font-size: 0.875em;
}

/* ให้แน่ใจว่าใช้ฟอนต์ DBOzoneX กับคลาสพวกนี้ด้วย */
.fs-1, .fs-2, .fs-3, .fs-4, .fs-5, .fs-6,
.lead, small, .small {
  font-family: 'DBOzoneX', sans-serif;
}

