@charset "utf-8";
/* CSS Document */

.site-footer {
  background: #111;
  background-image:url(../images/footerbg.jpg);
  color: #eee;
  padding: 2rem 1rem 1rem;
  font-family: 'Lora', serif;
}

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

.footer-column {
  flex: 1 1 300px;
  margin-left:1em;
}

.footer-column h4 {
  color: #d4af37;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
}

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

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: #eee;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #d4af37;
}

.footer-column-b {
  flex: 1 1 250px;
}

.footer-column-b h4 {
  color: #d4af37;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
}

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

.footer-column-b ul li {
  margin-bottom: 0.5rem;
}

.footer-column-b ul li a {
  color: #eee;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column-b ul li a:hover {
  color: #d4af37;
}


.footer-logo {
  width: 180px;
  height: auto;
}

.footer-desc {
  width: 220px;
  height: auto;
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  font-size: 0.9rem;
  border-top: 1px solid #333;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 1.5rem;
  }
}