/*
Theme Name: Raban
Theme URI: https://example.com/raban
Author: Raban
Author URI: https://example.com
Description: Hybrid child theme of Twenty Twenty-Five with shared PHP header/footer, sectioned homepage, branded 404, and admin-editable menus/content.
Template: twentytwentyfive
Requires at least: 6.7
Tested up to: 6.8
Requires PHP: 7.4
Version: 1.0.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: raban
Tags: full-site-editing, block-patterns, block-styles, custom-colors, custom-logo, custom-menu, editor-style, featured-images, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, accessibility-ready, blog, portfolio

Raban WordPress Child Theme
https://example.com/raban
*/

/* -------------------------------------------------------------------------
   Child theme base styles
   Prefer theme.json for design tokens. Keep CSS lean and intentional.
   ------------------------------------------------------------------------- */

:root {
	--raban-focus-ring: 2px solid currentColor;
}

/* Accessible focus styles */
:focus-visible {
	outline: var(--raban-focus-ring);
	outline-offset: 2px;
}

/* Smooth scrolling — respect reduced motion */
html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* Image defaults for CLS / SEO */
img {
	height: auto;
	max-width: 100%;
}

/* Skip link visibility helper when parent styles are overridden */
.skip-link:focus {
	z-index: 100000;
}
