/* ==========================================================
   GameBoard Store Footer Styles (Final Polished Version)
   ========================================================== */

.site-footer {
  background: linear-gradient(to right, #eadcbf, #fff5e9);
  color: #333;
  padding: 60px 0 20px;
  font-family: "Poppins", sans-serif;
  border-top: 4px solid #ff6b00;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  width: 90%;
  margin: auto;
}

.footer-col h4 {
  color: #ff6b00;
  font-size: 1.2rem;
  margin-bottom: 15px;
  position: relative;
  font-weight: 600;
}

.footer-col h4::after {
  content: "";
  display: block;
  width: 45px;
  height: 3px;
  background: #ff6b00;
  margin-top: 6px;
  border-radius: 2px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 55px;
  height: 55px;
  border-radius: 10px;
}

.footer-about-text {
  font-size: 0.95rem;
  color: #555;
  margin-top: 10px;
  line-height: 1.6;
  text-align: justify;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-col ul li a:hover {
  color: #ff6b00;
  text-decoration: underline;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ff6b00;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s;
}

.social-icon:hover {
  background: #ff8533;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #ddd;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #777;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-socials {
    justify-content: center;
  }
}
