/* layout.css - shell, sidebar, topbar, main layout */

/* ===== App shell & body ===== */

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.app-shell {
  display: flex;
  min-height: 100vh;
}

.app-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ===== Sidebar ===== */
/* จากของเดิม + ปรับตามข้อ 2.2 และเพิ่มให้ค้างตำแหน่ง */

.sidebar {
  width: 230px;              /* เดิม 260px → ข้อ 2.2 */
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255,255,255,0.06);

  /* ให้ sidebar ค้าง ไม่ไหลตามสกรอลล์ */
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  flex-shrink: 0;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px; /* เดิม 16px */
}

/* เพิ่มจากของใหม่ 2.2 */
.sidebar-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* เพิ่มจากของใหม่ 2.2 */
.sidebar-logo-text {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* เดิม + ปรับขนาด/ตัวห่าง ตาม 2.2 */
.sidebar-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.7;
}

.btn-sidebar-toggle {
  font-size: 11px;
  padding: 4px 7px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
}

.sidebar-nav {
  flex: 1;
}

/* เดิม + ปรับ gap ตาม 2.2 */
.sidebar-section {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* เดิม + ปรับ padding/font-size/gap ตาม 2.2 */
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 6px;
  font-size: 13px;
  opacity: 0.8;
  border-radius: 6px;
}

.sidebar-link img {
  width: 16px;  /* เดิม 18px → ให้ icon เล็กลง */
  height: 16px;
}

.sidebar-link span {
  white-space: nowrap;
}

.sidebar-link:hover {
  opacity: 1;
}

.sidebar-link.active {
  opacity: 1;
  font-weight: 600;
}

.sidebar-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin: 12px 0;
}

/* เดิม + ปรับ spacing ตาม 2.2 */
.sidebar-footer {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
}

/* Theme switch ใน sidebar (ข้อ 2.2) */
.sidebar-theme-switch {
  display: flex;
  gap: 4px;
}

.sidebar-theme-switch .btn-icon {
  padding: 3px;
}

.sidebar-theme-switch .btn-icon img {
  width: 16px;
  height: 16px;
}

/* Language (เหมือนเดิม) */

.sidebar-language {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}

.lang-label {
  opacity: 0.7;
}

.lang-switch {
  display: inline-flex;
  gap: 4px;
}

.lang-btn {
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  opacity: 0.6;
}

.lang-btn.active {
  opacity: 1;
  border-color: rgba(255,255,255,0.5);
}

/* Sidebar collapsed (ของเดิม) */

.sidebar-collapsed .sidebar {
  width: 72px;
}

.sidebar-collapsed .sidebar-link span,
.sidebar-collapsed .sidebar-title,
.sidebar-collapsed .sidebar-language,
.sidebar-collapsed .sidebar-theme-switch {
  display: none;
}

/* ===== Topbar ===== */

/* รวมของเดิม + ของใหม่ ให้มีแค่ block เดียว */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 12px;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar-left,
.topbar-center,
.topbar-right {
  display: flex;
  align-items: center;
}

.topbar-left {
  gap: 12px;
}

/* โลโก้บน topbar */
/* ข้อ 1.2 – ซ่อนบน desktop, โชว์เฉพาะ tablet/mobile */
.topbar-logo {
  display: none;
  align-items: center;
}

.topbar-logo .logo-text {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
}

@media (max-width: 1024px) {
  .topbar-logo {
    display: inline-flex;
  }
}

/* center: search อยู่กลาง + กินพื้นที่ที่เหลือ */
.topbar-center {
  flex: 1;
  justify-content: center;
}

/* search box */
.topbar-search {
  position: relative;
  max-width: 480px;
  width: 100%;
}

.topbar-search input {
  width: 100%;
  padding: 7px 10px 7px 30px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: transparent;
}

.topbar-search .search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  opacity: 0.6;
}

/* ดัน Pricing + User ไปชิดขวา */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.topbar-link {
  font-size: 14px;
  opacity: 0.85;
}

.topbar-member {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 13px;
}

.topbar-member img {
  width: 16px;
  height: 16px;
}

/* ==== User avatar + dropdown (ใหม่) ==== */

.topbar-user {
  position: relative;
}

.topbar-user-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
}

.header-avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  object-fit: cover;
}

.header-username {
  font-size: 14px;
  max-width: 120px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar-user-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  min-width: 160px;
  padding: 8px 0;
  border-radius: 12px;
  background: rgba(15,15,20,0.98);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .16s ease, transform .16s ease;
  z-index: 40;
}

.topbar-user-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.user-menu-item {
  display: block;
  padding: 6px 14px;
  font-size: 13px;
}

.user-menu-item:hover {
  background: rgba(255,255,255,0.06);
}

/* ===== Buttons ===== */

/* ของเดิม + ปรับตามข้อ 1.1 */
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 999px;
}

/* บังคับให้ทุก icon ในปุ่มตัวเล็กลง (X ไม่บังจอ) */
.btn-icon img {
  width: 18px;
  height: 18px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 14px;
  border: none;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 14px;
  border: 1px solid currentColor;
}

.btn-full {
  width: 100%;
}

/* ===== Content ===== */
/* ผสมเก่าใหม่: ให้เต็มกว่าของเดิม แต่ยังไม่หลุดจอแบบ hero ไปขวา */

.app-content {
  padding: 20px 32px 40px 32px;  /* จากข้อ 6) */
  margin: 0 auto;
  width: 100%;
  max-width: 1320px;             /* เดิม 1200 / ของใหม่คือ none → ใช้ 1320 เป็นกลาง ๆ */
}

/* ===== Footer ===== */

.footer {
  padding: 10px 20px 20px;
  font-size: 12px;
  opacity: 0.6;
}

/* ===== Responsive ===== */

@media (max-width: 1024px) {
  .sidebar {
    display: none;
  }
  .app-shell {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .topbar {
    padding-inline: 12px;
  }
  .topbar-center {
    display: none;
  }
}

/* ===== Mobile menu ===== */
/* ผสมเก่ากับของใหม่: ให้ overlay ทึบอ่านง่ายขึ้น */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  justify-content: flex-end;
  background: rgba(0,0,0,0.85);   /* เดิม blur+0.6 → ตอนนี้ทึบขึ้น */
}

.mobile-menu-inner {
  width: 260px;
  max-width: 80%;
  padding: 16px;
  background: #050608;           /* แผงเมนูด้านข้างเข้มแบบ Upbeat */
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mobile-menu-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.mobile-menu-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.mobile-menu-nav a {
  padding: 6px 0;
  font-size: 14px;
}

.mobile-menu-nav hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 8px 0;
}

/* ===== Burger button visibility ===== */
/* ซ่อน burger บน PC ให้โผล่เฉพาะ tablet / mobile */

#btn-open-mobile-menu {
  display: none;
}

@media (max-width: 1024px) {
  #btn-open-mobile-menu {
    display: inline-flex;
  }
}
