html, body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    text-align: center;
    height: 100vh; /* Imposta l'altezza del corpo per coprire l'intera finestra */
    background-image: url('/images/background.jpg'); /* Sostituisci con il percorso della tua immagine */
    background-size: cover; /* Copre l'intera area */
    background-position: center; /* Centra l'immagine */
    background-repeat: no-repeat; /* Non ripete l'immagine */
    background-attachment: fixed; /* Fissa l'immagine di sfondo */
    overflow-x: hidden; /* Nasconde lo scorrimento orizzontale */
}

header {
    /*background-color: #111;*/
    color: white; /* Colore del testo dell'intestazione */
    text-align: center; /* Allinea il testo al centro */
    padding: 20px; /* Padding per l'intestazione */
    background-color: rgba(0, 0, 0, 0.5); /* Sfondo semi-trasparente per migliorare la leggibilità */
}

main {
    color: white; /* Colore del testo principale */
    padding: 20px; /* Padding per il contenuto principale */
}

.logo {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #222;
    position: relative;
}

.hal-eye {
    width: 80px;
    height: 80px;
    background-color: red;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 10px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

h1 {
    font-size: 2.5em;
    margin: 10px 0;
}

h2 {
    font-size: 1.5em;
    margin: 5px 0;
}

.welcome {
    margin: 50px 0;
}

.chat-button {
    background-color: red;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.chat-button:hover {
    background-color: #ff4444;
}

.info {
    margin: 20px 0;
}

footer {
    background-color: #111;
    /*padding: 20px;*/
    /*position: relative;*/
    bottom: 0;
    width: 100%;
    color: white; /* Colore del testo del footer */
    text-align: center; /* Allinea il testo al centro */
    padding: 10px; /* Padding per il footer */
}

.social-media a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

/* Media query per dispositivi mobili */
@media (max-width: 768px) {
    body {
        background-attachment: fixed; /* Mantiene l'immagine fissa su smartphone */
    }
}
#whatsappButton {
   position: fixed;
   bottom: 20px;
   right: 20px;
   background-color: #25D366;
   color: white;
   padding: 15px;
   border-radius: 50%;
   text-align: center;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
   cursor: pointer;
   font-size: 24px;
   /*display: none;  Inizialmente nascosto */
}