/* ============================================================
   Panamoure v2 — Base styles
   Resets, typography, html/body, anchors, images, .btn.
   Locked after Phase 0.
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  color: var(--body-text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

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

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

/* --- Headings (set per section in components; this is only the fallback) --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  letter-spacing: -0.3px;
  line-height: 1.2;
  color: var(--blue);
}
em {
  font-style: normal;
  color: var(--pink);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 8px;
  transition: all 0.15s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--pink);
  color: var(--white);
}
.btn-primary:hover { background: #e60069; }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-ghost-dark:hover {
  background: var(--blue);
  color: var(--white);
}

/* --- Arrow link --- */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--pink);
  transition: gap 0.15s ease;
}
.arrow-link:hover { gap: 14px; }
