/* Footer Container */
.site-footer {
  background-color: #1a1a1a;
  border-top: 1px solid #333;
  padding: 80px 20px 50px;
  color: #ccc;
  text-align: center;
}

/* Footer Content Wrapper */
.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* Brand Section */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

/* Logo Styling */
.footer-logo {
  height: 400px;
  width: 400px;
  object-fit: contain;
  border-radius: 4px;
}

/* Site Title */
.footer-brand h1 {
  font-size: 5.2rem;
  color: #ffcc00;
  font-weight: bold;
}

/* Follow Us Label */
.footer-follow {
  margin-top: 10px;
  font-size: 1.4rem;
  color: #ffcc00;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Social Media Icons */
.footer-social {
  display: flex;
  gap: 22px;
  margin-top: 15px;
}

.footer-social a {
  color: #ffcc00;
  font-size: 2.6rem;
  transition: 0.3s ease;
}

.footer-social a:hover {
  color: #ffffff;
  transform: scale(1.15);
}

/* Copyright */
.footer-bottom {
  margin-top: 20px;
  font-size: 0.95rem;
  color: #888;
}
