/*
Theme Name: ARD Developers
Theme URI: https://example.com/ard-theme
Author: Antigravity
Author URI: https://example.com
Description: A custom theme for ARD Developers, replicating the Azizi Developments structure with Elementor support.
Version: 1.0.0
Text Domain: ard-theme
*/

:root {
    --ard-gold: #cfa15e;
    --ard-dark: #1a1a1a;
    --ard-navy: #0e1c2c;
    --ard-white: #ffffff;
    --ard-font-primary: 'Inter', sans-serif;
    /* Placeholder font */
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--ard-font-primary);
    color: var(--ard-dark);
    background-color: var(--ard-white);
}

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

/* Helper Classes */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}