/*
Theme Name: ARI Clinical Trials
Theme URI: https://ariclinicaltrials.com
Author: Advancing Research International
Author URI: https://ariclinicaltrials.com
Description: Custom theme for Advancing Research International - a physician-led, multi-site clinical research network with deep ophthalmology expertise. Sponsor-conversion focused design with compliance-ready forms.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.4
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: ari-theme
Tags: full-site-editing, block-patterns, clinical, healthcare, research

ARI Clinical Trials WordPress Theme
Copyright 2024 Advancing Research International
*/

/* Base Reset & Box Sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Body defaults handled by theme.json, but fallback here */
body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Focus styles for accessibility */
:focus-visible {
    outline: 2px solid var(--wp--preset--color--accent-green);
    outline-offset: 2px;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--wp--preset--color--primary-dark);
    color: white;
    padding: 8px 16px;
    z-index: 100000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--wp--preset--color--secondary-light);
}

::-webkit-scrollbar-thumb {
    background: var(--wp--preset--color--steel-blue);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--wp--preset--color--primary-dark);
}
