/*
Theme Name: arraystory
Theme URI: https://arraystory.com
Description: Official WordPress theme for arraystory.
Version: 1.0.0
Author: arraystory
Author URI: https://arraystory.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: arraystory
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.4
*/

/**
 * Tailwind CSS loaded via CDN in functions.php
 * Inter font loaded from Google Fonts
 * This file contains only theme metadata and minimal resets
 */

/* Ensure smooth scrolling */
html {
	scroll-behavior: smooth;
}

/* Remove default margins and set Inter font */
body {
	margin: 0;
	padding: 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Fix sticky header for WordPress admin bar */
.admin-bar .admin-bar-offset {
	top: 32px;
}

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