body {
  margin: 0;
  font-family: 'Exo 2', sans-serif;
  background-color: #0A0A0A; /* Jet black */
  color: #F5F5F5; /* Off-white text for contrast */
}

h1, h2, h3, h4 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #FFB300; /* Amber for headlines */
}

a {
  color: #E53935; /* Accessible true red for links */
  text-decoration: none;
}

a:hover {
  color: #FFB300; /* Amber on hover for visibility */
}

/* 1Sections */
.section-dark {
  background-color: #000;
  padding: 40px 20px;
  background-image:
    radial-gradient(circle, rgba(229, 57, 53, 0.15) 1px, transparent 1px), /* safer red dot grid */
    radial-gradient(circle, rgba(229, 57, 53, 0.15) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 70%);
  background-size: 20px 20px, 20px 20px, cover;
  background-position: 0 0, 10px 10px, center;
  background-repeat: repeat;
}

/* Layout containers */
.content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

/* Portfolio grid */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* fixed to 2 columns */
  gap: 20px;
  justify-items: center;
  align-items: center;
}

.logo-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 600px) {
  .logo-grid {
    grid-template-columns: 1fr; /* switch to one column */
  }
}

/* Info block (e.g. Exhibits) */
.info-box {
  border: 2px solid #E53935; /* True red border */
  padding: 20px;
  background-color: rgba(229, 57, 53, 0.07); /* Faint red background */
  margin-top: 20px;
  color: #F5F5F5; /* Maintain readable body text */
}

/* Flush banners (top & bottom) */
.flush-banner {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  background-color: transparent;
}
