/* =========================================
   FOOTER — BOUCHAN'S STUDIO 2026
   ========================================= */

.footer {
  background-color: var(--black-deep);
  padding: 60px 40px 30px;
  color: var(--white-pure);
  border-top: 3px solid var(--cyan);
  box-shadow: 0 -4px 12px rgba(0, 234, 255, 0.2);
}

/* TOP SECTION */
.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

/* LOGO */
.footer-logo img {
  width: 160px;
  filter: drop-shadow(0 0 8px var(--cyan));
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
}

/* TITLES */
.footer h3 {
  color: var(--cyan);
  font-size: 1.2rem;
  margin-bottom: 16px;
  font-weight: 700;
}

/* LINKS */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--white-pure);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--cyan);
  padding-left: 6px;
}

/* CONTACT */
.footer-contact p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-contact a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--yellow-neon);
}

/* SOCIAL */
.footer-social .social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white-pure);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--cyan);
  color: var(--black-deep);
  box-shadow: 0 0 12px var(--cyan);
}

/* BOTTOM SECTION */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo img {
    margin: 0 auto;
  }

  .footer-social .social-icons {
    justify-content: center;
  }
}
