/* ============================================================
   describe.me — shared site stylesheet
   ------------------------------------------------------------
   Only truly cross-page styles live here: design tokens,
   reset, base typography, primary nav, primary CTA button,
   footer. Page-specific styles stay in each page's inline
   <style> block.
   ============================================================ */

/* ── Design tokens ── */
:root {
  --primary-gradient: linear-gradient(135deg, #ff0066 0%, #6b46c1 100%);
  --accent-color: #ff0066;
  --purple: #6b46c1;
  --text-dark: #1a1a2e;
  --text-mid: #444;
  --text-light: #666;
}

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

/* ── Base typography ── */
body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── Navigation ── */
.navbar {
  background: white;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 0.8rem 0;
}

.logo-text {
  font-family: "Gugi", sans-serif;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.logo-img {
  height: 1.5rem;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.logo-img.logo-img-sm {
  height: 1.05rem;
}

.nav-link {
  font-weight: 500;
  color: var(--text-mid) !important;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--purple) !important;
}

.nav-cta {
  background: var(--primary-gradient) !important;
  color: white !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 25px;
  font-weight: 600 !important;
  margin-left: 0.5rem;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 0, 102, 0.3);
}

/* ── Shared primary CTA button ── */
.cta-primary {
  background: var(--primary-gradient);
  color: white;
  padding: 1.2rem 2.8rem;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 8px 25px rgba(255, 0, 102, 0.25);
  display: inline-block;
  letter-spacing: 0.3px;
}

.cta-primary:hover {
  transform: translateY(-3px);
  color: white;
  box-shadow: 0 12px 35px rgba(255, 0, 102, 0.35);
}

/* ── Shared fade-in animation (used by hero elements) ── */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Journey nav (reusable cross-link block for pillar pages) ── */
.journey-nav {
  padding: 3.5rem 0;
  background: linear-gradient(
    180deg,
    rgba(107, 70, 193, 0.04) 0%,
    rgba(255, 0, 102, 0.03) 100%
  );
}

.journey-nav-header {
  text-align: center;
  margin-bottom: 2rem;
}

.journey-nav-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.journey-nav-header p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

.journey-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 880px;
  margin: 0 auto;
}

@media (max-width: 820px) {
  .journey-nav-grid {
    grid-template-columns: 1fr;
  }
}

.journey-nav-card {
  background: white;
  border-radius: 14px;
  padding: 1.2rem;
  text-decoration: none;
  color: var(--text-dark);
  border: 1px solid rgba(107, 70, 193, 0.12);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: block;
}

.journey-nav-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(107, 70, 193, 0.15);
  color: var(--text-dark);
}

.journey-nav-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--purple);
  margin-bottom: 0.4rem;
}

.journey-nav-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.journey-nav-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

/* ── Privacy strip (reusable footer-adjacent band) ── */
.privacy-strip {
  padding: 2rem 0;
  background: #0d0d18;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 0.95rem;
}

.privacy-strip i {
  color: #80deea;
  margin-right: 0.5rem;
}

.privacy-strip strong {
  color: white;
}

.privacy-strip a {
  color: #80deea;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(128, 222, 234, 0.3);
  padding-bottom: 1px;
  margin-left: 0.5rem;
}

.privacy-strip a:hover {
  color: white;
  border-bottom-color: white;
}

/* ── Footer ── */
.site-footer {
  background: #111;
  color: rgba(255, 255, 255, 0.6);
  padding: 2.5rem 0;
  font-size: 0.85rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer a:hover {
  color: white;
}

.footer-social a {
  margin: 0 0.6rem;
  font-size: 1.1rem;
}
