/* assets/css/squadre_page.css */

/* =========================================
   1. FONTS & VARIABILI
   ========================================= */
@font-face {
    font-family: 'DrukWide';
    src: url('../../doc/DrukWideBold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

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

/* VARIABILI GLOBALI */
:root {
    --rosa-elettrico: #ff19ff;
    --viola: #5e00ff;
    --bianco: #ffffff;
    --glass-bg: rgba(20, 20, 20, 0.7);
    --glass-border: rgba(255, 255, 255, 0.15);
    --neon-shadow: 0 0 10px rgba(255, 25, 255, 0.3);
}

body {
    /* Usa il font grassetto proprietario */
    font-family: 'HelveticaBold', Arial, sans-serif;
    padding-bottom: 50px;
    color: var(--bianco);
    margin: 0;
    overflow-x: hidden;
    position: relative;
    text-align: center;
    text-transform: uppercase;
}

/* FIX BACKGROUND MOBILE */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('../../imm/sfondouml25.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

h1 {
    font-family: 'DrukWide', sans-serif; /* Font Titoli Corretto */
    color: var(--bianco);
    padding-bottom: 5px;
    margin-top: 30px;
    font-size: 2rem;
    text-transform: uppercase;
}

h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--rosa-elettrico);
    margin: 10px auto 0;
    box-shadow: 0 0 10px var(--rosa-elettrico);
}

h2 {
    font-family: 'DrukWide', sans-serif;
    color: var(--rosa-elettrico);
    margin: 50px 0 20px;
    font-size: 1.4rem;
    text-transform: uppercase;
}

/* MOBILE */
@media (max-width: 600px) {
    h1 { font-size: 1.6rem; margin-top: 20px; }
    h2 { font-size: 1.2rem; margin: 30px 0 15px; }
}