/*
Theme Name: KyiaKB
Theme URI: https://kyiakb.com
Author: Your Name
Author URI: https://yourwebsite.com
Description: Custom WordPress theme for Kyia KB portfolio. Features a modern design with video showcases, project carousel, and blog functionality. Built with Tailwind CSS and custom animations.
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.2
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kyiakb
Tags: custom-design, blog, portfolio, custom-colors, custom-menu, custom-logo, editor-style, featured-images, sticky-post, threaded-comments, translation-ready
*/

/*
 * Base styles for KyiaKB theme
 * 
 * The main Tailwind CSS is compiled and enqueued via functions.php
 * Custom styles can be added in assets/css/style.css
 */

/* Basic reset and typography */
* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	line-height: 1.6;
	color: #333;
}

/* Link styles */
a {
	color: #dc2626; /* Red-600 to match theme */
	text-decoration: none;
}

a:hover,
a:focus {
	text-decoration: underline;
}

/* Focus styles for accessibility */
:focus {
	outline: 2px solid #dc2626;
	outline-offset: 2px;
}

/* WordPress block editor styles */
.wp-block {
	max-width: 100%;
}

