/*
Theme Name: LZW Editorial Depth
Theme URI: https://lzwdigital.co.uk
Author: Luke Davis
Description: A high-density, flagship layered-depth theme for LZW Digital. Engineered for Lancashire's leading brands with glassmorphism, immersive typography, and performance-focused digital architecture.
Version: 2.0
Text Domain: lzw-editorial
*/

/* * 1. TYPOGRAPHY
 * Importing the Outfit font family to anchor the brand's premium feel.
 */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;600;800;900&display=swap');

body { 
    font-family: 'Outfit', sans-serif; 
    background-color: #f8fafc;
    color: #0f172a; /* brand-navy */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* * 2. THE EDITORIAL ENGINE: GLASSMORPISM & DEPTH
 * These classes create the layered, three-dimensional look.
 */

/* Light Glass: Used for nav and secondary cards */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(15, 23, 42, 0.05);
}

/* Dark Glass: Used for technical strips and high-contrast CTA areas */
.dark-glass {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Floating Card Logic: Smooth vertical movement on hover */
.floating-card {
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.15);
}

/* * 3. BRAND GRADIENTS & DECORATION
 */

/* Background Mesh: The subtle background texture */
.bg-mesh {
    background-image: 
        radial-gradient(at 0% 0%, hsla(343,100%,98%,1) 0, transparent 50%), 
        radial-gradient(at 100% 100%, hsla(262,100%,97%,1) 0, transparent 50%);
}

/* Impact Gradient: Primary Brand transition */
.impact-gradient-bg {
    background: linear-gradient(135deg, #f43f5e 0%, #8b5cf6 100%);
}

/* Text Gradient: For high-impact editorial headers */
.text-gradient {
    background: linear-gradient(135deg, #f43f5e 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Abstract Background Spheres */
.mesh-sphere {
    position: absolute;
    filter: blur(80px);
    z-index: -1;
    border-radius: 50%;
    opacity: 0.4;
}

/* * 4. INTERACTIVE SIGNALS
 */

/* Status Pulse: The 'Available for Consultation' indicator */
.status-pulse {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-pulse::after {
    content: '';
    position: absolute;
    width: 12px; height: 12px;
    background: #f43f5e; /* brand-rose */
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

/* Horizontal Scrollbar Hide: For mobile filter bars */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Prose Overrides: Ensuring WP content looks elite */
.prose h2, .prose h3 {
    text-transform: uppercase;
    font-style: italic;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: #0f172a;
}

.prose p {
    margin-bottom: 2rem;
}