/*
Theme Name: SpeedSix Tailwind Basic
Theme URI: https://example.com/
Author: SpeedSix
Description: Theme WordPress básico basado en Tailwind CSS con header sticky y efecto minimizado al hacer scroll.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: speedsix-tailwind
*/

/*
 * Tailwind se carga desde CDN en functions.php para que el theme funcione
 * inmediatamente sin proceso de compilación.
 *
 * Para producción, lo recomendable es compilar Tailwind localmente.
 */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

.admin-bar #site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar #site-header {
        top: 46px;
    }
}
