/* ======================================
   DOPAMINE -- Base Styles
   css/base.css
   ====================================== */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--gold); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 3px; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-sans); cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }

.section { padding: 6rem 0; }
.section-inner { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.15;
}
.section-desc {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-3);
  max-width: 480px;
  line-height: 1.7;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 18px rgba(107, 70, 43, 0.28);
  transition: background var(--t), transform 0.2s, box-shadow var(--t);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(107, 70, 43, 0.36);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* TOAST */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--text);
  color: var(--bg);
  padding: 11px 24px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.26s, transform 0.26s;
}
.toast.visible { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 600px) {
  .section { padding: 4rem 0; }
  .section-inner { padding: 0 1.25rem; }
}
