Image Implementation Guide for ENGRAM Website

Overview

All 27 generated images have been successfully integrated into the ENGRAM cognitive architecture website. The images are 1200x1200 pixels and have been optimized for web use with CSS overlays and responsive handling.

Image Mapping

Hero Section

Section Backgrounds

1. Architecture Section

2. Theoretical Foundations Section

3. Memory System Section

4. Plastify Module Section

5. Results Section

6. Implementation Section

7. Roadmap Section

8. Newsletter Section

Card Backgrounds

Primary Innovation Card

Context Learning Card

Strengthening & Clustering Card

Bio-Inspired Architecture Card

Shared Neighbor Discovery Card

Example Card (Before/After)

Execution Timeline Card

Version Comparison Card

Newsletter Form Card

Available Images for Future Use

The following images are available in assets/images/ and can be used for future enhancements:

Header/Border Images

Divider Images

Alternative Backgrounds

CSS Classes Reference

Background Classes

.bg-hero-primary          /* Main hero */
.bg-hero-secondary        /* Alternative hero */
.bg-neural-constellation  /* Architecture section */
.bg-synaptic-storm        /* Foundations section */
.bg-knowledge-galaxy      /* Memory section */
.bg-deep-neural           /* Plastify section */
.bg-circuit-garden        /* Results section */
.bg-constellation-map     /* Roadmap section */
.bg-pipeline-flow         /* Implementation section */
.bg-particle-field        /* Newsletter section */

Card Background Classes

.bg-glass-neural          /* Glass effect cards */
.bg-data-flow-micro       /* Data visualization cards */
.bg-synapse-closeup       /* Feature cards */
.bg-neural-artistry       /* Architecture cards */
.bg-cybernetic-nature     /* Innovation cards */
.bg-quantum-synapse       /* Example cards */
.bg-layered-processing    /* Timeline cards */
.bg-vector-space          /* Comparison cards */
.bg-plasticity-flow       /* Form cards */

Overlay Classes

.overlay-light    /* 70% opacity overlay */
.overlay-medium   /* 85% opacity overlay */
.overlay-heavy    /* 95% opacity overlay */

Technical Implementation

Image Processing

Performance Considerations

Browser Support

Customization Guide

Changing a Background Image

  1. Copy desired image to assets/images/
  2. Update CSS class with new filename
  3. Adjust overlay opacity if needed:

Adding New Images

  1. Generate or obtain 1200x1200px image
  2. Copy to assets/images/
  3. Add CSS class following naming convention:
    .bg-your-name {
      background-image: url('../images/your-image.png');
    }
    
  4. Apply class to desired HTML element

Adjusting Overlays

Modify the ::before pseudo-element in CSS:

.your-section::before {
  background: rgba(10, 10, 15, 0.85); /* Adjust opacity */
}

Visual Consistency Tips

  1. Color Palette: All images maintain cyan/violet/magenta theme
  2. Dark Base: Images work best with dark (#0a0a0f) overlays
  3. Text Contrast: Always use overlay-medium or overlay-heavy for text sections
  4. Card Balance: Use overlay-light for card backgrounds to show image detail
  5. Parallax Effect: Use sparingly to avoid performance issues

Accessibility Notes