/* ========== fot-footer.css ========== */
:root {
  --fot-bg: #fdecef;          /* พื้นหลังชมพูอ่อน */
  --fot-text: #1a1a1a;        /* สีตัวอักษร */
  --fot-primary: #d62839;     /* แดงเข้ม/สีหลัก */
  --fot-muted: #555;
}

.fot-footer {
  background: var(--fot-bg);
  font-family: "Kanit", system-ui, sans-serif;
  color: var(--fot-text);
  padding: 32px 16px;
  border-top: 4px solid var(--fot-primary);
  margin-top: 32px;
}

.fot-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

/* คอลัมน์ */
.fot-col {
  flex: 1 1 260px;
  min-width: 220px;
}

.fot-col--right {
  text-align: right;
}

/* หัวข้อ */
.fot-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fot-primary);
  margin-bottom: 8px;
}

.fot-address {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--fot-muted);
}

/* ลิงก์เมนู */
.fot-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fot-links li {
  margin: 6px 0;
}
.fot-links a {
  text-decoration: none;
  color: var(--fot-text);
  font-size: 1rem;
  transition: color 0.2s;
}
.fot-links a:hover {
  color: var(--fot-primary);
}

/* โซเชียล */
.fot-social {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  padding: 0;
  margin: 0 0 12px;
}
.fot-social a {
  color: var(--fot-text);
  font-size: 1.4rem;
  transition: color 0.2s, transform 0.2s;
}
.fot-social a:hover {
  color: var(--fot-primary);
  transform: scale(1.1);
}

/* ลิขสิทธิ์ */
.fot-copy {
  font-size: 0.9rem;
  color: var(--fot-muted);
}
.fot-copy a {
  color: var(--fot-primary);
  text-decoration: none;
}
.fot-copy a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .fot-col--right {
    text-align: left;
  }
  .fot-social {
    justify-content: flex-start;
  }
}
