@charset "UTF-8";
/* =====================================================
   off_style.scss — entry point del foglio di stile
   Tutti i partials vengono interpolati qui.
   Compila in off_style.css con:
     sass off_style.scss off_style.css --style=expanded
   ===================================================== */
/* =====================================================
   _general.scss
   Regole generali del tema + reset (normalize-style)
   ===================================================== */
/* ---------- Variabili ---------- */
/* ---------- Reset / Normalize ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 40px;
  }
}

body {
  margin: 0;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #142233;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5em;
  font-weight: 800;
  line-height: 1.15;
  color: #142233;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
}

a {
  color: #8C1F2D;
  text-decoration: none;
  transition: color 0.25s ease;
}
a:hover, a:focus {
  color: #6E1622;
}

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

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
}

figure {
  margin: 0;
}

::-moz-selection {
  background: #8C1F2D;
  color: #FFFFFF;
}

::selection {
  background: #8C1F2D;
  color: #FFFFFF;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding: 96px 0;
}
@media (max-width: 1024px) {
  .section {
    padding: 72px 0;
  }
}
@media (max-width: 767px) {
  .section {
    padding: 56px 0;
  }
}
.section__head {
  text-align: center;
  margin-bottom: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .section__head {
    margin-bottom: 32px;
  }
}
.section__subhead {
  text-align: center;
  margin: 56px 0 32px;
}
@media (max-width: 767px) {
  .section__subhead {
    margin: 40px 0 24px;
  }
}
.section__title {
  font-size: clamp(2rem, 4vw + 1rem, 3.25rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
.section__subtitle {
  font-size: clamp(1.4rem, 2vw + 0.8rem, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.section__lead {
  font-size: 1.05rem;
  color: #3a4a5e;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .mob {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .desk {
    display: none !important;
  }
}

/* Variante sfondo alternato */
.section--alt {
  background: #f4f7fb;
}

/* Bandiera decorativa (linea bordeaux) sotto i titoli di sezione */
.section__title::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background: #8C1F2D;
  margin: 16px auto 0;
  border-radius: 2px;
}

/* =====================================================
   _header.scss
   Anchor menu sticky, voci centrali, no logo
   ===================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(160%) blur(8px);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid rgba(20, 34, 51, 0.06);
  transition: box-shadow 0.25s ease, background 0.25s ease;
  /* classe aggiunta da JS allo scroll */
}
.site-header.is-scrolled {
  box-shadow: 0 2px 8px rgba(20, 34, 51, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.site-nav {
  position: relative;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 767px) {
  .site-nav {
    height: 32px;
    justify-content: flex-end;
  }
}
.site-nav__list {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media (max-width: 1024px) {
  .site-nav__list {
    gap: 28px;
  }
}
@media (max-width: 767px) {
  .site-nav__list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #FFFFFF;
    border-top: 1px solid rgba(20, 34, 51, 0.08);
    box-shadow: 0 8px 24px rgba(20, 34, 51, 0.12);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
}
@media (max-width: 767px) {
  .site-nav__list.is-open {
    max-height: 320px;
  }
}
.site-nav__link {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #142233;
  padding: 8px 4px;
  position: relative;
  transition: color 0.25s ease;
}
.site-nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #8C1F2D;
  transition: width 0.25s ease;
}
.site-nav__link:hover, .site-nav__link:focus, .site-nav__link.is-active {
  color: #8C1F2D;
}
.site-nav__link:hover::after, .site-nav__link:focus::after, .site-nav__link.is-active::after {
  width: 100%;
}
@media (max-width: 767px) {
  .site-nav__link {
    display: block;
    width: 100%;
    padding: 16px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(20, 34, 51, 0.06);
  }
  .site-nav__link::after {
    display: none;
  }
}
.site-nav {
  /* Hamburger toggle — visibile solo da mobile */
}
.site-nav__toggle {
  display: none;
  width: 40px;
  height: 30px;
  padding: 8px;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .site-nav__toggle {
    display: flex;
  }
}
.site-nav__toggle span {
  display: block;
  height: 1px;
  width: 100%;
  background: #142233;
  border-radius: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.site-nav__toggle[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-nav__toggle[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.site-nav__toggle[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* =====================================================
   _home.scss
   Regole specifiche delle sezioni della home
   ===================================================== */
/* ---------- #section_hero ---------- */
#section_hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(135deg, #D6EBF3 0%, #A8D5E6 55%, #3D98D3 100%);
  /* Diagonale bordeaux sul lato destro/basso che richiama la locandina */
}
#section_hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: #8C1F2D;
  clip-path: polygon(0 38%, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}
@media (max-width: 767px) {
  #section_hero::before {
    height: 60%;
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
  }
}
#section_hero .hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: end;
  gap: 32px;
  min-height: 88vh;
  padding-top: 0;
}
@media (max-width: 1024px) {
  #section_hero .hero__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 24px;
    min-height: 0;
    padding-top: 72px;
    padding-bottom: 56px;
  }
}
@media (max-width: 767px) {
  #section_hero .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 16px;
  }
}
#section_hero .hero__image {
  position: relative;
  align-self: end;
}
#section_hero .hero__image img {
  display: block;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.18));
}
@media (max-width: 1024px) {
  #section_hero .hero__image img {
    max-width: 420px;
  }
}
@media (max-width: 767px) {
  #section_hero .hero__image img {
    max-width: 280px;
    margin: -40px auto 0 auto;
    position: relative;
    left: -25px;
  }
}
#section_hero .hero__content {
  color: #FFFFFF;
  padding-bottom: 72px;
}
@media (max-width: 1024px) {
  #section_hero .hero__content {
    padding-bottom: 48px;
  }
}
@media (max-width: 767px) {
  #section_hero .hero__content {
    padding-bottom: 24px;
  }
}
#section_hero .loghi_hero {
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
}
#section_hero .loghi_hero img {
  max-width: 180px;
}
@media (max-width: 767px) {
  #section_hero .loghi_hero {
    position: absolute;
    top: 80px;
    left: 10px;
    gap: 10px;
    flex-direction: column;
  }
  #section_hero .loghi_hero img {
    max-width: 90px;
  }
}
#section_hero .hero__eyebrow {
  display: block;
  font-size: clamp(3rem, 8vw + 1rem, 7rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  line-height: 1;
}
#section_hero .hero__title {
  margin: 0 0 16px;
  line-height: 0.95;
  color: #3D98D3;
}
#section_hero .hero__title .hero__title-small {
  display: block;
  font-size: clamp(1.1rem, 1.4vw + 0.8rem, 1.6rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
#section_hero .hero__title .hero__title-big {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.95;
}
@media (max-width: 767px) {
  #section_hero .hero__title .hero__title-big {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.2;
  }
}
#section_hero .hero__sub {
  font-size: clamp(1rem, 0.7vw + 0.85rem, 1.2rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  color: #FFFFFF;
  text-shadow: 0 0 20px #FFFFFF;
}
#section_hero .hero__date {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 18px;
  background: rgba(0, 255, 51, 0.25);
  border: 1px solid rgba(0, 255, 128, 0.75);
  text-transform: uppercase;
  border-radius: 999px;
}
@media (max-width: 767px) {
  #section_hero .hero__date {
    border-radius: 10px;
  }
}
#section_hero .hero__date {
  color: #FFFFFF;
  margin: 0;
}

