/*
Theme Name: EmploymentHub Child
Theme URI: https://www.employmenthub.co.za/
Description: Custom child theme for EmploymentHub with teal & gold branding, AI tools integration, and Ezoic ad support
Author: EmploymentHub Team
Author URI: https://www.employmenthub.co.za/
Template: aeonblock
Version: 1.0.0
Text Domain: employmenthub-child
Domain Path: /languages
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* ============================================
   EMPLOYMENTHUB CUSTOM STYLES
   ============================================ */

:root {
    --primary-color: #2D5C52;
    --primary-dark: #1a3a33;
    --accent-gold: #C4A052;
    --accent-gold-light: #D4AF37;
    --accent-green: #34AF23;
    --accent-green-dark: #2a8a1b;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-light: #f9fafb;
    --border-color: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, #2D5C52 0%, #1a3a33 100%) !important;
    color: white !important;
    padding: 5rem 1rem !important;
    text-align: center !important;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: white !important;
}

.hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 2rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-transform: none;
}

.btn-primary {
    background: #C4A052 !important;
    color: #2D5C52 !important;
}

.btn-primary:hover {
    background: #D4AF37 !important;
    transform: translateY(-2px) !important;
}

.btn-success {
    background: var(--accent-green);
    color: white;
}

.btn-success:hover {
    background: var(--accent-green-dark);
    transform: translateY(-2px);
}

.btn-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .btn-group {
        flex-direction: row;
    }
}

/* ============================================
   TRUST SIGNALS
   ============================================ */

.trust-signals {
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.signal-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: white !important;
}

.signal-label {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.875rem;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats {
    background: var(--bg-light);
    padding: 3rem 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    padding: 5rem 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-header p {
    color: var(--text-secondary);
    max-width: 40rem;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-gold);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.feature-link {
    color: var(--primary-color);
    font-weight: 600;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-it-works {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 5rem 1rem;
}

.how-it-works h2 {
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    text-align: center;
    margin-bottom: 4rem;
}

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

.step {
    text-align: center;
}

.step-number {
    background: var(--accent-gold);
    color: var(--primary-color);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: #d1d5db;
    font-size: 0.875rem;
}

.steps-cta {
    text-align: center;
}

/* ============================================
   WHATSAPP CTA
   ============================================ */

.whatsapp-cta {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-dark) 100%);
    color: white;
    padding: 4rem 1rem;
    text-align: center;
}

.whatsapp-cta h2 {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    margin-bottom: 1rem;
}

.whatsapp-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 1rem;
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* ============================================
   AD SPACES
   ============================================ */

.ad-space {
    background: var(--bg-light);
    padding: 2rem 1rem;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
    .hero {
        padding: 3rem 1rem;
    }

    .hero h1 {
        font-size: 1.875rem;
    }

    .features {
        padding: 3rem 1rem;
    }

    .how-it-works {
        padding: 3rem 1rem;
    }

    .trust-signals {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   NAVIGATION CUSTOMIZATION
   ============================================ */

.site-header {
    background: white;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-branding a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-gold);
}

/* ============================================
   FOOTER CUSTOMIZATION
   ============================================ */

.site-footer {
    background: var(--primary-dark);
    color: white;
    padding: 3rem 1rem;
}

.site-footer a {
    color: var(--accent-gold);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--accent-gold-light);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
