/* =========================================================
   10000 Nautica — style.css (asset globale del frontend)
   Le classi utility principali vengono da Tailwind (CDN);
   qui aggiungiamo personalizzazioni native della piattaforma.
   ========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #020617;
    color: #e2e8f0;
}

/* Input file nativi nei form */
input[type="file"]::file-selector-button {
    background: #2563eb;
    color: #fff;
    border: 0;
    border-radius: 0.5rem;
    padding: 0.5rem 0.9rem;
    font-weight: 700;
    font-size: 0.75rem;
    margin-right: 0.75rem;
    cursor: pointer;
}
input[type="file"]::file-selector-button:hover {
    background: #1d4ed8;
}

/* Swiper (home): pallini di paginazione */
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #2563eb;
}

/* Piccole rifiniture */
::selection {
    background: rgba(37, 99, 235, 0.35);
}