body {
  margin: 0;
  padding: 0;
  background-color: #2a0000; /* darker wine red */
  color: #f5f5dc;            /* light tan */
  font-family: monospace;
  font-size: 18px;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

h1 {
  color: white;
  font-family: 'Russo One', sans-serif;
  font-size: 3.5em;
  margin: 0;
}

.logo {
  width: 200px;
  height: auto;
}

.byline {
  margin-top: 10px;
  font-size: 1.2em;
  color: white;
}

.image-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
  gap: 10px;
}

.image-bar img {
  width: 18%;
  height: auto;
  border: 2px solid black;
  box-sizing: border-box;
}

.locations {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.location .icon {
  font-size: 2.5em;
  display: block;
  margin-bottom: 10px;
}

.caption {
  font-size: 1.1em;
  color: #f5f5dc;
}

footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f5f5dc;
}

.contact {
  color: #f5f5dc;
  font-size: 1em;
}
