/* ฟอนต์/พื้นฐาน */
body {
  font-family: 'Sarabun', sans-serif;
  margin: 0;
  background-color: #1c1c1c;
  color: #fff;
}

/* เฮดเดอร์ */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  padding: 10px 20px;
}

.logo img {
  height: 100px;
}

/* เมนูหลัก */
.main-nav {
  background: linear-gradient(to right, #1c1c1c, #2a1d00, #1c1c1c);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.main-nav ul li a {
  color: #f0c674;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
}

.main-nav ul li a:hover {
  background-color: rgba(255, 215, 0, 0.1);
  color: #ffd700;
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.4);
}


/* ปุ่มทอง */
.button-gold {
  background: linear-gradient(to bottom, #f1c65b, #c9971d);
  border: none;
  color: #000;
  font-weight: bold;
  padding: 10px 22px;
  font-size: 16px;
  border-radius: 10px;
  box-shadow: 0 4px 0 #7a5905;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.button-gold:hover {
  background: linear-gradient(to bottom, #f5d16b, #b98300);
  box-shadow: 0 2px 10px rgba(232, 177, 61, 0.6);
  transform: translateY(-2px);
}

/* แถบเมนูล่าง */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  display: flex;
  justify-content: center;   /* ✅ ให้เมนูชิดกลาง */
  align-items: center;
  gap: 40px;                 /* ✅ ลดจากเดิม เช่น 40 → 20px */
  padding: 10px 0;
  z-index: 1000;
  border-top: 2px solid gold;
}


.bottom-nav a {
  color: #fff;
  text-align: center;
  font-size: 12px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px; /* ระยะห่างระหว่าง icon กับข้อความ */
}


.bottom-nav a i {
  font-size: 20px;
  margin-bottom: 4px;
}

.bottom-nav img {
  margin-top: -50px;
  border-radius: 0;
  background: none;
  border: none;
  box-shadow: none;
  height: 50px;
}

/* สไลด์โปรโมชั่น */
.slider-loop {
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 0 10px #000;
}

.slide-track {
  display: flex;
  width: calc(250px * 6);
  animation: scroll 30s linear infinite;
}

.slide-track img {
  width: 250px;
  height: auto;
  flex-shrink: 0;
  margin-right: 10px;
  border-radius: 8px;
  box-shadow: 0 0 5px #000;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* เนื้อหาหลัก */
.content {
  padding: 20px;
  background-color: #111;
  text-align: center;
}

/* กล่องฟีเจอร์ */
.feature-boxes {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background: #000;
  border: 2px solid #e8b13d;
  border-radius: 20px;
  padding: 30px 20px;
  margin: 30px auto;
  max-width: 1000px;
  box-shadow: 0 0 15px #000;
  text-align: center;
  color: #fff;
}

.feature {
  flex: 1 1 250px;
  margin: 10px;
  padding: 10px;
}

.feature img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.feature h3 {
  color: #e8b13d;
  margin: 10px 0 5px;
}

.feature p {
  font-size: 14px;
  line-height: 1.6;
}

/* โปรแกรมวัวชน */
.match-program {
  background-color: #111;
  padding: 40px 20px;
  text-align: center;
  color: #fff;
  max-width: 700px;
  margin: auto;
}

.match-program h2 {
  color: #e8b13d;
  margin-bottom: 30px;
  font-size: 22px;
}

/* ไฮไลท์ */
.highlight-section {
  background-color: #000;
  padding: 40px 20px;
  color: #fff;
  max-width: 1100px;
  margin: auto;
  border-top: 1px solid #e8b13d;
}

.highlight-section h2 {
  color: #e8b13d;
  text-align: center;
  margin-bottom: 30px;
  font-size: 22px;
}

.highlight-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.highlight-image {
  flex: 1 1 40%;
  text-align: center;
}

.highlight-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(232, 177, 61, 0.3);
}

.highlight-text {
  flex: 1 1 55%;
  font-size: 16px;
  line-height: 1.7;
  color: #ccc;
  text-align: left;
}

.checklist {
  list-style: none;
  padding-left: 0;
  text-align: left;
}

.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  line-height: 1.7;
  color: #ccc;
}

.checklist li::before {
  content: "✅";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  color: #00ff66;
}

