/* CSS Variables for consistent theming */
:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --metal-gray: #2a2a2a;
    --steel-blue: #1e2530;
    --rust-orange: #cc4400;
    --chrome-silver: #c0c0c0;
    --warning-yellow: #ffaa00;
    --blood-red: #660000;
    
    --font-display: 'Orbitron', monospace;
    --font-body: 'Rajdhani', sans-serif;
    
    --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.8);
    --shadow-inset: inset 0 2px 8px rgba(0, 0, 0, 0.6);
    --border-metal: 2px solid var(--metal-gray);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--steel-blue) 100%);
    color: var(--chrome-silver);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Noise overlay for gritty texture */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(204, 68, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 170, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(192, 192, 192, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Navigation */
.main-nav {
    background: var(--secondary-black);
    border-bottom: var(--border-metal);
    box-shadow: var(--shadow-heavy);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 80px;
}

.logo {
    font-family: var(--font-display);
    font-weight: 900;
}

.logo-text {
    font-size: 24px;
    color: var(--rust-orange);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.logo-sub {
    font-size: 14px;
    color: var(--chrome-silver);
    margin-left: 8px;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--chrome-silver);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px 15px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    font-size: 14px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--rust-orange);
    border-color: var(--rust-orange);
    background: rgba(204, 68, 0, 0.1);
    box-shadow: var(--shadow-inset);
}

/* Main content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 70vh;
    padding: 60px 0;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.title-line {
    display: block;
    background: linear-gradient(45deg, var(--rust-orange), var(--warning-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--chrome-silver);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.cta-button {
    padding: 15px 30px;
    background: var(--rust-orange);
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    border: 2px solid var(--rust-orange);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    background: transparent;
    color: var(--rust-orange);
    box-shadow: var(--shadow-heavy);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: var(--chrome-silver);
    border-color: var(--metal-gray);
}

.cta-button.secondary:hover {
    background: var(--metal-gray);
    color: var(--chrome-silver);
}

/* Placeholder graphics */
.placeholder-graphic {
    background: linear-gradient(135deg, var(--metal-gray) 0%, var(--secondary-black) 100%);
    border: var(--border-metal);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.placeholder-graphic.small {
    height: 250px;
}

.graphic-border {
    border: 1px dashed var(--rust-orange);
    padding: 40px;
    text-align: center;
    background: rgba(204, 68, 0, 0.05);
}

.graphic-text {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--rust-orange);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.graphic-subtitle {
    font-size: 14px;
    color: var(--chrome-silver);
    font-weight: 300;
}

/* Features section */
.features {
    padding: 80px 0;
    background: rgba(26, 26, 26, 0.5);
    margin: 60px 0;
    border-top: var(--border-metal);
    border-bottom: var(--border-metal);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    background: var(--secondary-black);
    padding: 30px;
    border: var(--border-metal);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--metal-gray);
    box-shadow: var(--shadow-heavy);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    filter: grayscale(1) contrast(2);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--rust-orange);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.feature-card p {
    color: var(--chrome-silver);
    line-height: 1.6;
    font-weight: 300;
}

/* Products preview */
.products-preview {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--chrome-silver);
    letter-spacing: 3px;
    font-weight: 700;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.product-preview {
    background: var(--secondary-black);
    border: var(--border-metal);
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-preview:hover {
    box-shadow: var(--shadow-heavy);
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 250px;
}

.product-preview h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--rust-orange);
    padding: 20px;
    margin: 0;
}

.product-preview p {
    color: var(--chrome-silver);
    padding: 0 20px;
    font-weight: 300;
}

.product-link {
    display: inline-block;
    padding: 20px;
    color: var(--warning-yellow);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
}

.product-link:hover {
    color: var(--rust-orange);
}

/* Footer */
.main-footer {
    background: var(--primary-black);
    border-top: var(--border-metal);
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    font-family: var(--font-display);
    color: var(--rust-orange);
    margin-bottom: 15px;
    font-size: 16px;
    letter-spacing: 1px;
}

.footer-section p {
    color: var(--chrome-silver);
    line-height: 1.6;
    font-weight: 300;
}

.footer-bottom {
    border-top: 1px solid var(--metal-gray);
    padding: 20px;
    text-align: center;
    color: var(--chrome-silver);
    font-weight: 300;
}

/* Page-specific headers */
.page-header {
    text-align: center;
    padding: 60px 0;
    border-bottom: var(--border-metal);
    margin-bottom: 60px;
}

.page-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: var(--rust-orange);
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--chrome-silver);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Product cards for product pages */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.product-grid.novelty {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.product-card {
    background: var(--secondary-black);
    border: var(--border-metal);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    box-shadow: var(--shadow-heavy);
    transform: translateY(-5px);
}

.product-card.featured {
    border-color: var(--rust-orange);
    background: rgba(204, 68, 0, 0.05);
}

.product-image-container {
    position: relative;
    height: 250px;
}

.product-img {
    height: 100%;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--rust-orange);
    color: var(--primary-black);
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.novelty-badge {
    background: var(--warning-yellow);
    color: var(--primary-black);
}

.product-info {
    padding: 30px;
}

.product-name {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--rust-orange);
    margin-bottom: 15px;
    font-weight: 700;
}

.product-description {
    color: var(--chrome-silver);
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 300;
}

.product-specs, .product-features {
    margin-bottom: 20px;
}

.product-specs ul, .product-features ul {
    list-style: none;
    padding: 0;
}

.product-specs li, .product-features li {
    color: var(--chrome-silver);
    padding: 5px 0;
    border-bottom: 1px solid var(--metal-gray);
    font-weight: 300;
}

