/* Andrea — Site vitrine — base styles partagés */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --pink: #E94560;
  --pink-soft: #ff6b80;
  --blue-deep: #0F3460;
  --blue-night: #1A1A2E;
  --cyan: #00B4D8;
  --green: #06D6A0;
  --violet: #9B5DE5;
  --orange: #F77F00;
  --cream: #F5F1E8;

  --bg-0: #0c0c14;
  --bg-1: #14141f;
  --bg-2: #1c1c2b;
  --bg-3: #262638;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);
  --text: #f4f4f6;
  --text-dim: rgba(244,244,246,0.62);
  --text-faint: rgba(244,244,246,0.38);

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

[data-theme="light"] {
  --bg-0: #f7f5ef;
  --bg-1: #efece4;
  --bg-2: #e6e2d6;
  --bg-3: #ddd7c7;
  --line: rgba(0,0,0,0.08);
  --line-strong: rgba(0,0,0,0.16);
  --text: #1a1a2e;
  --text-dim: rgba(26,26,46,0.65);
  --text-faint: rgba(26,26,46,0.4);
}

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

.andrea-site {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-0);
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'cv01';
  line-height: 1.5;
}

.andrea-site h1, .andrea-site h2, .andrea-site h3, .andrea-site h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.andrea-site .mono { font-family: var(--font-mono); }
.andrea-site button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
.andrea-site a { color: inherit; text-decoration: none; }

/* Utilities */
.andrea-site .container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.andrea-site .eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Pill / chips */
.andrea-site .pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-size: 13px; font-weight: 500;
}

/* Reusable buttons */
.andrea-site .btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 12px;
  font-weight: 600; font-size: 15px;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.andrea-site .btn-primary { background: var(--pink); color: white; }
.andrea-site .btn-primary:hover { background: var(--pink-soft); transform: translateY(-1px); }
.andrea-site .btn-ghost { border: 1px solid var(--line-strong); color: var(--text); }
.andrea-site .btn-ghost:hover { border-color: var(--pink); }

/* Animation utilities */
@keyframes andrea-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes andrea-pulse { 0%,100% { opacity: .35; } 50% { opacity: .7; } }
@keyframes andrea-spin { to { transform: rotate(360deg); } }
@keyframes andrea-rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.andrea-site .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.andrea-site .reveal.in { opacity: 1; transform: translateY(0); }
