/*
Theme Name: HERO Wealth Child Theme
Theme URI: https://herowealthfund.com
Description: A custom WordPress child theme for real estate syndication businesses based on Hello Elementor
Author: Manus AI
Author URI: https://example.com
Template: hello-elementor
Version: 1.0.0
Text Domain: hero-wealth-child
License: GNU General Public License v3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Import parent theme styles */
@import url('../hello-elementor/style.css');

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@400;600&display=swap');

/* Global Variables */
:root {
    /* Color Scheme */
    --primary-color: #0a2342;
    --secondary-color: #e63946;
    --accent-color: #ffffff;
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --background-light: #f8f9fa;
    --background-dark: #0a2342;
    
    /* Typography */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    
    /* Box Shadow */
    --box-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --box-shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Base Styles */
body {
    font-family: var(--body-font);
    color: var(--text-color-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Button Styles */
.btn, 
.elementor-button {
    font-family: var(--heading-font);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary,
.elementor-button.elementor-button-primary {
    background-color: var(--secondary-color);
    color: var(--accent-color);
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover,
.elementor-button.elementor-button-primary:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.btn-secondary,
.elementor-button.elementor-button-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover,
.elementor-button.elementor-button-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--accent-color);
}

/* Header Styles */
.site-header {
    background-color: var(--primary-color);
    padding: var(--spacing-sm) 0;
    box-shadow: var(--box-shadow-sm);
}

.site-logo img {
    max-height: 60px;
    width: auto;
}

/* Navigation Styles */
.main-navigation {
    font-family: var(--heading-font);
    font-weight: 500;
}

.main-navigation a {
    color: var(--accent-color);
    padding: var(--spacing-sm);
    font-size: 1rem;
}

.main-navigation a:hover {
    color: var(--secondary-color);
}

/* Hero Section Styles */
.hero-section {
    background-color: var(--primary-color);
    color: var(--accent-color);
    padding: var(--spacing-xl) 0;
    position: relative;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
}

/* Section Styles */
.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title h2 {
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Card Styles */
.card {
    background-color: var(--accent-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.card-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

/* Team Member Styles */
.team-member {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.team-member-image {
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: var(--spacing-md);
}

.team-member-name {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.team-member-title {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

/* Testimonial Styles */
.testimonial {
    background-color: var(--background-light);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    position: relative;
}

.testimonial:before {
    content: '"';
    font-size: 5rem;
    color: var(--secondary-color);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: 20px;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: var(--spacing-md);
}

.testimonial-author {
    font-weight: 600;
}

/* CTA Section Styles */
.cta-section {
    background-color: var(--primary-color);
    color: var(--accent-color);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: var(--spacing-md);
}

.cta-section p {
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Styles */
.site-footer {
    background-color: var(--primary-color);
    color: var(--accent-color);
    padding: var(--spacing-lg) 0;
}

.footer-widget-title {
    color: var(--accent-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.25rem;
}

.footer-menu a {
    color: var(--accent-color);
    opacity: 0.8;
}

.footer-menu a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    margin-top: var(--spacing-lg);
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Investment Card Styles */
.investment-card {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-md);
    margin-bottom: var(--spacing-lg);
    background-color: var(--accent-color);
}

.investment-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.investment-card-content {
    padding: var(--spacing-md);
}

.investment-card-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.investment-card-metrics {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-md);
}

.investment-card-metric {
    text-align: center;
}

.investment-card-metric-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.investment-card-metric-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Blog Styles */
.blog-post {
    margin-bottom: var(--spacing-lg);
}

.blog-post-image {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin-bottom: var(--spacing-md);
}

.blog-post-meta {
    margin-bottom: var(--spacing-sm);
    font-size: 0.875rem;
    opacity: 0.8;
}

.blog-post-title {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
}

.blog-post-excerpt {
    margin-bottom: var(--spacing-md);
}

/* Contact Form Styles */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: var(--spacing-md);
    border: 1px solid #ddd;
    border-radius: var(--border-radius-sm);
    font-family: var(--body-font);
}

.contact-form textarea {
    height: 150px;
}

.contact-form button {
    background-color: var(--secondary-color);
    color: var(--accent-color);
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    font-family: var(--heading-font);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1023px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.75rem;
    }
    
    .hero-section h1 {
        font-size: 2.75rem;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .hero-section h1 {
        font-size: 2.25rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .section {
        padding: var(--spacing-lg) 0;
    }
}
