/**
 * style-v2.css — The Kiss Project — "Versione 2" (Solo H1, H2 e H3)
 * -------------------------------------------------------------------
 * Tutto il sito resta identico alla V1. L'unica differenza è sui tag
 * <h1>, <h2> e <h3>: qui, dove main.css/custom.css impongono
 * MAIUSCOLO forzato (text-transform: uppercase) o una spaziatura tra
 * lettere (letter-spacing), viene neutralizzato. Nessun altro
 * elemento è toccato: menu, pulsanti, altri titoli (h4-h6), tutto
 * torna come nella V1. Font: Montserrat (titoli) e Open Sans (corpo
 * del testo) restano quelli originali della V1, nessun font-family
 * viene sostituito.
 *
 * COME FUNZIONA
 * Questo file viene caricato SEMPRE nell'<head>, ma la regola è
 * annidata sotto "body.theme-v2": finché quella classe non è
 * presente sul <body>, il file è completamente inerte e il sito
 * mostra la Versione 1 (custom.css) esattamente come oggi.
 * Lo switcher (switcher.js) aggiunge/rimuove .theme-v2 su <body>.
 */

body.theme-v2 h1,
body.theme-v2 h1::before,
body.theme-v2 h1::after,
body.theme-v2 h2,
body.theme-v2 h2::before,
body.theme-v2 h2::after,
body.theme-v2 h3,
body.theme-v2 h3::before,
body.theme-v2 h3::after {
  text-transform: none !important;
  letter-spacing: 0 !important;
}
