/*
Theme Name: Legioval
Theme URI: https://legionellavalencia.es
Author: Legioval
Author URI: https://legionellavalencia.es
Description: Tema ligero optimizado para el control de Legionella en Valencia. Incluye TailwindCSS CDN y animaciones AOS.
Version: 1.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: legioval
Tags: tailwind, responsive, blog, limpieza
*/

/* Tipografía base */
body { font-family: 'Inter', sans-serif; }

/* === Navegación principal === */

/* Reinicio lista */
#site-nav ul,
#site-nav li { list-style: none; margin: 0; padding: 0; }

/* Enlaces */
#site-nav a {
    display: block;
    padding: 0.5rem 0.75rem; /* py-2 px-3 */
    color: #374151;          /* gray-700 */
    font-weight: 500;
    text-decoration: none;
    transition: color .15s ease;
}
#site-nav a:hover,
#site-nav a:focus,
#site-nav .current-menu-item > a { color: #0284c7; } /* sky-600 */

/* Separación horizontal en desktop */
@media (min-width: 768px) {
    #site-nav ul > li + li { margin-left: 2rem; } /* 32px */
}

/* Menú móvil: separadores */
@media (max-width: 767px) {
    #site-nav li { border-bottom: 1px solid #e5e7eb; } /* gray-200 */
    #site-nav li:last-child { border-bottom: none; }
}

/* Scrollbar minimal */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
::-webkit-scrollbar-thumb { background: #0ea5e9; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #0369a1; }
