/* Renaissance-style footer image for Caterina Baars website */
.footer-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.footer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Baroque frame styling */
.footer-frame {
  width: 80%;
  max-width: 800px;
  padding: 20px;
  border: 20px solid #8B7D6B;
  background-color: #F8F4E9;
  position: relative;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-frame:before {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: -30px;
  border: 5px solid #D4C19C;
  z-index: -1;
}

.footer-frame:after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid #8B7D6B;
  z-index: 1;
  pointer-events: none;
}

/* Ornate corner decorations */
.footer-frame .corner {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #8B7D6B;
  z-index: 2;
}

.footer-frame .corner-tl {
  top: -10px;
  left: -10px;
  border-radius: 0 0 100% 0;
}

.footer-frame .corner-tr {
  top: -10px;
  right: -10px;
  border-radius: 0 0 0 100%;
}

.footer-frame .corner-bl {
  bottom: -10px;
  left: -10px;
  border-radius: 0 100% 0 0;
}

.footer-frame .corner-br {
  bottom: -10px;
  right: -10px;
  border-radius: 100% 0 0 0;
}

/* Artwork caption styling */
.footer-caption {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 20px;
  font-size: 0.8rem;
  color: #8B7D6B;
  border-top: 1px solid #D4C19C;
  padding-top: 10px;
}

.footer-artwork-title {
  font-style: italic;
  max-width: 70%;
  font-family: 'Times New Roman', serif;
}

.footer-artist {
  text-align: right;
  font-weight: 500;
  font-family: 'Times New Roman', serif;
  letter-spacing: 1px;
}