/*
Theme Name: Circuit Craftworks
Description: Custom-coded Circuit Craftworks child theme using Hello Elementor only as the parent WordPress foundation.
Author: Circuit Craftworks
Template: hello-elementor
Version: 1.3.0
Text Domain: circuit-craftworks
Requires PHP: 7.4
*/

/* =========================================================
   GLOBAL CHILD-THEME FOUNDATION
   ========================================================= */

html {
	scroll-padding-top: 110px;
}

.cc-skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 100000;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 16px;
	color: #ffffff;
	background: linear-gradient(135deg, #4a86ff, #7b68ee);
	border: 2px solid #fbfdff;
	border-radius: 14px;
	box-shadow: 0 16px 35px rgba(55, 103, 255, 0.32);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	font-size: 13px;
	font-weight: 850;
	line-height: 1;
	text-decoration: none;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-150%);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.cc-skip-link:focus {
	color: #ffffff;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	outline: 3px solid #80b0ff;
	outline-offset: 3px;
}
