/*
Theme Name: NetAcademy
Theme URI: https://example.com/netacademy
Author: NetAcademy
Author URI: https://example.com
Description: Custom magazine-style WordPress theme (French IT magazine-inspired layout) built from scratch with Tailwind CSS via CDN (no build step). No proprietary assets are included.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: netacademy
Tags: news, blog, magazine, two-columns, custom-menu, responsive-layout

NOTE:
- Add a `screenshot.png` at the theme root (recommended by WordPress). This repository intentionally does not generate images.
*/

/*
  Base tweaks (Tailwind is loaded via CDN; this file only adds small theme-level fixes).
*/

/* Improve default focus visibility (Tailwind provides utilities too, but this is a safe baseline). */
:focus-visible {
  outline: 2px solid #0056b3;
  outline-offset: 2px;
}

/* Avoid horizontal overflow caused by long words/URLs. */
html,
body {
  overflow-x: hidden;
}

/* Hero featured image scale animation on page load */
@keyframes hero-scale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.02);
  }
}

.animate-hero-scale {
  animation: hero-scale 8s ease-in-out infinite alternate;
}