/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/

:root {
	--font-gotham: 'Gotham', 'Montserrat', sans-serif;
}

body {
	font-family: var(--font-gotham);
}

/* Pure CSS Keyframe Animations */
@keyframes hw-draw-scribble {
	0% { stroke-dashoffset: 1000; }
	100% { stroke-dashoffset: 0; }
}

@keyframes hw-float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-6px); }
}

@keyframes hw-pulse-glow {
	0%, 100% { box-shadow: 0 0 0 0 rgba(217, 78, 40, 0.4); }
	50% { box-shadow: 0 0 0 8px rgba(217, 78, 40, 0); }
}

@keyframes hw-shimmer {
	0% { background-position: -200% 0; }
	100% { background-position: 200% 0; }
}

/* CSS Animation Utility Classes */
.scribble-svg {
	stroke-dasharray: 1000;
	stroke-dashoffset: 1000;
	animation: hw-draw-scribble 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hw-animate-float {
	animation: hw-float 4s ease-in-out infinite;
}

.hw-animate-pulse-glow {
	animation: hw-pulse-glow 2s infinite;
}

.hw-animate-shimmer {
	background: linear-gradient(90deg, #D94E28 0%, #f47d5e 50%, #D94E28 100%);
	background-size: 200% 100%;
	animation: hw-shimmer 3s infinite linear;
}

/* Card & Image Interactive CSS Transitions */
.hw-card-hover {
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hw-card-hover:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px -10px rgba(27, 44, 98, 0.15);
}

.hw-img-zoom {
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.hw-img-zoom:hover {
	transform: scale(1.05);
}

/* Pure CSS Accordion Chevron Rotation */
details summary .hw-accordion-icon {
	transition: transform 0.3s ease-in-out;
}
details[open] summary .hw-accordion-icon {
	transform: rotate(180deg);
}

/* Thin Orange/Navy Scrollbar */
html {
	scrollbar-width: thin;
	scrollbar-color: #D94E28 #1B2C62;
}

::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

::-webkit-scrollbar-track {
	background: #1B2C62;
}

::-webkit-scrollbar-thumb {
	background-color: #D94E28;
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background-color: #b83e1e;
}