/* ──────────────────────────────────────────────────────────────
   GlowPass — base stylesheet (shell condivisa: header, footer, bottoni)
   Brand allineato all'app: coral #FF6B8A su crema #FFF8F5
   ────────────────────────────────────────────────────────────── */

:root {
  --coral:       #FF6B8A;
  --coral-dark:  #E84E73;
  --cream:       #FFF8F5;
  --cream-2:     #F6ECE6;
  --ink:         #2A1A24;
  --text:        #3D3438;
  --muted:       #7A6E73;
  --border:      rgba(42, 26, 36, 0.12);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --radius:      12px;
  --shadow-sm:   0 2px 8px rgba(42, 26, 36, 0.06);
  --shadow-md:   0 8px 28px rgba(42, 26, 36, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ─── Header ──────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 245, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  flex-shrink: 0;
}
.brand span { color: var(--coral); }

.site-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--ink); }

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius);
  padding: 13px 24px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 107, 138, 0.35);
}
.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
}

/* ─── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  margin-top: 80px;
}
.site-footer .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 32px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.footer-brand span { color: var(--coral); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 24px;
}
.footer-links a,
.footer-links .link-btn {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.footer-links a:hover,
.footer-links .link-btn:hover { color: #fff; }

.link-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255, 255, 255, 0.55); }
.footer-bottom a:hover { color: rgba(255, 255, 255, 0.85); }

@media (max-width: 600px) {
  .site-nav { gap: 16px; }
  .site-header .inner { flex-wrap: wrap; gap: 12px; }
}
