/*
Theme Name: HMA Technology
Theme URI: https://hmatechnology.com
Author: Muhammad Imtiaz
Author URI: https://hmatechnology.com
Description: Strategic digital systems for high-ticket experts
Version: 1.0
Template: kadence
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hma-technology
Tags: custom-background, custom-logo, custom-menu
*/

/* Import parent Kadence styles */
@import url("../kadence/style.css");

/* Your custom styles */
:root {
    --brand-primary: #FF4500; /* HMA orange */
    --brand-secondary: #808080; /* HMA gray */
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f9fafb;
}

/* Body styles */
body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
}

/* Headings */
h1, h2, h3 {
    color: var(--text-dark);
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Buttons */
.button, .wp-block-button__link {
    background-color: var(--brand-primary);
    color: white !important;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
    display: inline-block;
}

.button:hover, .wp-block-button__link:hover {
    background-color: #E53E00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 69, 0, 0.2);
}

/* CTA Section */
.cta-section {
    background-color: var(--bg-light);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.cta-section h2 {
    color: var(--brand-primary);
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 25px;
    font-size: 1.1rem;
}

/* Social Proof */
.social-proof {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
}

.social-proof-item {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    max-width: 300px;
}

.social-proof-item h3 {
    color: var(--brand-primary);
    margin-top: 0;
}

/* Footer */
.site-footer {
    background-color: #000;
    color: white;
    padding: 40px 0 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-col {
    flex: 1 0 300px;
    margin-bottom: 25px;
}

.footer-col h3 {
    color: white;
    margin-top: 0;
    font-size: 1.2rem;
}

.footer-col p {
    color: #ccc;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    margin-top: 30px;
    color: #ccc;
    font-size: 0.9rem;
}