/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Template: generatepress
Author: Tom Usborne
Author URI: https://generatepress.com/about
Description: GeneratePress is a lightweight WordPress theme built with a focus on speed and usability. Performance is important to us, which is why a fresh GeneratePress install adds less than 10kb (gzipped) to your page size. We take full advantage of the block editor (Gutenberg), which gives you more control over creating your content. If you use page builders, GeneratePress is the right theme for you. It is completely compatible with all major page builders, including Beaver Builder and Elementor. Thanks to our emphasis on WordPress coding standards, we can boast full compatibility with all well-coded plugins, including WooCommerce. GeneratePress is fully responsive, uses valid HTML/CSS, and is translated into over 25 languages by our amazing community of users. A few of our many features include 60+ color controls, powerful dynamic typography, 5 navigation locations, 5 sidebar layouts, dropdown menus (click or hover), and 9 widget areas. Learn more and check out our powerful premium version at https://generatepress.com
Tags: two-columns,three-columns,one-column,right-sidebar,left-sidebar,footer-widgets,blog,e-commerce,flexible-header,full-width-template,buddypress,custom-header,custom-background,custom-menu,custom-colors,sticky-post,threaded-comments,translation-ready,rtl-language-support,featured-images,theme-options
Version: 3.6.1.1788355269
Updated: 2026-09-02 13:21:09
*/

/* ============================================
   Marketing Approved - Design System
   Child Theme Custom Styles
   ============================================ */

:root {
    /* Primary palette */
    --ma-navy: #1B2A4A;
    --ma-green: #2E8B57;
    --ma-green-dark: #1E5C3A;
    --ma-offwhite: #F8FAF9;
    --ma-white: #FFFFFF;
    --ma-text: #1A1A2E;
    --ma-text-muted: #5A6B7A;
    --ma-border: #E2E8F0;

    /* Semantic */
    --ma-success: #2E8B57;
    --ma-warning: #D97706;
    --ma-error: #DC2626;

    /* Typography */
    --ma-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --ma-font-headings: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing scale */
    --ma-space-xs: 0.5rem;
    --ma-space-sm: 1rem;
    --ma-space-md: 1.5rem;
    --ma-space-lg: 2rem;
    --ma-space-xl: 3rem;
    --ma-space-xxl: 5rem;

    /* Border radius */
    --ma-radius-sm: 4px;
    --ma-radius-md: 8px;
    --ma-radius-lg: 16px;

    /* Shadows */
    --ma-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --ma-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.10);
    --ma-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Base typography */
body {
    font-family: var(--ma-font-primary);
    color: var(--ma-text);
    background-color: var(--ma-offwhite);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ma-font-headings);
    color: var(--ma-navy);
    font-weight: 700;
    line-height: 1.25;
}

p {
    line-height: 1.7;
    margin-bottom: var(--ma-space-md);
}

a {
    color: var(--ma-green);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--ma-green-dark);
}

/* Buttons */
.ma-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-family: var(--ma-font-primary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--ma-radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    border: none;
}

.ma-btn-primary {
    background-color: var(--ma-green);
    color: var(--ma-white);
}

.ma-btn-primary:hover {
    background-color: var(--ma-green-dark);
    color: var(--ma-white);
}

.ma-btn-navy {
    background-color: var(--ma-navy);
    color: var(--ma-white);
}

.ma-btn-navy:hover {
    background-color: #0F1A30;
    color: var(--ma-white);
}

.ma-btn-outline {
    background-color: transparent;
    color: var(--ma-green);
    border: 2px solid var(--ma-green);
}

.ma-btn-outline:hover {
    background-color: var(--ma-green);
    color: var(--ma-white);
}

/* Cards */
.ma-card {
    background-color: var(--ma-white);
    border: 1px solid var(--ma-border);
    border-radius: var(--ma-radius-lg);
    box-shadow: var(--ma-shadow-sm);
    padding: var(--ma-space-lg);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ma-card:hover {
    box-shadow: var(--ma-shadow-md);
    transform: translateY(-2px);
}

/* Sections */
.ma-section {
    padding: var(--ma-space-xxl) 0;
}

.ma-section-alt {
    background-color: var(--ma-white);
}

/* Container helper */
.ma-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--ma-space-md);
}

/* Text helpers */
.ma-text-muted {
    color: var(--ma-text-muted);
}

.ma-text-green {
    color: var(--ma-green);
}

.ma-text-navy {
    color: var(--ma-navy);
}
/* Newsletter form styling in hero section */
section .tnp-form label,
section .tnp-field label,
section .newsletter-form label {
    color: #FFFFFF !important;
    font-size: 0.9rem;
}

section .tnp-form input[type="text"],
section .tnp-form input[type="email"],
section .tnp-field input[type="text"],
section .tnp-field input[type="email"] {
    background-color: #FFFFFF;
    color: #1A1A2E;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    padding: 10px 15px;
    font-size: 1rem;
    width: 100%;
    margin-bottom: 10px;
}

section .tnp-form input[type="submit"],
section .tnp-field input[type="submit"],
section .tnp-button {
    background-color: #2E8B57 !important;
    color: #FFFFFF !important;
    border: none;
    border-radius: 6px;
    padding: 12px 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}

section .tnp-form input[type="submit"]:hover,
section .tnp-field input[type="submit"]:hover,
section .tnp-button:hover {
    background-color: #1E5C3A !important;
}