/*
Theme Name: TroveApps
Theme URI: https://troveapps.dev
Author: Trove Apps
Author URI: https://troveapps.dev
Description: Company theme for Trove Apps — showcasing Shopify apps with portfolio pages, blog, and SEO-optimized landing pages.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: troveapps
Tags: custom-logo, custom-menu, featured-images, blog, portfolio

TroveApps WordPress Theme
Copyright (C) 2026 Trove Apps
*/

/* ── CSS Custom Properties ── */
:root {
    --ta-primary: #1240E8;
    --ta-primary-hover: #0e34c0;
    --ta-primary-active: #0b2a9c;
    --ta-primary-light: rgba(18, 64, 232, 0.08);
    --ta-dark: #111827;
    --ta-gray-700: #374151;
    --ta-gray-500: #6B7280;
    --ta-gray-300: #D1D5DB;
    --ta-gray-100: #F3F4F6;
    --ta-white: #FFFFFF;
    --ta-radius: 0.5rem;
    --ta-radius-lg: 1rem;
    --ta-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --ta-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --ta-shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

/* ── Base Typography ── */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--ta-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--ta-dark);
}

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

a:hover {
    color: var(--ta-primary-hover);
}

/* ── Layout Utilities ── */
.section-padding {
    padding: 5rem 0;
}

.section-padding-sm {
    padding: 3rem 0;
}

.bg-light-blue {
    background-color: var(--ta-primary-light);
}

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