/* Template 34 - Volcanic Noir / Dark Dramatic */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@300;400;500;600;700&family=Source+Sans+3:wght@300;400;500;600&display=swap');

:root {
    --volcanic-black: #0D0D0D;
    --charcoal: #1A1A1A;
    --graphite: #2D2D2D;
    --smoke: #4A4A4A;
    --ash: #8A8A8A;
    --ember: #FF4500;
    --lava: #FF6B35;
    --magma: #FF8C42;
    --white: #FFFFFF;
}

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

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

body {
    font-family: 'Source Sans 3', sans-serif;
    line-height: 1.7;
    color: var(--white);
    background: var(--volcanic-black);
    font-weight: 400;
    overflow-x: hidden;
}

body::after {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(255, 69, 0, 0.05), transparent);
    pointer-events: none;
    z-index: -1;
}

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

/* Header - Bold Dramatic */
.site-header {
    background: var(--volcanic-black);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--graphite);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    min-height: 80px;
}

.site-logo {
    display: flex;
    align-items: center;
    padding-right: 3rem;
    border-right: 1px solid var(--graphite);
}

.site-logo a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.site-logo a:hover {
    color: var(--ember);
    text-shadow: 0 0 30px rgba(255, 69, 0, 0.5);
}

.site-nav {
    display: flex;
    align-items: stretch;
    flex: 1;
}

.site-nav ul {
    list-style: none;
    display: flex;
    align-items: stretch;
    margin-left: auto;
}

.site-nav li {
    display: flex;
    align-items: stretch;
    border-left: 1px solid var(--graphite);
}

.site-nav a {
    color: var(--ash);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.site-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--ember);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.site-nav a:hover {
    color: var(--white);
    background: var(--charcoal);
}

.site-nav a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Hero Section */
.section.head {
    padding: 10rem 0 8rem;
    position: relative;
    background: var(--volcanic-black);
}

.section.head::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 69, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.section.head h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.section.head h1 span {
    display: block;
    color: var(--ember);
}

.section.head p {
    font-size: 1.15rem;
    color: var(--ash);
    max-width: 600px;
    position: relative;
    padding-left: 2rem;
}

.section.head p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--ember), var(--magma));
}

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

.section header {
    margin-bottom: 4rem;
}

.section header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
}

.section header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--ember);
}

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

/* Footer - Dark Industrial */
.footer {
    background: var(--charcoal);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    border-top: 4px solid var(--ember);
}

.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(--ash);
    line-height: 1.8;
}

.footer-links ul {
    list-style: none;
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}

.footer-links li {
    border-left: 1px solid var(--smoke);
    padding: 0 1.5rem;
}

.footer-links li:first-child {
    border-left: none;
    padding-left: 0;
}

.footer-links a {
    color: var(--ash);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

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

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

.copyright,
.copyright a {
    color: var(--smoke);
    font-size: 0.85rem;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Animations */
@keyframes riseUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }

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: 'Oswald', sans-serif;
    font-size: 1.6rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 15px;
    margin-bottom: 10px;
    text-align: left;
}
