/*-------------------------------------------------------------------
     * software: .... AETHEROS PHP CUSTOMIZABLE FRAMEWORK
     * version:  .... 25.1
     * content:  .... Stili per il footer fisso in fondo alla pagina
     * author :  .... Poggi Donato 2025
     * copyright .... © 2020-2025 ITC-CS G. Poggi Donato - Gavi (AL)
    -------------------------------------------------------------------*/



/* Footer */
  .footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 36px;
    background-color: rgba(var(--ae-bg-footer-rgb), 0.4); /* opacità base */
    font-family: 'Tomorrow', sans-serif;
    font-size: 15px;
    color: var(--ae-footer-link,#6c757d);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 15px;
    /*border-top: 1px solid var(--bs-border-color);*/
    z-index: 1000;
    backdrop-filter: blur(6px); /* sfocatura dello sfondo elegante */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }

  /* Hover effect */
  .footer:hover {
    background-color: rgba(var(--ae-bg-footer-rgb), 0.8); /* più opaco */
    box-shadow: 0 -2px 10px rgba(255, 255, 255, 0.2); /* bagliore verso l’alto */
  }

  .footer-link {
    color: var(--ae-footer-link,#6c757d);
    text-decoration: none;
  }
  .footer-link:hover {
    color: var(--ae-footer-link-hover, #2E2E2E);
    text-decoration: none;
  }

  .footer .version {
    font-size: 12px; /* Dimensione del testo per la versione */
    margin-left: 4px;
    padding-top: 1px;
  }





