/* ==============================
   FOOTER STYLES
================================= */
.footer {
  background: #111;
  color: #fff;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-about h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #ff1b6b !important; /* warm accent to match guitar tone vibe */
}

.footer-about p {
  line-height: 1.6;
  font-size: 0.95rem;
  color: #ddd;
}

.footer-links h4,
.footer-social h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #ff1b6b !important;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #45caff !important;
}

/* Social Icons */
.footer-social .social-icons {
  display: flex;
  gap: 12px;
}

.footer-social .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #222;
  color: #fff;
  transition: background 0.3s ease, transform 0.3s ease;
}

.footer-social .social-link:hover {
  background: #45caff;
  transform: translateY(-4px);
}

/* Bottom Section */
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
  margin-top: 40px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #aaa;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer {
    padding: 40px 15px;
  }

  .footer-container {
    gap: 30px;
  }

  .footer-about h3 {
    text-align: center;
  }

  .footer-links,
  .footer-social {
    text-align: center;
  }

  .footer-social .social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-about p {
    font-size: 0.9rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }
}
