/*
Theme Name: Blue-Collar Luxe
Description: Custom styles for the high-end structural engineering template.
*/

:root {
    --luxe-dark: #0f172a;
    /* Very dark slate/blue */
    --luxe-primary: #1e293b;
    /* Slate-800 */
    --luxe-secondary: #334155;
    /* Slate-700 */
    --luxe-accent: #f97316;
    /* Orange-500 (Safety Orange) */
    --luxe-text: #f1f5f9;
    /* Slate-100 */
    --luxe-text-muted: #94a3b8;
    /* Slate-400 */
    --luxe-concrete: #64748b;
    /* Slate-500 */
    --luxe-border: #475569;
    /* Slate-600 */

    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;700&family=Roboto:wght@300;400;500;700&display=swap');

body {
    background-color: var(--luxe-dark);
    color: #f1f5f9;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Header Override */
.site-header {
    background-color: var(--luxe-dark);
    border-bottom: 1px solid var(--luxe-border);
}

.site-title a,
.site-description {
    color: #fff !important;
    text-decoration: none;
}

/* Container */
.luxe-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.luxe-heading {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

h1.luxe-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

h2.luxe-section-title {
    font-size: 3rem;
    border-left: 5px solid var(--luxe-accent);
    padding-left: 20px;
    margin-bottom: 2rem;
    color: #ffffff !important;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

h3.luxe-card-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--luxe-accent);
}

.luxe-text-lead {
    font-size: 1.25rem;
    color: var(--luxe-text-muted);
    max-width: 600px;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Buttons */
.luxe-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--luxe-accent);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--luxe-accent);
}

.luxe-btn:hover {
    background-color: transparent;
    color: var(--luxe-accent);
}

.luxe-btn-outline {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    margin-left: 20px;
}

.luxe-btn-outline:hover {
    background-color: #fff;
    color: var(--luxe-dark);
}

/* Hero Section */
.luxe-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.8)),
        url('https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    /* London/UK Construction Feel */
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 5px solid var(--luxe-accent);
}

.luxe-hero-content {
    position: relative;
    z-index: 2;
}

/* Services Grid */
.luxe-services {
    padding: 100px 0;
    background-color: var(--luxe-primary);
}

.luxe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.luxe-card {
    background-color: var(--luxe-secondary);
    padding: 40px;
    border-top: 3px solid transparent;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.luxe-card:hover {
    transform: translateY(-10px);
    border-color: var(--luxe-accent);
}

.luxe-icon {
    font-size: 3rem;
    color: var(--luxe-concrete);
    margin-bottom: 20px;
    display: block;
}

.luxe-card:hover .luxe-icon {
    color: #fff;
}

/* Footer Override */
.site-footer {
    background-color: #000 !important;
    border-top: 1px solid var(--luxe-border);
}

@media (max-width: 768px) {
    h1.luxe-title {
        font-size: 3rem;
    }

    .luxe-hero {
        height: auto;
        padding: 150px 0 100px;
    }

    .luxe-btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }

    .luxe-btn-outline {
        margin-left: 0;
    }
}

/* -------------------------------------------------- */
/* GLOBAL FOOTER STYLES */
/* -------------------------------------------------- */
.luxe-site-footer {
    background-color: var(--luxe-primary);
    color: var(--luxe-text-muted);
    padding: 4rem 0 2rem;
    border-top: 5px solid var(--luxe-accent);
    margin-top: auto;
}

.luxe-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 0 20px;
}

.luxe-footer-col h4 {
    color: #fff;
    font-family: var(--font-heading);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    font-size: 1.2rem;
}

.luxe-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.luxe-footer-links li {
    margin-bottom: 0.8rem;
}

.luxe-footer-links a {
    color: var(--luxe-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.luxe-footer-links a:hover {
    color: var(--luxe-accent);
    padding-left: 5px;
}

.luxe-footer-copyright {
    text-align: center;
    border-top: 1px solid var(--luxe-border);
    padding-top: 2rem;
    font-size: 0.9rem;
    color: var(--luxe-concrete);
    padding-left: 20px;
    padding-right: 20px;
}