/**
 * /fitsite/css/fitsite.css
 *
 * CSS condiviso per tutte le pagine fitsite standalone.
 * Reset base + tipografia + layout + footer.
 */

/* Source Sans Pro: font del tema Storefront (identico al sito WordPress) */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

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

body {
  margin: 0;
  font-family: 'Source Sans Pro', 'HelveticaNeue-Light', 'Helvetica Neue Light',
               'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;
  font-weight: 400;
  line-height: 1.618;
  text-rendering: optimizeLegibility;
  background: #f0f1f3;
  color: #1a1a1a;
}

a { color: #004080; }
a:hover { color: #002d5a; }

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

/* ── Wrapper pagina ────────────────────────────────────────────────────────── */
.fs-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}

/* ── Footer ────────────────────────────────────────────────────────────────── */
.fs-footer {
  background: #002d5a;
  color: #ccd9e8;
  font-size: 13px;
  padding: 28px 24px;
  margin-top: auto;
}

.fs-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fs-footer-brand {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.fs-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.fs-footer-links a {
  color: #9bbcd6;
  text-decoration: none;
  transition: color .15s;
}
.fs-footer-links a:hover { color: #fff; }

.fs-footer-copy {
  color: #7a99b5;
  font-size: 12px;
  width: 100%;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.08);
}

@media (max-width: 640px) {
  .fs-footer-inner { flex-direction: column; align-items: flex-start; }
}
