/*
Theme Name: PPSN Theme
Theme URI: https://www.ppsn.co.th/
Author: TerraBKK
Author URI: https://www.terrabkk.com/
Description: ธีม WordPress สำหรับเว็บไซต์ PPSN (https://www.ppsn.co.th/) — บริษัทวิศวกรที่ปรึกษาและบริหารงานก่อสร้าง พัฒนาโดย TerraBKK
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ppsn-theme
*/

/*
หมายเหตุ:
- ไฟล์ CSS ตัวจริงของดีไซน์ชุดนี้อยู่ที่โปรเจกต์ HTML เดิม `assets/css/style.css`
- ในธีมตัวอย่างนี้ เรา enqueue `assets/css/style.css` ถ้ามีอยู่ในโฟลเดอร์ธีม
- เพื่อให้หน้าตา “ไม่เปลี่ยนจากเดิม” แนะนำให้คัดลอกโฟลเดอร์ `assets/` จากโปรเจกต์เดิมมาไว้ที่ `wp-content/themes/ppsn-theme/assets/`
*/

/* ── Contact Form 7: ให้หน้าตาเข้ากับ UI เดิม (เฉพาะหน้า Home/Section นี้) ── */
.ppsn-contact-home .ppsn-cf7 .wpcf7 form {
  margin: 0;
}

.ppsn-contact-home .ppsn-cf7 .wpcf7-form-control-wrap {
  display: block;
}

/* Labels (CF7 ใช้ <label> ธรรมดา) */
.ppsn-contact-home .ppsn-cf7 .wpcf7 label {
  display: block;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  font-weight: 500;
  margin-bottom: .35rem;
}

/* Inputs/textarea */
.ppsn-contact-home .ppsn-cf7 .wpcf7 input[type="text"],
.ppsn-contact-home .ppsn-cf7 .wpcf7 input[type="email"],
.ppsn-contact-home .ppsn-cf7 .wpcf7 input[type="tel"],
.ppsn-contact-home .ppsn-cf7 .wpcf7 textarea,
.ppsn-contact-home .ppsn-cf7 .wpcf7 select {
  width: 100%;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 0;
  color: #fff;
  padding: .75rem 1rem;
  font-size: .88rem;
  outline: none;
}

.ppsn-contact-home .ppsn-cf7 .wpcf7 textarea {
  min-height: 120px;
  resize: vertical;
}

.ppsn-contact-home .ppsn-cf7 .wpcf7 input::placeholder,
.ppsn-contact-home .ppsn-cf7 .wpcf7 textarea::placeholder {
  color: rgba(255, 255, 255, .2);
}

.ppsn-contact-home .ppsn-cf7 .wpcf7 input:focus,
.ppsn-contact-home .ppsn-cf7 .wpcf7 textarea:focus,
.ppsn-contact-home .ppsn-cf7 .wpcf7 select:focus {
  background: rgba(255, 255, 255, .08);
  border-color: var(--gold);
  box-shadow: none;
}

/* Grid: ให้ฟิลด์ 2 คอลัมน์เหมือนเดิม (ถ้า CF7 markup ใช้ .row/.col-*) */
.ppsn-contact-home .ppsn-cf7 .row {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

/* Submit button */
.ppsn-contact-home .ppsn-cf7 .wpcf7 input[type="submit"],
.ppsn-contact-home .ppsn-cf7 .wpcf7 button[type="submit"] {
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 0;
  letter-spacing: .06em;
  font-weight: 600;
  font-size: .82rem;
  padding: .75rem 1.75rem;
}

.ppsn-contact-home .ppsn-cf7 .wpcf7 input[type="submit"]:hover,
.ppsn-contact-home .ppsn-cf7 .wpcf7 button[type="submit"]:hover {
  background: var(--gold-dk);
  color: #fff;
}

/* CF7 messages */
.ppsn-contact-home .ppsn-cf7 .wpcf7-response-output,
.ppsn-contact-home .ppsn-cf7 .wpcf7-not-valid-tip {
  color: rgba(255, 255, 255, .85);
  border-color: rgba(255, 255, 255, .25);
  font-size: .85rem;
}


