/*
Theme Name: EasyLoad Express
Theme URI: https://easyloadexpress.com
Author: EasyLoad Express Team
Author URI: https://easyloadexpress.com
Description: A bold, professional B2B trucking and logistics company theme with a black and red color scheme. Features custom page templates for services, fleet, and contact pages.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: easyload-express
Tags: one-column, custom-menu, featured-images, full-width-template, custom-logo, translation-ready
*/

/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
    /* Colors */
    --color-black: #0a0a0a;
    --color-dark: #111111;
    --color-dark-alt: #1a1a1a;
    --color-dark-surface: #222222;
    --color-dark-border: #333333;
    --color-red: #e63946;
    --color-red-hover: #d62839;
    --color-red-dark: #b71c1c;
    --color-red-glow: rgba(230, 57, 70, 0.3);
    --color-white: #ffffff;
    --color-gray-light: #e0e0e0;
    --color-gray: #9e9e9e;
    --color-gray-dark: #616161;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-red: 0 4px 20px rgba(230, 57, 70, 0.3);

    /* Layout */
    --border-radius: 8px;
    --border-radius-sm: 4px;
    --border-radius-lg: 12px;
    --container-width: 1200px;
    --container-narrow: 800px;
    --header-height: 80px;
    --section-padding: 100px;
    --section-padding-mobile: 60px;
}

/* ========================================
   BASE RESET
   ======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-gray-light);
    background-color: var(--color-black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-red);
    text-decoration: none;
    transition: var(--transition-base);
}

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-white);
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

input, textarea, select, button {
    font-family: var(--font-body);
    font-size: 1rem;
}
