/* Footer Styles */

.site-footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #e0e0e0;
  margin-top: 0rem;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #f4d03f, #d4af37);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #d4af37;
  padding: 2rem 0;
  background: rgba(0,0,0,0.2);
  width: 100%;
}

.footer-bottom-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.copyright {
  color: #999;
  font-size: 0.85rem;
}

.copyright p {
  margin: 0;
  line-height: 1.4;
}

.dedication {
  margin-top: 0.5rem;
  color: #d4af37;
  font-family: 'Eagle Lake', serif;
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d4af37;
}

.separator {
  color: #777;
  font-size: 0.8rem;
}

/* Desktop Layout */
@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .copyright {
    text-align: left;
  }
  
  .footer-links {
    justify-content: flex-end;
  }

  .site-footer {
    margin-top: 4rem;
  }
}
