/* ================================
   Footer Base
   ================================ */

.footer {
  border-top: 2px solid #FFAA00;
  transition:
    background-color 0.2s ease-in-out,
    color 0.2s ease-in-out;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

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

/* ================================
   Footer Dark Theme
   ================================ */

.footer-dark {
  background: linear-gradient(135deg, #000000, #1f1f1f);
  color: rgba(255, 255, 255, 0.85);
}

.footer-dark .footer-title {
  color: #ffffff;
}

.footer-dark .footer-text {
  color: rgba(255, 255, 255, 0.75);
}

.footer-dark .footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-dark .footer-bottom {
  border-top: 1px solid rgba(255, 170, 0, 0.25);
}

.footer-dark .footer-bottom a {
  color: #FFAA00;
}

.footer-dark .footer-bottom a:hover {
  color: #ffffff;
}

/* ================================
   Footer Light Theme
   ================================ */

.footer-light {
  background-color: #FAFAF7;
  color: rgba(0, 0, 0, 0.78);
}

.footer-light .footer-title {
  color: rgba(0, 0, 0, 0.9);
}

.footer-light .footer-text {
  color: rgba(0, 0, 0, 0.68);
}

.footer-light .footer-links a {
  color: rgba(0, 0, 0, 0.72);
}

.footer-light .footer-bottom {
  border-top: 1px solid rgba(255, 170, 0, 0.45);
}

.footer-light .footer-bottom a {
  color: #FFAA00;
}

.footer-light .footer-bottom a:hover {
  color: #000000;
}

/* ================================
   Footer Social Icons
   ================================ */

.social-icons {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icons li {
  margin: 0;
}

.social-icons a {
  color: #ffffff;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  text-decoration: none;
  transition:
    background-color 0.2s ease-in-out,
    color 0.2s ease-in-out,
    transform 0.2s ease-in-out;
}

.social-icons a.facebook {
  background-color: #1877f2;
}

.social-icons a.youtube {
  background-color: #ff0000;
}

.social-icons a.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.social-icons a.tiktok {
  background-color: #000000;
}

.social-icons a:hover {
  background: #FFAA00;
  color: #000000;
  transform: translateY(-2px);
}

/* ================================
   Footer Bottom
   ================================ */

.footer-bottom {
  margin-top: 35px;
  padding-top: 20px;
  text-align: right;
}

.footer-bottom a {
  text-decoration: none;
  font-weight: 600;
}

/* ================================
   Footer Mobile
   ================================ */

@media (max-width: 767px) {
  .footer {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
  }
}