body {
  margin: 0;
  font-family: 'Sarabun', sans-serif;
  background-color: #111;
  color: #fff;
}

/* Header */
.header {
  background-color: #000;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.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;
}

/* โปรแกรมวัวชน */
.match-program {
  padding: 40px 20px;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.match-program h2 {
  color: #f0c674;
  font-size: 24px;
  margin-bottom: 30px;
}

.highlight-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}


.highlight-card {
  width: 100%;
  max-width: 600px;
  background-color: #1c1c1c;
  border: 1px solid #444;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.15);
  text-align: center;
}


.highlight-card img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 8px;
}


.highlight-card p {
  margin: 0;
  color: #ddd;
}

/* ฟุตเตอร์ */
.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;
}
