/*
Theme Name: LinkwayFDI Professional
Theme URI: https://linkwayfdi.com
Author: LinkwayFDI Team
Author URI: https://linkwayfdi.com
Description: Professional investment advisory website theme with dual language support (English/Chinese). Features include team showcase, video section, dark contact form, and FAQ.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: linkwayfdi
Tags: business, consulting, investment, two-columns, responsive-layout, custom-colors, custom-menu, featured-images, translation-ready

LinkwayFDI Professional WordPress Theme
Copyright 2024 LinkwayFDI
*/

/* ===================================
   LinkwayFDI - Professional Website Styles
   =================================== */

/* === Color Variables === */
:root {
    /* Primary Colors */
    --primary-dark: #2d4a5a;
    --primary-navy: #3a5f6f;
    --primary-charcoal: #4a7585;
    
    /* Accent Colors */
    --accent-gold: #3a6f7f;
    --accent-gold-hover: #2d5f6f;
    --accent-gold-light: #5a8f9f;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F5F5F5;
    --light-gray: #E5E8EB;
    --medium-gray: #6c757d;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    
    /* Functional Colors */
    --border-color: #E5E8EB;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Libre Baskerville', serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-width: 1320px;
}

/* === Reset & Base Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    /* 字体渲染优化 - 提高文字清晰度 */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1;
    font-kerning: normal;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

h1 { font-size: 56px; }
h2 { font-size: 42px; }
h3 { font-size: 32px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 18px; }

p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* WordPress Core Styles */
.alignleft {
    float: left;
    margin-right: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Theme specific styles will be loaded from individual template files */
