/*
Theme Name: MCT Cyber Ocean Pro
Theme URI: https://mycomputertherapy.com/themes/cyber-ocean/
Description: A premium dark oceanic child theme for GeneratePress, featuring 10 custom block patterns, Tide Mode toggle, and responsive layouts. Perfect for tech companies and digital services.
Author: My Computer Therapy
Author URI: https://mycomputertherapy.com/
Template: generatepress
Version: 1.1.0
Release Date: August 6, 2025
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: dark, ocean, accessibility-ready, custom-colors, custom-menu, editor-style, featured-images, full-width-template, sticky-post, theme-options, translation-ready, block-styles, block-patterns, wide-blocks, two-columns, left-sidebar, right-sidebar
Text Domain: mct-cyber-ocean
*/

/* Import GeneratePress parent theme styles */
@import url('../generatepress/style.css');

/* Basic Dark Mode Reset */
body {
	background-color: #1a1a1a; /* Default dark background */
	color: #e0e0e0; /* Default light text */
	transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark-mode {
	/* Styles defined in assets/css/style.css will override */
	background-color: var(--wp--preset--color--graphite);
	color: var(--wp--preset--color--light-gray);
}

/* Add other minimal resets if needed */
