/*
Theme Name: itflowlab
Theme URI: https://itflowlab.com
Description: A custom WordPress theme for itflowlab
Version: 1.0.0
Author: itflowlab
Author URI: https://itflowlab.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: itflowlab
Domain Path: /languages
Requires at least: 5.0
Tested up to: 6.4
*/

:root {
	--color-primary: #007bff;
	--color-secondary: #6c757d;
	--color-success: #28a745;
	--color-danger: #dc3545;
	--color-light: #f8f9fa;
	--color-dark: #343a40;
	--font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--transition: all 0.3s ease;
}

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

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-family);
	line-height: 1.6;
	color: var(--color-dark);
	background-color: #fff;
}

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

a:hover {
	color: #0056b3;
}

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

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
	margin-bottom: 1rem;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	background-color: var(--color-primary);
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: var(--transition);
	font-size: 1rem;
	text-align: center;
}

.btn:hover {
	background-color: #0056b3;
	color: #fff;
	text-decoration: none;
}

.btn-secondary {
	background-color: var(--color-secondary);
}

.btn-secondary:hover {
	background-color: #5a6268;
}

/* WordPress Classes */
.alignleft {
	float: left;
	margin-right: 1em;
}

.alignright {
	float: right;
	margin-left: 1em;
}

.aligncenter {
	display: block;
	margin: 0 auto 1em;
}

.wp-caption {
	background: var(--color-light);
	padding: 0.5rem;
	border-radius: 4px;
	margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
	h1 { font-size: 2rem; }
	h2 { font-size: 1.75rem; }
	h3 { font-size: 1.5rem; }
	h4 { font-size: 1.25rem; }
}
