/*
Theme Name: Visi Executor Block Theme
Description: A modern block theme for HR services and professional businesses
Author: Visi Executor
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: visi-executor
Tags: block-theme, full-site-editing, custom-colors, custom-logo, editor-style, featured-images, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks
*/

/*
This file is required for WordPress to recognize this as a theme.
In block themes, most styling is handled through theme.json and block styles.
This file mainly serves as the theme identifier.
*/

/* Basic reset and foundation styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Ensure responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* Basic link styles */
a {
    color: var(--wp--preset--color--primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Basic button reset */
button {
    cursor: pointer;
}

/* Screen reader text utility */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* Skip link */
.skip-link {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    position: absolute;
    left: 6px;
    top: 7px;
    z-index: 999999;
    padding: 8px 16px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
}