/* =====================
   Modern Footer with Bubble Effects
   ===================== */

/* FOOTER BASE */
.site-footer.footer {
  --footer-background:#0c0c0c;
  position: relative;
  overflow: hidden;
  background: var(--footer-background);
  color: #f5f5f5;
  font-family: 'Inter', sans-serif;
  margin-top: 80px;
}



/* CONTENT GRID */
.footer .content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  padding: 3rem 2rem;
  background: var(--footer-background);
}

.footer-logo img {
  width: 120px;
  margin-bottom: 1rem;
  filter: brightness(1.1);
  transition: filter 0.3s ease;
}

.footer-logo img:hover {
  filter: brightness(1.3);
}

.footer p {
  font-size: 0.85rem;
  color: #bbb;
  margin: 0;
  line-height: 1.6;
}

/* LINKS */
.footer-links h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}

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

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

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-links a:hover {
  color: #b0d136; /* neon green highlight */
  transform: translateX(5px);
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #b0d136;
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

/* SITE INFO */
.site-info {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8rem;
  color: #888;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* FOOTER STRUCTURE STYLES */
.footer-middle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-right h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}

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

.footer-right li {
  margin-bottom: 0.5rem;
}

.footer-right a {
  color: #aaa;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-right a:hover {
  color: #b0d136;
  transform: translateX(5px);
}

.footer-right a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #b0d136;
  transition: width 0.3s ease;
}

.footer-right a:hover::after {
  width: 100%;
}

/* SOCIAL LINKS */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(176, 209, 54, 0.3);
  border-radius: 50%;
  color: #aaa;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.social-links a:hover {
  background: #b0d136;
  color: #1a1a1a;
  border-color: #b0d136;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(176, 209, 54, 0.4);
}

.social-links svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.social-links a:hover svg {
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer .content {
    grid-template-columns: 1fr 1fr;
  }
  .footer-middle {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .footer .content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer .footer-links {
    margin-top: 1rem;
  }
  .footer-middle {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .social-links {
    justify-content: center;
    gap: 10px;
  }
  
  .social-links a {
    width: 35px;
    height: 35px;
  }
  
  .social-links svg {
    width: 18px;
    height: 18px;
  }
}
