/* ฟอนต์ */
body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background: linear-gradient(135deg, #fefcf9 0%, #e3fdf5 50%, #ffe6fa 100%);
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
}

/* ส่วนหัว & เนวิเกชัน */
header, nav, main {
  padding: 1.5em 1em;
  text-align: center;
}

/* ลิงก์ใน nav */
nav a {
  margin: 0 1.2em;
  text-decoration: none;
  color: #00796b;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}
nav a:hover {
  color: #004d40;
}
nav a::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: #004d40;
  transition: width 0.3s ease;
  position: absolute;
  bottom: -4px;
  left: 0;
}
nav a:hover::after {
  width: 100%;
}

/* ปุ่มจอง */
.btn {
  display: inline-block;
  margin-top: 1.5em;
  padding: 0.7em 2em;
  background: linear-gradient(45deg, #34d399, #059669);
  color: white;
  font-weight: 700;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(52, 211, 153, 0.4);
  transition: all 0.3s ease;
}
.btn:hover {
  background: linear-gradient(45deg, #059669, #065f46);
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.5);
}

/* รายการวิลล่า */
.villa-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5em;
  padding: 2em;
}

/* การ์ดวิลล่า */
.villa {
  background: linear-gradient(135deg, #ffffff, #e3fdf5);
  padding: 1.5em 1.2em;
  border-radius: 1.25em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05), 0 8px 20px rgba(52, 211, 153, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.villa:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 15px 40px rgba(52, 211, 153, 0.2);
}

/* รูปภาพ */
.villa img {
  width: 100%;
  border-radius: 1em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 1em;
  transition: transform 0.3s ease;
}
.villa:hover img {
  transform: scale(1.05);
}

/* ชื่อวิลล่า */
.villa h3 {
  margin-bottom: 0.75em;
  color: #065f46;
  font-weight: 700;
  font-size: 1.3em;
}

/* รายละเอียดวิลล่า */
.villa ul {
  color: #004d40;
  font-size: 0.9em;
  margin-bottom: 1em;
  text-align: left;
  padding-left: 1em;
}

/* Footer */
footer {
  background: #ffffff;
  color: #666;
  font-size: 0.85em;
  padding: 2em 1em;
  box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 640px) {
  nav a {
    margin: 0 0.6em;
  }
  .villa-list {
    grid-template-columns: 1fr;
    padding: 1em;
  }
}
