/*
Theme Name: Descurcă-te
Theme URI: https://descurca-te.uk
Description: Mobile-first Romanian job board + CV builder + salary guide for UK community
Version: 1.0.0
Requires at least: 5.8
Requires PHP: 8.1
Text Domain: descurca-te
Domain Path: /languages
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Created by Full Digital Solutions (https://fulldigitalsolutions.uk)
*/

:root {
	/* Colors (Romanian tricolor — blue primary, red accent) */
	--color-text: #0F172A;
	--color-primary: #1E40AF;
	--color-secondary: #CE1126;
	--color-success: #10B981;
	--color-warning: #F59E0B;
	--color-danger: #EF4444;
	--color-bg: #F8FAFC;
	--color-card: #FFFFFF;
	--color-border: #E2E8F0;

	/* Typography */
	--font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
	--font-size-base: 16px;
	--font-size-sm: 14px;
	--font-size-xs: 12px;
	--font-size-lg: 18px;
	--font-size-xl: 20px;
	--font-size-2xl: 24px;

	/* Spacing */
	--space-xs: 4px;
	--space-sm: 8px;
	--space-md: 16px;
	--space-lg: 24px;
	--space-xl: 32px;
	--space-2xl: 48px;

	/* Border radius */
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 12px;

	/* Shadows */
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: var(--font-size-base);
}

body {
	font-family: var(--font-family);
	color: var(--color-text);
	background-color: var(--color-bg);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--color-secondary);
}

button, [role="button"] {
	font-family: inherit;
	cursor: pointer;
	border: none;
	background: none;
}

input, textarea, select {
	font-family: inherit;
	font-size: inherit;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
