/*
Theme Name: Terra Spa
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
/* ==== TABLE THEME COLORS ==== */
table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #EFC4A0;
  background-color: #fff;
}

/* Tiêu đề bảng */
table th {
  background-color: #7A583F;
  color: #fff;
  text-align: center;
  border: 1px solid #EFC4A0;
}

/* Ô nội dung */
table td {
  border: 1px solid #EFC4A0;
  color: #7A583F;
  text-align: center;
}

/* Dòng xen kẽ nhẹ */
table tr:nth-child(even) {
  background-color: #FFF8F2;
}

/* Tiêu đề dịch vụ */
table h3 {
  color: #7A583F;
  font-weight: 600;
  margin: 0;
}

/* Giá trị tiền */
table .gia-tien {
  color: #7A583F;
  font-weight: 500;
}

/* Giữ nguyên bố cục trên mobile */
@media (max-width: 768px) {
  table {
    width: 100%;
    overflow-x: auto;
    display: block;
  }
}

/* ===== Terra Spa Booking Form ===== */
.terra-contact-form {
  background: #fffaf6;
  border: 2px solid #EFC4A0;
  border-radius: 14px;
  padding: 25px 30px;
  color: #7A583F;
  max-width: 650px;
  margin: 40px auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  font-family: "Poppins", sans-serif;
}

.terra-contact-form h2 {
  text-align: center;
  color: #7A583F;
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 24px;
}

.terra-contact-form label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.terra-contact-form input,
.terra-contact-form select,
.terra-contact-form textarea {
  width: 100%;
  border: 1px solid #EFC4A0;
  border-radius: 8px;
  padding: 5px 12px;
  margin-bottom: 15px;
  font-size: 15px;
  background-color: #fff;
  color: #7A583F;
  transition: border-color 0.3s ease;
}

.terra-contact-form input:focus,
.terra-contact-form select:focus,
.terra-contact-form textarea:focus {
  border-color: #7A583F;
  outline: none;
}

.terra-contact-form input[type="submit"] {
  background: #7A583F;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.terra-contact-form input[type="submit"]:hover {
  background: #EFC4A0;
  color: #7A583F;
}

@media (max-width: 600px) {
  .terra-contact-form {
    padding: 20px;
  }
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}