/* =========================================================
   PeacePal — Shared styles
   Theme: Pastel Blue Breeze
   Colors: primary #2563EB, text #1A2333, bg #F8FAFD, border #5A7A9A
   ========================================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: #F8FAFD;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1A2333;
}

a {
  color: #2563EB;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ── Mascot & app name ── */
.mascot {
  display: block;
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 4px;
}

.app-name {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  color: #2563EB;
  letter-spacing: 0.3px;
}

/* ── Language toggle ── */
.lang-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 16px 0;
}

.lang-btn {
  padding: 5px 18px;
  border-radius: 20px;
  border: 1.5px solid #5A7A9A;
  background: transparent;
  color: #1A2333;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.lang-btn.active,
.lang-btn:hover {
  background: #2563EB;
  color: #FFFFFF;
  border-color: #2563EB;
}

/* ── Nav link button ── */
.nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #5A7A9A;
  border-radius: 12px;
  background: #FFFFFF;
  color: #1A2333;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
  margin-bottom: 10px;
}

.nav-link:hover {
  border-color: #2563EB;
  background: #EFF6FF;
  text-decoration: none;
}

.nav-link .nav-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.nav-link .nav-arrow {
  margin-left: auto;
  color: #5A7A9A;
  font-size: 18px;
}

/* ── Utility ── */
.hidden {
  display: none !important;
}
