/*
Theme Name: Kiosk Pure Theme
Theme URI: https://example.com
Author: Gemini AI
Description: Un tema ultra-minimale progettato specificamente per Totem Touch Screen. Rimuove header, footer e barre di sistema.
Version: 1.0
*/

/* --- RESET DI BASE --- */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden; /* Evita scroll orizzontale */
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f4f4; /* Colore di sfondo neutro */
    color: #333;
    line-height: 1.6;
    font-size: 18px; /* Testo base più grande per leggibilità a distanza */
}

/* --- NASCONDI BARRA AMMINISTRAZIONE --- */
/* Anche se disabilitata via PHP, forziamo la rimozione visiva per sicurezza */
#wpadminbar {
    display: none !important;
}
html {
    margin-top: 0 !important;
}

/* --- CONTENITORE PRINCIPALE --- */
/* Centra il contenuto se la pagina è corta, altrimenti lascia scrollare */
#kiosk-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centra verticalmente */
    width: 100%;
}

/* Rimuove i margini dai paragrafi vuoti che WordPress a volte aggiunge */
p:empty {
    display: none;
}

/* Migliora la selezione touch */
a, button, input {
    touch-action: manipulation;
}