@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Thai:wght@100;200;300;400;500;600;700&display=swap");

/* General Styles */
body {
  margin: 0;
  font-family: "IBM Plex Sans Thai", serif;
  color: #333;
}

header {
  background: linear-gradient(90deg, #28aade, #28aade);
  color: white;
  padding: 1rem;
  text-align: left;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: left;
  gap: 1rem;
}

nav ul li:hover {
  transform: scale(1.1);
  /* Scale the list item when hovered */
}

nav ul li a:hover {
  color: rgb(2, 68, 130);
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  /* Add transition for smooth animation */
}

section {
  padding: 2rem;
  text-align: center;
}

.hero {
  position: relative;
  background: #f4f4f4;
  color: white;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-slider {
  width: 100%;
  max-width: 800px;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.slider-button {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background 0.3s;
}

.slider-button:hover {
  background: rgba(0, 0, 0, 0.8);
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  margin: 0.5rem;
}

footer {
  background: linear-gradient(90deg, #28aade, #28aade);
  color: white;
  text-align: center;
  padding: 1rem;
  position: relative;
}

/* Button Animation */
.btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: bold;
  color: #4caf50;
  background: white;
  border: 2px solid #4caf50;
  border-radius: 5px;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}

.btn:hover {
  background: #4caf50;
  color: white;
}

/* table */
.table {
  width: 50%;
  /* ปรับขนาดตารางให้เหลือ 50% */
  margin: 0 auto;
  /* จัดให้อยู่กึ่งกลาง */
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 16px;
  background-color: #fff;
}

.table tbody tr td {
  border: 1px solid #ddd;
  padding: 3px;
  /* ลด padding ให้เล็กลงอีก */
  text-align: center;
}

/* เส้นขอบของตาราง */
.table th,
.table td {
  border: 1px solid #ddd;
  padding: 8px;
  /* ลด padding ให้เล็กลง */
  text-align: center;
}

/* สีหัวตาราง */
.table thead {
  background-color: #f9f9f9;
  color: black;
}

/* ทำให้แถวสลับสี */
.table-striped tbody tr:nth-child(odd) {
  background-color: #f9f9f9;
}

/* ทำให้ตารางมีเงา */
.table-hover tbody tr:hover {
  background-color: #f1f1f1;
}

/* ปรับแต่งตัวอักษรของเขต (ช่องแรกของแต่ละแถว) */
.table td.text-left {
  font-weight: bold;
  text-align: left;
  white-space: nowrap;
  /* ป้องกันการขึ้นบรรทัดใหม่ */
}

/* สไตล์วงกลมของช่องเขต */
.table .table-row span span {
  display: inline-block;
  width: 2px;
  /* ลดขนาดวงกลมให้เล็กลง */
  height: 2px;
  border-radius: 50%;
  margin-right: 3px;
  /* ลดระยะห่างวงกลมกับข้อความ */
}

/* ปรับแต่ง tbody ให้ชิดกันมากขึ้น */
.table tbody tr {
  height: auto;
  /* ปรับความสูงให้พอดีกับเนื้อหา */
  line-height: 1;
  /* ลดระยะห่างระหว่างบรรทัด */
}

/* ลดขนาดฟอนต์ของ tbody */
.table tbody td {
  font-size: 14px;
  /* ปรับขนาดฟอนต์ให้เล็กลง */
  padding: 4px;
  /* ลด padding อีกเล็กน้อย */
}

/* สไตล์แถวสุดท้าย (รวมยอด) */
.table tbody tr:last-child {
  background-color: #f1f1f1;
  font-weight: bold;
}

/* แสดง visitor */
.visitor-counter {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background: #28aade;
  padding: 10px 15px;
  border-radius: 5px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  font-size: 20px;
  font-weight: bold;
  color: white;
  display: flex;
  align-items: center;
}

.visitor-counter span {
  letter-spacing: 5px;
  font-size: 24px;
}

.visitor-label {
  color: white;
  font-size: 18px;
  margin-right: 10px;
}

.back-top {
  position: fixed;
  bottom: 15px;
  /* ระยะห่างจากขอบล่าง */
  right: 250px;
  /* ระยะห่างจากขอบขวา */
  background-color: #28aade;
  /* สีพื้นหลัง */
  color: white;
  padding: 10px 15px;
  border-radius: 10%;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.back-top:hover {
  transform: scale(1.2);
  /* ขยายปุ่มเมื่อ hover */
  background-color: rgb(64, 175, 219);
  /* เปลี่ยนสีเมื่อ hover */
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .call {
    display: none;
  }

  .call-footer {
    display: inline;
  }

  nav {
    width: 100%;
    /* Ensure it takes full width */
  }

  nav ul {
    list-style: none;
    padding: 0;
    display: inline;
    /* Make sure this is uncommented */
    justify-content: left;
    gap: 1rem;

    flex-wrap: wrap;
    /* Allow wrapping of items if necessary */
  }

  nav ul li {
    margin: 4px;
    flex: 1;
    /* Allow items to grow */
  }

  nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
  }

  nav .active {
    border-bottom: 0px solid white;
  }
}

.call-footer {
  display: none;
}

.call {
  text-align: center;
  color: white;
  position: fixed;
  z-index: 2000;
  right: 2%;
  top: 2%;
}
