/* Fonts similar to 1930.fr: serif headings, sans-serif body */
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #fff;
  color: #000;
  margin: 0;
  padding: 0;
}

.site-header {
  text-align: center;
  margin: 2rem 0;
}

.site-header nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.site-header nav a {
  text-decoration: none;
  color: black;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.page-title {
  text-align: center;
  font-family: "Georgia", serif;
  font-weight: normal;
  margin-bottom: 3rem;
}

.art-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.art-card {
  margin-bottom: 4rem;
  text-align: center;
}

.art-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.art-card h2 {
  font-family: "Georgia", serif;
  font-weight: normal;
  font-size: 1.3rem;
  margin: 0.5rem 0;
}

.art-card .description {
  text-align: justify;
  line-height: 1.5;
  font-size: 0.95rem;
  margin: 1rem 0;
}

.art-card .meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-top: 1rem;
}

.price {
  font-style: italic;
}

.sold {
  color: red;
  font-weight: bold;
}

.available {
  color: green;
}

.site-footer {
  text-align: center;
  font-size: 0.8rem;
  color: #666;
  padding: 2rem 0;
  border-top: 1px solid #ddd;
  margin-top: 4rem;
}
.site-footer-banner {
  background: #111; /* dark background */
  color: #fff;
  padding: 4rem 2rem;
  border-top-left-radius: 0;   /* remove angularity */
  border-top-right-radius: 0;  /* remove angularity */
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-column h3 {
  color: #d4a017; /* accent gold */
  margin-bottom: 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.footer-column p,
.footer-column a,
.footer-column li {
  font-size: 0.85rem;
  color: #ccc;
  line-height: 1.5;
  text-decoration: none;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.signup-btn {
  background-color: #d4a017;
  color: #111;
  border: none;
  padding: 0.5rem 1rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 1rem;
}

.signup-btn:hover {
  background-color: #b58f0e;
}

