/* v. 1.21 - 2 Jun 2026 | Built with PioneerAIO, framework by Gabriele Gobbo · https://www.pioneeraio.it */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');
/* Stili nav + footer comuni a tutte le pagine HTML statiche del sito.
   Modifica qui per aggiornare nav e footer su tutte le pagine. */

/* Palette comune - fallback se la pagina non definisce le sue variabili */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --accent-lime: #a3ff12;
    --border-subtle: #1a1a1a;
}

/* CONTAINER (comune nav e footer) */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* NAVIGATION */
.main-header { background: var(--bg-primary); border-bottom: 1px solid var(--border-subtle); position: fixed; top: 0; left: 0; right: 0; z-index: 1000; backdrop-filter: blur(10px); }
.header-content { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; }
.logo-section { flex-shrink: 0; }
.logo-link { text-decoration: none; color: inherit; }
.site-title { font-size: 1.5rem; font-weight: 600; color: var(--accent-lime); margin: 0; letter-spacing: 0.5px; }
.main-nav { display: flex; gap: 2rem; align-items: center; }
.main-nav a { color: var(--text-secondary); text-decoration: none; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.5px; transition: color 0.3s ease; }
.main-nav a:hover { color: var(--accent-lime); }
.main-nav a.active { color: var(--accent-lime); }

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle { display: none; flex-direction: column; justify-content: space-between; width: 24px; height: 18px; background: none; border: none; cursor: pointer; padding: 0; }
.mobile-menu-toggle span { display: block; height: 2px; width: 100%; background-color: var(--text-secondary); transition: all 0.3s ease; }
.mobile-menu-toggle:hover span { background-color: var(--accent-lime); }

/* FOOTER */
.footer { background: var(--bg-primary); border-top: 1px solid var(--border-subtle); padding: 3rem 0 2rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; margin-bottom: 2rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.875rem; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--accent-lime); }

/* SOCIAL BUTTONS */
.footer-social { display: flex; gap: 0.75rem; justify-content: center; margin-bottom: 2rem; flex-wrap: wrap; }
.social-btn { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: #fff; border-radius: 6px; color: #000; font-size: 1rem; transition: background 0.2s ease, transform 0.2s ease; text-decoration: none; }
.social-btn:hover { background: var(--accent-lime); transform: translateY(-2px); }
.social-btn i { line-height: 1; }
.footer-bottom { text-align: center; padding: 30px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom p { margin: 0 0 8px 0; font-size: 0.9rem; font-weight: 500; opacity: 0.5; letter-spacing: -0.01em; color: var(--text-muted); }
.footer-bottom p + p { font-size: 0.75rem; font-weight: 300; margin-top: 0; }

/* RESPONSIVE TABLET */
@media (max-width: 992px) and (min-width: 769px) {
    .header-content { flex-direction: column; gap: 1rem; }
    .main-nav { gap: 1.5rem; justify-content: center; }
    .main-nav a { font-size: 0.8rem; }
    body { padding-top: 160px; }
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
    .site-title { font-size: 1.2rem; }
    .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-primary); border-top: 1px solid var(--border-subtle); flex-direction: column; gap: 0; padding: 1rem 0; }
    .main-nav.active { display: flex; z-index: 999; }
    .main-nav a { padding: 0.8rem 2rem; font-size: 0.9rem; }
    .mobile-menu-toggle { display: flex; position: relative; z-index: 1001; }
    .footer-links { flex-direction: column; align-items: center; gap: 1rem; }
}
