/* -----------------------------------------
    DARK PREMIUM FOOTER — Hype & Hues
----------------------------------------- */

.footer {
  background: #0f0f0f;
  padding: 60px 0 25px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer .container {
  width: 90%;
  margin: auto;
  max-width: 1300px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 50px;
  margin-bottom: 40px;
}

.footer-title {
  color: #fff;
  font-size: 18px;
  margin-bottom: 14px;
  font-weight: 600;
}

.footer-text {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Remove list dots completely */
.footer-links {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

/* Reset list spacing */
.footer-links li {
  margin-bottom: 10px;
}

/* Link base */
.footer-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ccc;
  text-decoration: none;
  transition: .3s ease;
}

/* Hover color for text */
.footer-links a:hover {
  color: #f5c3cf;
}

/* Icon base style */
.footer-links ion-icon {
  font-size: 18px;
  transition: .3s ease;
  color: #bbb;
  min-width: 18px;           /* stops side-shifting */
}

/* Gradient hover icon */
.footer-links a:hover ion-icon {
  background: linear-gradient(135deg, #fedae0, #f5b2be, #b76e79);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateX(3px);
  color: transparent;
}


/* ------------------------------
   SOCIAL ICONS WITH GRADIENTS
------------------------------ */

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.footer-social .social-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1b1b1b;
  transition: 0.3s ease;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
}

/* X */
.footer-social .x:hover {
  background: linear-gradient(135deg, #000000, #434343);
  transform: translateY(-4px) scale(1.05);
}

/* Instagram gradient */
.footer-social .insta:hover {
  background: linear-gradient(135deg, #feda75, #fa7e1e, #d62976, #962fbf);
  transform: translateY(-4px) scale(1.05);
}

/* WhatsApp */
.footer-social .wa:hover {
  background: linear-gradient(135deg, #25D366, #128C7E);
  transform: translateY(-4px) scale(1.05);
}

/* Facebook */
.footer-social .fb:hover {
  background: linear-gradient(135deg, #1877f2, #3b5998);
  transform: translateY(-4px) scale(1.05);
}

.footer-social .social-icon i {
  font-size: 20px;
  line-height: 1;
}

.footer-newsletter {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.footer-newsletter input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 8px;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}

.footer-newsletter button {
  padding: 10px 16px;
  background: #b76e79;
  border-radius: 8px;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: .3s ease;
}

.footer-newsletter button:hover {
  background: #a45c67;
}

.footer-bottom {
  text-align: center;
  color: #777;
  font-size: 13px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
