/* assets/css/gironi_page.css - TEMA 2026 */

/* =========================================
   1. DEFINIZIONE FONTS
   ========================================= */
@font-face {
    font-family: 'DrukWide';
    src: url('/assets/doc/DrukTextWide-MediumItalic-Trial.otf') format('opentype');
    font-weight: bold;
    font-style: italic; /* Aggiornato al corsivo */
}

@font-face {
    font-family: 'HelveticaBold';
    src: url('/assets/doc/HelveticaBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* =========================================
   2. STILI BASE PAGINA E SFONDO
   ========================================= */
:root {
    --rosa-neon: #ff19ff; /* Rinominato per uniformità */
    --viola: #790cfd;
    --bianco: #ffffff;
    --testo-bianco: #ffffff;
}

body {
    /* APPLICAZIONE FONT GRASSETTO */
    font-family: 'HelveticaBold', Arial, sans-serif !important;
    font-weight: bold !important;
    
    padding-bottom: 20px;
    color: var(--bianco);
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    
    /* BASE VINACCIA 2026 */
    background-color: #120028 !important;
    
    position: relative;
    min-height: 100vh;
    z-index: 0;
}

/* NUOVO SFONDO FISSO CON OVERLAY VINACCIA */
body::before {
    content: "";
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100vh;
    
    background: linear-gradient(rgba(18, 0, 40, 0.5), rgba(18, 0, 40, 0.5)), url('/assets/imm/gradiente26.jpg') center/cover no-repeat;
    
    z-index: -1;
    transform: translateZ(0);
    will-change: transform;
}

/* TITOLI */
h1 {
    font-family: 'DrukWide', sans-serif !important;
    font-style: italic !important;
    color: var(--bianco);
    padding-bottom: 7px;
    margin-top: 20px;
    font-size: 1.34rem;
    text-transform: uppercase;
    text-shadow: 0 3px 7px rgba(18, 0, 40, 0.5); /* Ombra in tinta */
}

/* Sottolineatura neon H1 */
h1::after {
    content: ''; display: block; width: 54px; height: 2px;
    background: var(--rosa-neon); margin: 10px auto 0;
    box-shadow: 0 0 7px var(--rosa-neon);
}

h2 {
    font-family: 'DrukWide', sans-serif !important;
    font-style: italic !important;
    color: var(--rosa-neon);
    margin: 27px 0 13px;
    font-size: 1rem;
    text-transform: uppercase;
}

/* Fix Mobile */
@media (max-width: 515px) {
    h1 { font-size: 1.07rem; margin-top: 13px; }
    h2 { font-size: 0.8rem; }
}