/* ตัวอย่าง CSS เพื่อให้โค้ดทำงานได้ */
.text-danger {
    color: red;
}

.my-5 {
    margin-top: 5px;
    margin-bottom: 5px;
}

/* จัดรูปแบบให้สวยขึ้นสำหรับการแสดงผลหลายส่วน */
.countdown h4 span {
    font-weight: bold;
    display: block;
    /* ให้ข้อความลงบรรทัดใหม่ได้ถ้าหน้าจอเล็ก */
}

:root {
    --bs-yellow-custom: #FFC300;
    /* เหลืองสดใส */
    --bs-dark-custom: #212529;
    /* ดำ */
    --bs-light-custom: #FFFFFF;
    /* ขาว */
}

/* Custom CSS ที่แก้ไขแล้ว */
.bg-dark-custom {
    background-color: var(--bs-dark-custom) !important;
    /* เพิ่ม !important */
}

.bg-yellow-custom {
    background-color: var(--bs-yellow-custom) !important;
}

.text-yellow-custom {
    color: var(--bs-yellow-custom) !important;
}

.btn-yellow-custom {
    color: var(--bs-dark-custom);
    background-color: var(--bs-yellow-custom);
    border-color: var(--bs-yellow-custom);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-yellow-custom:hover {
    color: var(--bs-light-custom);
    background-color: #FFAA00;
    /* เหลืองเข้มขึ้น */
    border-color: #FFAA00;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.jumbotron-hero {
    padding: 5rem 0;
    background-color: var(--bs-dark-custom);
    /* พื้นหลังดำ */
    color: var(--bs-light-custom);
    text-align: center;
}

.card-shirt-custom {
    border: 3px solid var(--bs-yellow-custom);
    transition: transform 0.3s ease;
}

.card-shirt-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'kodchasan', sans-serif;
    /* กำหนดให้ body ใช้ฟอนต์ kodchasan */
}

.kodchasan-extralight {
    font-family: "Kodchasan", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.kodchasan-light {
    font-family: "Kodchasan", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.kodchasan-regular {
    font-family: "Kodchasan", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.kodchasan-medium {
    font-family: "Kodchasan", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.kodchasan-semibold {
    font-family: "Kodchasan", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.kodchasan-bold {
    font-family: "Kodchasan", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.kodchasan-extralight-italic {
    font-family: "Kodchasan", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.kodchasan-light-italic {
    font-family: "Kodchasan", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.kodchasan-regular-italic {
    font-family: "Kodchasan", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.kodchasan-medium-italic {
    font-family: "Kodchasan", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.kodchasan-semibold-italic {
    font-family: "Kodchasan", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.kodchasan-bold-italic {
    font-family: "Kodchasan", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.footer-link {
    text-decoration: none;
    color: var(--bs-light-custom);
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--bs-yellow-custom);
}