body {
  font-family: "Prompt", sans-serif;
  background-color: #f5f5f7;
}

.navbar {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.9);
}

.section {
  padding: 5rem 0 3rem 0;
}

.avatar {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.section-title {
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff7a7a, #ffb347);
}

.badge-skill {
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
  background: #fff;
  border: 1.8px solid #ddd;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  margin: 0.3rem;
  display: inline-block;
}

.card {
  border-radius: 1rem;
  border: none;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.contact-icon i {
  width: 28px;
  height: 28px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

footer {
  font-size: 0.85rem;
  color: #6b7280;
}

/* ================= Language Switcher ================= */

/* ถ้า Body เป็น class 'en' ให้ซ่อนภาษาไทย */
body.en .lang-th {
  display: none !important;
}

/* ถ้า Body เป็น class 'th' ให้ซ่อนภาษาอังกฤษ */
body.th .lang-en {
  display: none !important;
}

/* ปรับแต่งปุ่มเปลี่ยนภาษา */
#lang-toggle {
  cursor: pointer;
  font-weight: 600;
  min-width: 40px;
}