/* ไฮไลท์การ์ด */
.highlight-gallery {
  padding: 40px 20px;
  background: #000;
  color: #fff;
  max-width: 1100px;
  margin: auto;
  /* border: 2px solid #e8b13d;  */
  border-radius: 15px;
}

.highlight-gallery h2 {
  color: #e8b13d;
  text-align: center;
  margin-bottom: 30px;
  font-size: 22px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.highlight-card {
  background-color: #111;
  /*border: 2px solid #e8b13d; */
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 0 10px #000;
}

.highlight-card img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.highlight-card p {
  color: #ccc;
  font-size: 15px;
  margin-bottom: 10px;
}

.btn-more {
  display: inline-block;
  padding: 6px 14px;
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.btn-more:hover {
  background-color: #e8b13d;
  color: #000;
  border-color: #e8b13d;
}

.highlight-pagination {
  text-align: center;
  margin-top: 30px;
}

.btn-next {
  display: inline-block;
  padding: 10px 24px;
  background-color: #e8b13d;
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s ease;
  text-decoration: none;
}

.btn-next:hover {
  background-color: #f5d16b;
}

/* ส่วนโปรโมชั่น */
.promo-member {
  padding: 60px 20px;
  color: #fff;
  text-align: center;
  max-width: 1100px;
  margin: auto;
}

.promo-member h2 {
  color: #e8b13d;
  font-size: 24px;
  margin-bottom: 30px;
}

.promo-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.promo-image {
  flex: 1 1 40%;
  max-width: 400px;
  text-align: center;
}

.promo-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.promo-text {
  flex: 1 1 50%;
  max-width: 500px;
}

.promo-text p {
  font-size: 16px;
  margin-bottom: 15px;
}

.checklist {
  list-style: none;
  padding-left: 0;
}

.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  line-height: 1.7;
  color: #ccc;
}

.checklist li::before {
  content: "✅";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  color: #00ff66;
}


/* ฟุตเตอร์ */
.site-footer {
  background: #000;
  color: #fff;
  padding: 40px 20px 20px;
  border-top: 2px solid #e8b13d;
  font-size: 15px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.footer-left {
  flex: 1 1 50%;
}

.footer-logo {
  width: 200px;
  margin-bottom: 10px;
}

.footer-left h3 {
  color: #e8b13d;
  margin-top: 0;
}

.footer-left p {
  color: #ccc;
  line-height: 1.6;
}

.footer-right {
  flex: 1 1 40%;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.footer-menu li {
  margin-bottom: 8px;
}

.footer-menu a {
  color: #fff;
  text-decoration: none;
}

.footer-menu a:hover {
  color: #e8b13d;
}

.footer-social a {
  display: inline-block;
  margin-right: 12px;
  color: #fff;
  font-size: 20px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #e8b13d;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #888;
}
.header {
  background: url('https://media.istockphoto.com/id/1625368616/th/%E0%B9%80%E0%B8%A7%E0%B8%84%E0%B9%80%E0%B8%95%E0%B8%AD%E0%B8%A3%E0%B9%8C/%E0%B8%9B%E0%B8%A3%E0%B8%B0%E0%B8%81%E0%B8%B2%E0%B8%A2%E0%B9%84%E0%B8%9F%E0%B8%AA%E0%B8%B5%E0%B8%97%E0%B8%AD%E0%B8%87%E0%B9%81%E0%B8%A5%E0%B8%B0%E0%B8%94%E0%B8%B2%E0%B8%A7%E0%B8%AA%E0%B8%B5%E0%B8%97%E0%B8%AD%E0%B8%87%E0%B9%80%E0%B8%9B%E0%B8%A5%E0%B9%88%E0%B8%87%E0%B8%9B%E0%B8%A3%E0%B8%B0%E0%B8%81%E0%B8%B2%E0%B8%A2%E0%B9%80%E0%B8%AD%E0%B8%9F%E0%B9%80%E0%B8%9F%E0%B8%81%E0%B8%95%E0%B9%8C%E0%B9%81%E0%B8%AA%E0%B8%87%E0%B8%9E%E0%B8%B4%E0%B9%80%E0%B8%A8%E0%B8%A9.jpg?s=2048x2048&w=is&k=20&c=IY5D_neshNu_gaf0GELbTw94DiQG7ikfFMDSAMn3T3U=') no-repeat center top;
  background-size: cover;
  padding: 20px;
}

