body {
    background-color: #5D6D7E;
    /* ตั้งค่าสีพื้นหลังเป็นสีดำ */
    color: #fff;
    /* ตั้งค่าสีตัวอักษรเป็นสีขาว */
  }

  /* สไตล์สำหรับการครอบ Gallery */
  .gallery-container {
    border: 2px solid #fff;
    /* สร้างกรอบสีขาว */
    padding: 20px;
    border-radius: 10px;
    /* สร้างมุมโค้ง */
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    /* เพิ่มเงา */
  }

  .gallery-item {
    position: relative;
    overflow: hidden;
  }

  .gallery-item img {
    width: 100%;
    height: auto;
    border: 5px solid #fff;
    /* เพิ่มกรอบสีขาวให้กับรูปภาพ */
  }

  .gallery-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .gallery-item:hover .gallery-text {
    opacity: 1;
  }
  div a {
    color: white; /* เปลี่ยนสีของลิงก์ทั้งหมดใน div เป็นสีขาว */
}

.btn-modern {
    background: linear-gradient(45deg, #0b6b63, #2b9fd3);
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    display: inline-block;
}

.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #2b9fd3, #0b6b63);
    text-decoration: none;
    color: #fff;
}
