/*
Theme Name: Full Capacity Unified Monograph
Theme URI: https://fullcapacity.net/
Description: Professional Industrial Monograph Style. Focused on Dark Green, Beige (RAL 1015), and monumental typography.
Author: Full Capacity Engineering
Version: 1.1.0
*/

/* 1. BRAND COLOR SYSTEM */
:root {
    --fc-dark: #0a1a14;
    --fc-dark-green: #0d2b1d; /* Corrected Dark Forest Green */
    --fc-gold: #c5a059;
    --fc-beige: #F5F5DC; /* RAL 1015 Light Ivory */
    --fc-border: rgba(0,0,0,0.08);
    --fc-light-grey: #f9f9f9;
}

/* 2. BASE TYPOGRAPHY */
body { 
    font-family: 'Inter', sans-serif; 
    background: #fff; 
    color: var(--fc-dark); 
    -webkit-font-smoothing: antialiased; 
}

.all-caps-bold { 
    font-weight: 900; 
    text-transform: uppercase; 
    letter-spacing: -0.04em; 
    line-height: 0.85; 
}

.mono { 
    font-family: 'Space Mono', monospace; 
    font-size: 10px; 
    text-transform: uppercase; 
    letter-spacing: 0.2em; 
}

/* 3. MONUMENTAL HEADERS */
.hero-title {
    font-size: clamp(2.5rem, 10vw, 8rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.8;
}

.section-header {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.85;
}

/* 4. REFINED BUTTONS & PILLS */
.btn-fc {
    background: var(--fc-dark-green);
    color: #fff;
    padding: 16px 32px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    border: none;
    cursor: pointer;
}

.btn-fc:hover {
    background: var(--fc-beige);
    color: var(--fc-dark-green);
}

.btn-white {
    background: #fff;
    color: var(--fc-dark-green);
    padding: 16px 32px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    border: none;
}

.pill-tech { 
    background: var(--fc-beige); 
    padding: 8px 16px; 
    font-size: 9px; 
    font-weight: 900; 
    text-transform: uppercase; 
    letter-spacing: 0.15em; 
    color: var(--fc-dark-green);
    display: inline-block; 
}

/* 5. MEDIA TREATMENT (GRAYSCALE TO COLOR) */
.media-container { 
    overflow: hidden; 
    position: relative; 
    background: var(--fc-dark);
}

.media-container img, 
.media-container video { 
    filter: grayscale(100%); 
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); 
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-container:hover img, 
.media-container:hover video { 
    filter: grayscale(0%); 
    transform: scale(1.03); 
}

/* 6. STRUCTURAL GRID */
.hero-grid { 
    display: grid; 
    grid-template-columns: 1.2fr 1fr; 
    min-height: 80vh; 
    border-bottom: 1px solid var(--fc-border); 
}

.flow-step { 
    transition: all 0.4s ease; 
    border-right: 1px solid var(--fc-border); 
    background: transparent;
}

.flow-step:hover { 
    background: #fff; 
}

/* 7. FORM & TERMINAL INPUTS */
.terminal-input {
    border: none;
    border-bottom: 2px solid var(--fc-dark-green);
    padding: 12px 0;
    font-size: 16px;
    font-weight: 700;
    background: transparent;
    width: 100%;
    outline: none;
    transition: border-color 0.3s ease;
}

.terminal-input:focus {
    border-bottom-color: var(--fc-gold);
}

/* 8. MOBILE RESPONSIVENESS */
@media (max-width: 1024px) {
    .hero-grid { 
        grid-template-columns: 1fr; 
        height: auto; 
    }
    .section-header { 
        font-size: 3rem; 
    }
    .nav-links {
        display: none; /* Controlled by JS toggle */
    }
}