/*
Theme Name: Finhanced Inc
Theme URI: https://finhanced.com
Description: A professional financial services theme for Ultra High Net Worth Individuals
Version: 1.0.0
Author: Finhanced Inc
Author URI: https://finhanced.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: finhanced
Domain Path: /languages
*/

/* ============================================
   ROOT VARIABLES & RESET
   ============================================ */

:root {
    --primary: #AF8C5A;
    --secondary: #545454;
    --dark: #3a3a3a;
    --light: #f9f9f9;
    --white: #ffffff;
    --text-light: #888888;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--secondary);
    line-height: 1.6;
    background: var(--white);
}

/* ============================================
   NAVIGATION & HEADER
   ============================================ */

nav.navbar {
    position: sticky;
    top: 0;
    background: var(--white);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.navbar-brand {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.navbar-brand img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.navbar-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.navbar-menu a {
    text-decoration: none;
    color: var(--secondary);
    font-size: 0.95rem;
    transition: color 0.3s;
    font-weight: 500;
}

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

.btn-get-started {
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.3s;
    text-decoration: none;
}

.btn-get-started:hover {
    background: #8f6f47;
}

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

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f5f3f0 0%, var(--white) 100%);
    min-height: 80vh;
}

.hero-content h1 {
    font-size: 3rem;
    font-family: 'Libre Baskerville', Georgia, serif;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content h1 .primary {
    color: var(--primary);
}

.hero-content > p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #8f6f47;
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    padding: 0.9rem 2rem;
    border: 2px solid var(--primary);
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: left;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

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

.hero-visual {
    background: linear-gradient(135deg, #ebe5df 0%, #f5f0eb 100%);
    padding: 3rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.chart-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    width: 100%;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.chart-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    color: var(--primary);
}

.growth-badge {
    color: #4caf50;
    font-size: 0.9rem;
    font-weight: 600;
}

.chart-placeholder {
    width: 100%;
    height: 150px;
    background: linear-gradient(90deg, transparent 0%, rgba(175, 140, 90, 0.1) 50%, transparent 100%);
    border-radius: 4px;
    margin-bottom: 1rem;
}

.chart-title {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.chart-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 5rem 5%;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-family: 'Libre Baskerville', Georgia, serif;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-light);
}

/* ============================================
   SERVICES
   ============================================ */

.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   ABOUT
   ============================================ */

.about-section {
    background: var(--light);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 5rem 5%;
}

.about-content h2 {
    font-size: 2.5rem;
    font-family: 'Libre Baskerville', Georgia, serif;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-checklist {
    list-style: none;
}

.about-checklist li {
    padding: 0.7rem 0;
    color: var(--secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.about-checklist li::before {
    content: '✓';
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.stat-box .value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-box .label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ============================================
   TEAM
   ============================================ */

.team-section {
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: all 0.3s;
}

.team-member:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.member-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, #8f6f47 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.team-member h3 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.member-title {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.member-creds {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ============================================
   CONTACT
   ============================================ */

.contact-section {
    background: var(--light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
}

.contact-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-icon {
    font-size: 1.8rem;
}

.contact-item h3 {
    font-size: 1.05rem;
    color: var(--secondary);
    font-weight: 600;
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.form-submit:hover {
    background: #8f6f47;
}

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

footer {
    background: var(--dark);
    color: #ddd;
    padding: 3rem 5%;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section p,
.footer-section a {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.8;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
    color: #888;
    font-size: 0.85rem;
}

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */

.wp-block-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.wp-block-button__link {
    background: var(--primary);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    text-decoration: none;
}

.wp-block-button__link:hover {
    background: #8f6f47;
}

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

@media (max-width: 768px) {
    .navbar-menu {
        gap: 1rem;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 5%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .about-section {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

    section {
        padding: 3rem 5%;
    }
}
