/* Template 79 - Rust Industrial / Weathered Metal */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto+Condensed:wght@400;700&family=Roboto+Mono:wght@400;500&display=swap');

:root {
    --rust: #b7410e;
    --rust-dark: #8b3a0f;
    --copper: #b87333;
    --steel: #71797e;
    --steel-dark: #4a5259;
    --charcoal: #2d2d2d;
    --metal: #a8a9ad;
    --cream: #f5f0e8;
    --warning: #ffc107;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--cream);
    font-weight: 400;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23a8a9ad' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header - Industrial Bar */
.site-header {
    background: var(--charcoal);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 6px solid var(--rust);
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        var(--warning) 0px,
        var(--warning) 20px,
        var(--charcoal) 20px,
        var(--charcoal) 40px
    );
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.site-logo a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.25rem;
    color: var(--cream);
    text-decoration: none;
    letter-spacing: 4px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.site-logo a::before {
    content: '⚙';
    font-size: 1.75rem;
    color: var(--rust);
}

.site-logo a:hover {
    color: var(--warning);
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 0;
    align-items: center;
}

.site-nav li {
    border-left: 1px solid var(--steel-dark);
}

.site-nav li:last-child {
    border-right: 1px solid var(--steel-dark);
}

.site-nav a {
    color: var(--metal);
    text-decoration: none;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.75rem 1.5rem;
    display: block;
    transition: all 0.3s ease;
}

.site-nav a:hover {
    background: var(--rust);
    color: var(--cream);
}

/* Hero Section */
.section.head {
    padding: 6rem 0;
    text-align: left;
    position: relative;
    background: var(--steel-dark);
}

.section.head::before {
    content: '01';
    position: absolute;
    top: 2rem;
    right: 5%;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15rem;
    color: var(--rust);
    opacity: 0.1;
    line-height: 1;
}

.section.head h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    line-height: 1;
}

.section.head p {
    font-size: 1.1rem;
    color: var(--metal);
    max-width: 700px;
    padding: 1.5rem;
    background: var(--charcoal);
    border-left: 5px solid var(--rust);
    font-family: 'Roboto Mono', monospace;
}

/* Section Styling */
.section {
    padding: 5rem 0;
}

.section header {
    text-align: left;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.section header::before {
    content: '';
    width: 60px;
    height: 4px;
    background: var(--rust);
}

.section header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--charcoal);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.section header p {
    font-size: 1rem;
    color: var(--steel);
    max-width: 600px;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--charcoal);
    padding: 4rem 0 2rem;
    border-top: 6px solid var(--rust);
    margin-top: 4rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        var(--warning) 0px,
        var(--warning) 20px,
        var(--charcoal) 20px,
        var(--charcoal) 40px
    );
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.footer-about {
    flex: 1;
    max-width: 400px;
}

.footer-tagline {
    color: var(--metal);
    line-height: 1.8;
    font-size: 0.95rem;
    font-family: 'Roboto Mono', monospace;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--metal);
    text-decoration: none;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '>';
    color: var(--rust);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--cream);
}

.footer-links a:hover::before {
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--steel-dark);
}

.copyright a {
    color: var(--steel);
    font-size: 0.85rem;
    font-family: 'Roboto Mono', monospace;
}

/* Animations */
@keyframes industrialFade {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    opacity: 0;
    animation: industrialFade 0.6s ease forwards;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    color: var(--charcoal);
    margin-top: 15px;
    margin-bottom: 10px;
    text-align: left;
    letter-spacing: 2px;
    text-transform: uppercase;
}
