/*
Theme Name: DJR Custom
Theme URI: https://djrrefrigeration.co.nz
Author: DJR Dev Team
Author URI: https://djrrefrigeration.co.nz
Description: Enterprise-grade, zero-bloat custom WordPress theme built for DJR Refrigeration. Features ultra-fast performance, dynamic capacity calculators, and advanced local SEO schema.
Version: 1.0.0
Text Domain: djrcustom
*/

/* * ==========================================================================
 * 1. GLOBAL CSS VARIABLES (Design System)
 * Establishes the foundational color palette and typography for scalable design.
 * ==========================================================================
 */
:root {
    --primary-blue: #005B9F;
    --accent-orange: #FF6B00;
    --text-dark: #2D3748;
    --bg-light: #F7FAFC;
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

/* * ==========================================================================
 * 2. BASE STYLES
 * ==========================================================================
 */
body {
    margin: 0;
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
}

/* * ==========================================================================
 * 3. CUSTOM LOGO DYNAMIC STYLES (Client Change #8)
 * ==========================================================================
 */
.djr-custom-logo-container .custom-logo-link img {
    width: 140px;
    max-width: none;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    transform-origin: left;
}
@media (min-width: 640px) {
    .djr-custom-logo-container .custom-logo-link img {
        width: 180px;
    }
}
.djr-custom-logo-container .custom-logo-link img:hover {
    transform: scale(1.05);
}