.product-specs li:before, .product-features li:before {
    content: "▸ ";
    color: var(--rust-orange);
    font-weight: 700;
    margin-right: 10px;
}

.product-price {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--warning-yellow);
    font-weight: 700;
    margin-bottom: 25px;
}

.product-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    border: 2px solid;
    transition: all 0.3s ease;
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.btn-primary {
    background: var(--rust-orange);
    color: var(--primary-black);
    border-color: var(--rust-orange);
}

.btn-primary:hover {
    background: transparent;
    color: var(--rust-orange);
}

.btn-secondary {
    background: transparent;
    color: var(--chrome-silver);
    border-color: var(--metal-gray);
}

.btn-secondary:hover {
    background: var(--metal-gray);
    color: var(--chrome-silver);
}

/* Technical info sections */
.technical-info, .novelty-info {
    padding: 80px 0;
    background: rgba(26, 26, 26, 0.5);
    border-top: var(--border-metal);
    border-bottom: var(--border-metal);
}

.tech-grid, .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tech-card, .info-card {
    background: var(--secondary-black);
    padding: 25px;
    border: 1px solid var(--metal-gray);
}

.tech-card h3, .info-card h3 {
    font-family: var(--font-display);
    color: var(--rust-orange);
    margin-bottom: 15px;
    font-size: 18px;
}

.tech-card p, .info-card p {
    color: var(--chrome-silver);
    line-height: 1.6;
    font-weight: 300;
}

/* About page specific styles */
.story-section {
    padding: 80px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-text p {
    color: var(--chrome-silver);
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 300;
    font-size: 18px;
}

.philosophy-section {
    padding: 80px 0;
    background: rgba(26, 26, 26, 0.3);
    border-top: var(--border-metal);
    border-bottom: var(--border-metal);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.philosophy-card {
    background: var(--secondary-black);
    padding: 30px;
    border: var(--border-metal);
}

.philosophy-card h3 {
    font-family: var(--font-display);
    color: var(--rust-orange);
    margin-bottom: 20px;
    font-size: 16px;
    letter-spacing: 1px;
}

.philosophy-card p {
    color: var(--chrome-silver);
    line-height: 1.6;
    font-weight: 300;
}

.process-section {
    padding: 80px 0;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    margin-bottom: 50px;
    align-items: start;
}

.step-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    color: var(--rust-orange);
    text-align: center;
}

.step-content h3 {
    font-family: var(--font-display);
    color: var(--chrome-silver);
    margin-bottom: 15px;
    font-size: 20px;
}

.step-content p {
    color: var(--chrome-silver);
    line-height: 1.6;
    font-weight: 300;
}

.equipment-section, .location-section {
    padding: 80px 0;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.equipment-card {
    background: var(--secondary-black);
    padding: 25px;
    border: 1px solid var(--metal-gray);
}

.equipment-card h3 {
    font-family: var(--font-display);
    color: var(--rust-orange);
    margin-bottom: 15px;
    font-size: 18px;
}

.equipment-card p {
    color: var(--chrome-silver);
    line-height: 1.6;
    font-weight: 300;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-text p {
    color: var(--chrome-silver);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 18px;
}

/* Contact page styles */
.contact-main {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-intro {
    color: var(--chrome-silver);
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
    font-size: 18px;
}

.contact-form {
    background: var(--secondary-black);
    padding: 40px;
    border: var(--border-metal);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--chrome-silver);
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--primary-black);
    border: 1px solid var(--metal-gray);
    color: var(--chrome-silver);
    font-family: var(--font-body);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rust-orange);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--chrome-silver);
    font-weight: 300;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-submit {
    width: 100%;
    padding: 15px;
    background: var(--rust-orange);
    color: var(--primary-black);
    border: none;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.form-submit:hover {
    background: var(--warning-yellow);
    transform: translateY(-2px);
}

.contact-info h2 {
    font-family: var(--font-display);
    color: var(--rust-orange);
    margin-bottom: 30px;
    font-size: 24px;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--metal-gray);
}

.contact-method h3 {
    font-family: var(--font-display);
    color: var(--chrome-silver);
    margin-bottom: 10px;
    font-size: 18px;
}

.contact-method p {
    color: var(--chrome-silver);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-note {
    font-size: 14px;
    color: var(--metal-gray);
    font-weight: 300;
    font-style: italic;
}

.contact-policies {
    background: var(--secondary-black);
    padding: 30px;
    border: var(--border-metal);
}

.contact-policies h3 {
    font-family: var(--font-display);
    color: var(--warning-yellow);
    margin-bottom: 20px;
    font-size: 16px;
    letter-spacing: 1px;
}

.policies-list {
    list-style: none;
    padding: 0;
}

.policies-list li {
    color: var(--chrome-silver);
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    font-weight: 300;
    line-height: 1.5;
}

.policies-list li:before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: var(--warning-yellow);
}

.faq-section {
    padding: 80px 0;
    background: rgba(26, 26, 26, 0.3);
    border-top: var(--border-metal);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: var(--secondary-black);
    padding: 30px;
    border: 1px solid var(--metal-gray);
}

.faq-item h3 {
    font-family: var(--font-display);
    color: var(--rust-orange);
    margin-bottom: 15px;
    font-size: 18px;
}

.faq-item p {
    color: var(--chrome-silver);
    line-height: 1.6;
    font-weight: 300;
}

/* CTA sections */
.cta-section {
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--chrome-silver);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.cta-section p {
    color: var(--chrome-silver);
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .nav-links {
        display: none; /* You'd implement a mobile menu here */
    }
    
    .products-grid, .product-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .story-grid, .location-content, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }
    
    .step-number {
        font-size: 24px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}