/*
Theme Name: Twenty Twenty-Three
Theme URI: https://wordpress.org/themes/twentytwentythree
Author: the WordPress team
Author URI: https://wordpress.org
Description: Twenty Twenty-Three is designed to take advantage of the new design tools introduced in WordPress 6.1. With a clean, blank base as a starting point, this default theme includes ten diverse style variations created by members of the WordPress community. Whether you want to build a complex or incredibly simple website, you can do it quickly and intuitively through the bundled styles or dive into creation and full customization yourself.
Requires at least: 6.1
Tested up to: 6.9
Requires PHP: 5.6
Version: 1.6
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
Text Domain: twentytwentythree
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/
/* Base Resets & Variables */
:root {
    --primary: #0a3d62; /* Hybridge-style deep blue */
    --secondary: #3c6382;
    --accent: #f6b93b;
    --text-main: #2f3640;
    --text-muted: #718093;
    --bg-light: #f5f6fa;
    --bg-dark: #1e272e;
    
    /* System fonts prevent render-blocking requests */
    --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-stack);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 { line-height: 1.2; color: var(--primary); margin-bottom: 1rem; }
.text-white h2, .text-white p { color: #fff; }

/* Layout Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.section-padding { padding: 5rem 0; }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }
.text-center { text-align: center; }

/* Grid Systems */
.hero-grid, .split-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.grid-3-col {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 3rem;
}

/* Components */
.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-5px); }

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); }

/* Responsive Media Queries */
@media (min-width: 768px) {
    .hero-grid { grid-template-columns: 1fr 1fr; }
    .split-grid { grid-template-columns: 1fr 1fr; }
    .hero-text { padding-right: 2rem; }
}

@media (max-width: 767px) {
    .hero-text { text-align: center; }
    .button-group { display: flex; flex-direction: column; gap: 1rem; }
    .split-grid { grid-template-columns: 1fr; }
    .split-image { order: 2; } /* Put image below text on mobile */
}