/*
Theme Name: G-Train Logistics
Theme URI: https://gtrainlogistics.com
Author: Antigravity
Author URI: https://antigravity.ai
Description: Professional courier and logistics theme for G-Train.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gtrain-theme
*/

:root {
    --navy: #0a192f;
    --red: #e11d48;
    --green: #10b981;
    --white: #ffffff;
    --gray-light: #f8fafc;
    --text-main: #334155;
    --text-light: #64748b;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    margin: 0;
    background-color: var(--white);
}

a {
    text-decoration: none;
    transition: color 0.3s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 { color: var(--navy); font-weight: 800; }
h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 1.5rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
}
.btn-primary { background: var(--red); color: white; }
.btn-primary:hover { background: #be123c; }

/* Sections */
section { padding: 100px 0; }
.bg-navy { background: var(--navy); color: white; }
.bg-navy h2, .bg-navy h3 { color: white; }
