/*
Theme Name: Cyberfox
Theme URI: https://cyberfox.com.au
Description: A modern Gutenberg block theme for Cyberfox - WordPress development specialists. Features custom blocks, editable headers/footers, and full block-based design capabilities.
Version: 1.0.0
Author: Cyberfox
Author URI: https://cyberfox.com.au
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cyberfox
Domain Path: /languages
Requires at least: 6.0
Requires PHP: 7.4
Tags: block-theme, full-site-editing, gutenberg, responsive, custom-blocks

This theme is a block-based theme designed for WordPress 6.0+.
It provides a complete block editing experience with custom Gutenberg blocks,
editable headers and footers, and full site editing capabilities.
*/

/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	line-height: 1.6;
	color: #111111;
	background-color: #ffffff;
}

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

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

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

/* Responsive Images */
img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Block Editor Styles */
.wp-block-group {
	margin-bottom: 2rem;
}

.wp-block-columns {
	gap: 2rem;
}

/* Utility Classes */
.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

