@font-face {
    font-family: 'Rubik';
    src: url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;600;700&display=swap');
}

/* Stili generali */
body {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: fff;
    background: linear-gradient(
    rgba(28,112,142,0.9), /* Colore del gradiente (semi-trasparente) */
    rgba(79,181,169,0.8) /* Colore finale del gradiente (semi-trasparente) */),
    url('img/back@2x.png'); /* Sostituisci con il percorso della tua immagine */
    background-position: bottom right;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: contain; /* Puoi usare 'cover' o 'contain' se desideri ridimensionare l'immagine */
    background-color: linear-gradient(to right, #17688C, #4EB3A8);
    height: 100vh; /* Imposta la vista a schermo intero */
}

/* Header */
.header {
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    /*! box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    font-size: 0px;
    font-weight: bold;
    text-align: center;
    width: 100%;
}

.menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 10px;
    border-radius: 5px;
}

.menu a {
    text-decoration: none;
    color: #fff;
    padding: 10px;
    display: block;
}

.menu.show {
    display: flex;
}

.menu-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Contenuto */

.content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px !important;
    padding: 0px;
}

h1 {
    font-size: 91px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 900;
    font-style: normal;
    margin-bottom: 0;
    color: #fff;
    margin-top: 0;
}

p {
    color: #fff;
    font-size: 58px;
    margin-bottom: 0px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 300;
    font-style: normal;
    margin-top: 0;
}

.button {
    padding: 10px 20px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 6rem;
    background: #fc0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.5s;
    color: #000;
    
}

.button:hover {
   background: #fc0;
}

.sottotitolo {
    width: 80%;
    font-size: 1.5rem;
    margin-top: 2rem;
    color: #fff;
    padding-bottom: 2rem;
}

.riga {
    /* align-items: center; */
    display: flex;
}

.colonna {
    width: 25%;
}

/* Numero grande */
.numero {
  font-size: 6rem;
  color: #fc0;
}

/* Testo sotto il numero */
.descrizione {
  font-size: 3rem;
  color: #fff;
  margin-top: 0;
  margin-bottom: 2rem;
    line-height: 90%;
    width: 22vw;
    text-align: center;
}



/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: auto;
}

.accordion {
    font-family: 'Rubik', sans-serif;
    background-color: rgba(255, 255, 255, 0.1) !important; /* Leggero effetto trasparente */

    --bs-accordion-btn-focus-border-color: transparent !important;
}

/* Rendi trasparente l'header dell'Accordion */
.accordion-button {
    background-color: transparent !important;
    color: white !important; /* Cambia colore testo se necessario */
    border: none !important;
}

/* Quando è attivo, rimuovi il background */
.accordion-button:not(.collapsed) {
    background-color: rgba(255, 255, 255, 0.4) !important; 
}
/* Cambia il colore dell'icona dell'Accordion */
.accordion-button::after {
    filter: invert(1); /* Inverte il colore (utile per sfondi scuri) */
     /* Cambia colore icona */
}
.accordion-button:focus {
    box-shadow: none !important;
    outline: none !important;
}

/* Rendi trasparente il corpo dell'Accordion */
.accordion-body {
    background-color: transparent !important;
    color: white !important;
}

/* Rimuovi il bordo */
.accordion-item {
    background-color: transparent !important;
    color: white !important; /* Cambia colore testo se necessario */
    border: none !important;
}

.privaypolicy {
    font-family: 'Rubik', sans-serif;
    text-align: start;
}

.privaypolicy p {
    font-family: 'Rubik', sans-serif;
}
.privaypolicy h5 {
    font-family: 'Rubik', sans-serif;
    color: #fff;
}


@media screen and (max-width: 600px) {
    /* Ridimensiona il contenuto */
    .content {
        padding: 0px 20px;
    }

    h1 {
        font-size: 48px; /* Riduce la dimensione del titolo */
    }

    p {
        font-size: 28px; /* Riduce la dimensione del sottotitolo */
    }

    .button {
        font-size: 3rem; /* Riduce il pulsante */
        padding: 16px 16px;
    }

    .riga {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .colonna {
        width: 100%; /* Aumenta la larghezza delle colonne per riempire lo schermo */
        /* margin-bottom: 20px; */
    }

    .numero {
        font-size: 6rem; /* Riduce la dimensione del numero */
    }

    .descrizione {
        font-size: 2rem; /* Riduce la descrizione */
        width: inherit;
    }

    /* Modifica il menu */
    .menu {
        top: 50px;
        right: 10px;
    }

    .menu a {
        font-size: 18px;
        padding: 8px;
    }

    .footer {
        display: none;
    }
}

@media screen and (min-width: 600px) and (max-width: 1200px) {
 
    .descrizione {
        font-size: 1.6rem;
        width: 100%;
    }

}

/* Stile generale per la barra */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #333;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    display: none; /* Nasconde la barra su desktop */
    z-index: 1000;
}

/* Mostra la barra solo su dispositivi mobili */
@media screen and (max-width: 768px) {
    .bottom-nav {
        display: flex !important;
    }

    .button {
        display: none !important;
    }

    .content {
        margin-bottom: 60px !important;
    }
}

/* Stile delle icone */
.bottom-nav a {
    text-decoration: none;
    color: white;
    font-size: 20px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 48px;
}

/* Stile per le icone */
.bottom-nav i {
    font-size: 20px !important;
}

.icona-scan {
    margin-top: -40px;
    border-radius: 50%;
    box-shadow: 0 -2px 10px rgba(51, 51, 51, 0.7);
}