/*
Theme Name: Nebraska
Theme URI:
Author:
Author URI:
Description: A modern, lightweight WordPress theme built with Tailwind CSS v4, ACF Pro, and Polylang. RTL-ready.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nebraska
Tags: custom-theme, tailwind, rtl-language-support, translation-ready
*/

/*
  This file is intentionally minimal.
  All design styles live in:
    - assets/src/tailwind.css   (compiled to assets/dist/tailwind.css)
    - assets/css/*.css           (component-specific styles, if any)
  Keep this file for WP theme metadata + accessibility primitives only.
*/

/* Accessible skip link */
.skip-link {
  position: absolute;
  inset-inline-start: 0;
  top: -40px;
  padding: 0.5rem 1rem;
  background: #000;
  color: #fff;
  z-index: 100000;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* Prevent horizontal scroll from off-canvas elements */
html, body {
  overflow-x: clip;
}

/* Body scroll lock when mobile menu / modal is open */
body.no-scroll {
  overflow: hidden;
}
