/*
Theme Name: Innowork
Theme URI: https://innowork.local
Author: Antigravity
Author URI: https://github.com/google-deepmind
Description: A premium WordPress theme for Innowork — office interior design & furniture manufacturing. Features Tailwind CSS, DIN Pro typography, responsive navigation, hero sliders, animated counters, project showcases, and newsletter integration.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: innowork
Tags: custom-menu, featured-images, flexible-header, theme-options, translation-ready, one-column, grid-layout
*/

/* ===== DIN Pro Font Family ===== */
@font-face {
	font-family: 'DIN Pro';
	src: url('font/DIN%20Pro/dinpro_light.otf') format('opentype');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'DIN Pro';
	src: url('font/DIN%20Pro/dinpro.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'DIN Pro';
	src: url('font/DIN%20Pro/dinpro_medium.otf') format('opentype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'DIN Pro';
	src: url('font/DIN%20Pro/dinpro_bold.otf') format('opentype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'DIN Pro';
	src: url('font/DIN%20Pro/dinpro_black.otf') format('opentype');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'DIN Pro';
	src: url('font/DIN%20Pro/dinpro_italic.otf') format('opentype');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'DIN Pro';
	src: url('font/DIN%20Pro/dinpro_bolditalic.otf') format('opentype');
	font-weight: 700;
	font-style: italic;
	font-display: swap;
}

/* ===== Base Reset ===== */
* {
	font-family: 'DIN Pro', sans-serif;
}

/* ===== No-Scrollbar Utility ===== */
.no-scrollbar::-webkit-scrollbar {
	display: none;
}
.no-scrollbar {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

/* ===== WordPress Menu Reset ===== */
.menu,
.menu ul,
.menu li {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* ===== WordPress Core Alignment ===== */
.alignleft {
	float: left;
	margin-right: 1.5em;
	margin-bottom: 1em;
}
.alignright {
	float: right;
	margin-left: 1.5em;
	margin-bottom: 1em;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1em;
}

/* ===== Screen Reader Text (Accessibility) ===== */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important;
}
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* ===== WordPress Block Editor Spacing ===== */
.entry-content > * + * {
	margin-top: 1.5em;
}

/* ===== WordPress Image Captions ===== */
.wp-caption {
	max-width: 100%;
}
.wp-caption-text {
	font-size: 0.875rem;
	color: #6b7280;
	text-align: center;
	padding-top: 0.5rem;
}

/* ===== Brand Logo Infinite Auto-Slider Marquee ===== */
@keyframes scroll-left {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

@keyframes scroll-right {
	0% {
		transform: translateX(-50%);
	}
	100% {
		transform: translateX(0);
	}
}

.animate-scroll-left {
	display: flex;
	width: max-content;
	animation: scroll-left 25s linear infinite;
}

.animate-scroll-right {
	display: flex;
	width: max-content;
	animation: scroll-right 25s linear infinite;
}

.animate-scroll-left:hover,
.animate-scroll-right:hover {
	animation-play-state: paused;
}
