@charset "utf-8";
/* CSS Document */

/* Footer */
.footer-section {
  background-color: #19236B; /* blu */
  color: #fff;
  padding: 30px 15px;
  text-align: center;
}

/* Titolo */
.footer-section h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

/* Testi */
.footer-section .rights {
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
}

.footer-section a {
  color: #fff;
  text-decoration: underline;
}

.footer-section a:hover {
  color: #ea9849; /* accento hover */
}

/* Mantieni footer in fondo anche se la pagina è corta */
html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

.page-foot {
  margin-top: auto; /* spinge il footer in fondo */
}

/* Mantieni la pagina a tutta altezza e spingi il footer in basso */
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

/* Footer in basso */
.page-foot {
  margin-top: auto;
}

/* Stile footer */
.footer-section {
  background-color: #19236B;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

/* Titolo footer */
.footer-section h4 {
  margin-bottom: 20px;
  font-size: 1.8rem;   /* più grande */
  font-weight: 800;
  color: #fff;
}

/* Testi principali */
.footer-section .rights {
  font-size: 1.2rem;   /* più grande */
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Link */
.footer-section a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

.footer-section a:hover {
  color: #ea9849; /* colore hover */
}

/* Reset e layout a tutta altezza */
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

/* Contenuto principale prende spazio disponibile */
.page {
  flex: 1;
}

/* Footer sempre in basso */
.page-foot {
  background-color: #19236B;
  color: #fff;
  padding: 50px 20px;   /* fascia più alta */
  text-align: center;
}

/* Titolo footer */
.footer-section h4 {
  margin-bottom: 20px;
  font-size: 2rem;      /* ancora più grande */
  font-weight: 800;
}

/* Testi principali */
.footer-section .rights {
  font-size: 1.3rem;    /* testi più grandi */
  line-height: 2;       /* più aria */
  margin: 0;
}

/* Link */
.footer-section a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

.footer-section a:hover {
  color: #ea9849;
}
