/* ฟอนต์และพื้นหลังโดยรวม */
body, .baba {
  font-family: 'Prompt', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

/* ส่วนกลางของหน้า */
.project_center {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  background-color: #f9f9f9;
}

/* หัวข้อส่วนบน */
.project_top {
  text-align: center;
  margin-bottom: 40px;
}

.project_top h2 {
  font-size: 26px;
  border-bottom: 3px solid gold;
  display: inline-block;
  padding-bottom: 6px;
  margin: 50px 0 0 0;
}

/* กล่องรวมภาพทั้งหมด */
.gallery-container {
  width: 100%;
  max-width: 1000px;
}

.image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

/* กล่องภาพ */
.image-box {
  flex: 0 0 calc(33.333% - 20px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.image-box:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* Responsive: แถวละ 2 รูปในจอกลาง */
@media (max-width: 900px) {
  .image-box {
    flex: 0 0 calc(50% - 20px);
  }
}

/* Responsive: แถวละ 1 รูปในจอเล็ก */
@media (max-width: 600px) {
  .image-box {
    flex: 0 0 100%;
  }
}
