/*
Theme Name: Tyler Precision Concrete
Theme URI: https://tylerprecision.com
Author: Manus AI
Author URI: https://manus.im
Description: A custom industrial theme for Tyler Precision Concrete Cutting.
Version: 5.0.0
License: MIT
License URI: http://opensource.org/licenses/MIT
Text Domain: tyler-precision
Tags: custom-background, custom-logo, custom-menu, featured-images
*/

/* Custom Theme Variables */
:root {
    --primary: #FF4500; /* International Orange - High Vis */
    --secondary: #111111; /* Deep Industrial Black */
    --accent: #2C2C2C; /* Heavy Metal Gray */
    --text-main: #1a1a1a;
    --text-light: #f0f0f0;
    --texture-overlay: url('assets/images/texture-concrete.jpg');
}

/* Base Typography & Texture */
body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: #f4f4f4;
    background-image: var(--texture-overlay);
    background-blend-mode: multiply;
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 700;
}

/* Industrial Design Elements */
.industrial-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.industrial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.industrial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.industrial-card:hover::before {
    transform: scaleY(1);
}

.btn-industrial {
    background-color: var(--primary);
    color: white;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 1rem 2rem;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-industrial:hover {
    background-color: transparent;
    color: var(--primary);
}

.text-shadow-heavy {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
}

.section-divider {
    height: 8px;
    background: repeating-linear-gradient(
        45deg,
        var(--secondary),
        var(--secondary) 10px,
        var(--primary) 10px,
        var(--primary) 20px
    );
}
