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

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

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


.elementor-menu-toggle,
.page-header {
    display: none !important;
}

.header-inner {
  
}

@keyframes blinker {
    50% {
        opacity: 0.2;
    }
}

.blink {
    animation: blinker 1s linear infinite;
}



.menu-item a {
    font-family: "Kanit", sans-serif !important;
    font-weight: 600 !important;
}

.menu-item a:hover {
    color:#C49A49 !important;
}

.text-main{
	color:#C49A49 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Kanit", sans-serif !important;
    font-weight: 600 !important;
    line-height: 1.2;
    margin-bottom: 0.5em;
	color:#C49A49 !important;
}

/* 🌐 Desktop (≥1025px) */
@media screen and (min-width: 1025px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 40px;
    }

    h3 {
        font-size: 32px;
    }

    h4 {
        font-size: 24px;
    }

    h5 {
        font-size: 20px;
    }

    h6 {
        font-size: 18px;
    }
}

/* 📱 Tablet (768px – 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 26px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 16px;
    }
}

/* 📱 Mobile (≤767px) */
@media screen and (max-width: 767px) {
	body{
		font-size:14px !important;
	}
    h1 {
        font-size: 28px !important;
    }

    h2 {
        font-size: 21px !important;
    }

    h3 {
        font-size: 18px !important;
    }

    h4 {
        font-size: 15px !important;
    }

    h5 {
        font-size: 14px !important;
    }

    h6 {
        font-size: 12px !important;
    }
}


@media screen and (max-width: 1024px) {

    /* จัดโลโก้ให้อยู่ตรงกลาง */
    .site-header .site-branding {
        display: flex;
        justify-content: center;
        width: 100%;
        text-align: center;
    }

    .site-header .site-logo {
        margin: 0 auto;
    }

    /* ซ่อนปุ่ม toggle menu บนมือถือและ iPad */
    .site-navigation-toggle-holder {
        display: none !important;
    }

    /* ถ้าต้องการซ่อนเมนู dropdown ด้วย (เมนูมือถือ) */
    .site-navigation-dropdown {
        display: none !important;
    }
}


.glass-box {
   
    border-radius: 13px !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
   
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3) !important;
    color: white;
	background: rgba(15, 15, 15, 0.5); /* ดำเข้มแต่โปร่ง */
	border: 1px solid rgba(255, 255, 255, 0.1); /* ขอบขาวบาง */
}

.pointer {
    cursor: pointer;
}

.circle-image {
    width: 30px;
    /* ขนาดของวงกลม */
    height: 30px;
    border-radius: 50%;
    /* ทำให้เป็นวงกลม */
    background: linear-gradient(45deg, #bb8d30, #93670e);
    /* Gradient สีขอบ */
    padding: 2px;
    /* ระยะขอบ */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ปรับรูปภาพให้พอดีกับ container */
    border-radius: 50%;
    /* ทำให้รูปภาพเป็นวงกลม */
    background: white;
    /* พื้นหลังสีขาว */
}

.circle-inline {
    display: inline-flex;
    /* ใช้ Inline-Flex เพื่อให้อยู่ในบรรทัดเดียวกัน */
    align-items: center;
    /* จัดข้อความให้อยู่กึ่งกลางแนวตั้ง */
    gap: 10px;
    /* ระยะห่างระหว่างรูปภาพกับข้อความ */
}

.zoom-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.zoom-hover:hover {
  transform: scale(1.03); /* ซูมเล็กน้อย */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* เพิ่มเงานิด ๆ */
  z-index: 2;
}
.hover14 figure {
  position: relative;
  overflow: hidden;
 
  border-radius: 10px; /* ปรับได้ถ้าต้องการมุมโค้ง */
}

.hover14 figure img {
  display: block;
  width: 100%;
  height: auto;
}

.hover14 figure::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
}

.hover14 figure:hover::before {
  animation: shine 0.75s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.row.item-hover {
  transition: background-color 0.3s ease;
}

.row.item-hover:hover {
  background-color: rgba(108, 117, 125, 0.1); /* Bootstrap secondary (#6c757d) แบบจางๆ */
}

.row.item-hover:hover .col-1,
.row.item-hover:hover .col-2,
.row.item-hover:hover .col-3,
.row.item-hover:hover .col-4,
.row.item-hover:hover .col-5,
.row.item-hover:hover .col-6,
.row.item-hover:hover .col-7,
.row.item-hover:hover .col-8,
.row.item-hover:hover .col-9,
.row.item-hover:hover .col-10,
.row.item-hover:hover .col-11,
.row.item-hover:hover .col-12 {
  color: #C49A49;
}
