/* ============================================================
   BuddieSpace — Global Base
   Reset · Variables · Typography · Buttons · Container
   Section styles live in their own asset CSS files.
   ============================================================ */

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

/* ── Base ── */
body {
  font-family: 'Inter', sans-serif;
  color: #21254a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── Container ── */
.bs-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4.2vw, 60px);
}

/* ── Buttons ── */
.bs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 1vw, 14px) clamp(20px, 2.2vw, 32px);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.1vw, 16px);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s ease, transform 0.1s ease;
  line-height: 1;
  white-space: nowrap;
}

.bs-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.bs-btn:active {
  transform: translateY(0);
}

.bs-btn--green {
  background-color: #b0f288;
  color: #21254a;
}

.bs-btn--navy {
  background-color: #21254a;
  color: #ffffff;
}

.bs-btn--outline {
  background-color: transparent;
  color: #21254a;
  border: 2px solid #21254a;
}

/* ── Utility ── */
.bs-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
