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

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

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

/* VARIABILI GLOBALI 2026 */
:root {
    --rosa-neon: #ff19ff;
    --viola: #790cfd;
    --bianco: #ffffff;
    --glass-bg: rgba(18, 0, 40, 0.7); /* Vinaccia Trasparente */
    --glass-border: rgba(255, 25, 255, 0.15);
    --neon-shadow: 0 0 7px rgba(255, 25, 255, 0.3);
}

body {
    font-family: 'HelveticaBold', Arial, sans-serif;
    padding-bottom: 34px;
    color: var(--bianco);
    margin: 0;
    overflow-x: hidden;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    background-color: #120028 !important; /* Base Vinaccia */
}

/* FIX BACKGROUND 2026 (Overlay + Immagine) */
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;
}

h1 {
    font-family: 'DrukWide', sans-serif; 
    font-style: italic;
    color: var(--bianco);
    padding-bottom: 3px;
    margin-top: 20px;
    font-size: 1.34rem;
    text-transform: uppercase;
}

h1::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--rosa-neon);
    margin: 7px auto 0;
    box-shadow: 0 0 7px var(--rosa-neon);
}

.section-title {
    font-family: 'DrukWide', sans-serif;
    font-size: 1.68rem !important;
    color: var(--bianco);
    margin: 20px 0 10px 0;
    text-transform: uppercase;
}

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

/* MOBILE */
@media (max-width: 402px) {
    h1 { font-size: 1.07rem; margin-top: 13px; }
    h2 { font-size: 0.8rem; margin: 20px 0 10px; }
}