/* ---------- #section_locandina ---------- */
#section_locandina {
  background: #f4f7fb;
}
#section_locandina .locandina__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 1024px) {
  #section_locandina .locandina__grid {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  #section_locandina .locandina__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
#section_locandina .locandina__col {
  margin: 0;
  background: #FFFFFF;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(20, 34, 51, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
#section_locandina .locandina__col img {
  width: 100%;
  height: auto;
  display: block;
}
#section_locandina .locandina__col figcaption {
  text-align: center;
  padding: 14px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8C1F2D;
  background: #FFFFFF;
}
#section_locandina .locandina__col:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(20, 34, 51, 0.18);
}

/* ---------- #section_lista01 + #section_lista02 (condivise) ---------- */
.section--lista .lista__head {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section--lista .lista__logo {
  width: 140px;
  height: auto;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .section--lista .lista__logo {
    width: 110px;
  }
}
.section--lista .lista__group {
  margin: 0 auto 8px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(20, 34, 51, 0.12);
}
.section--lista .lista__group img {
  width: 100%;
  height: auto;
  display: block;
}
.section--lista .people-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
@media (max-width: 1024px) {
  .section--lista .people-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }
}
@media (max-width: 767px) {
  .section--lista .people-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}
.section--lista .person {
  text-align: center;
}
.section--lista .person__photo {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 18px;
  overflow: hidden;
  background: #f4f7fb;
  box-shadow: 0 2px 8px rgba(20, 34, 51, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.section--lista .person__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.section--lista .person__name {
  margin: 14px 0 0;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #142233;
}
@media (max-width: 767px) {
  .section--lista .person__name {
    font-size: 0.85rem;
    letter-spacing: 0.02em;
  }
}
.section--lista .person:hover .person__photo {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(20, 34, 51, 0.12);
}
.section--lista .person:hover .person__photo img {
  transform: scale(1.04);
}

/* ---------- Varianti per lista 01 (civica - bordeaux) ---------- */
#section_lista01 {
  background: #FFFFFF;
}
#section_lista01 .section__title {
  color: #8C1F2D;
}
#section_lista01 .section__title::after {
  background: #8C1F2D;
}

/* ---------- Varianti per lista 02 (democratici - azzurro) ---------- */
#section_lista02 {
  background: #D6EBF3;
}
#section_lista02 .section__title {
  color: #8C1F2D;
}
#section_lista02 .section__title::after {
  background: #8C1F2D;
}
#section_lista02 .section__lead {
  color: #142233;
}

/* =====================================================
   _footer.scss
   ===================================================== */
.site-footer {
  background: #8C1F2D;
  color: #FFFFFF;
  padding: 32px 0;
}
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .site-footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}
.site-footer__copy {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
}
.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.site-footer__legal a {
  color: #FFFFFF;
  transition: opacity 0.25s ease;
}
.site-footer__legal a:hover, .site-footer__legal a:focus {
  color: #FFFFFF;
  opacity: 0.75;
}/*# sourceMappingURL=off_style.css.map */