/* ============================================
   FOOTER - Bright & Playful
   ============================================ */

footer {
  background: linear-gradient(135deg, #FFF5E6, #FFF8F0);
  margin-top: 4rem;
  padding: 3rem 0 1.5rem;
  border-radius: 2rem 2rem 0 0;
  position: relative;
  overflow: hidden;
}

/* Playful paw print decoration */
footer::before {
  content: '🐾🐾🐾';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 1.5rem;
  opacity: 0.1;
  letter-spacing: 5px;
}

footer::after {
  content: '🐰';
  position: absolute;
  bottom: 20px;
  left: 30px;
  font-size: 2rem;
  opacity: 0.08;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.footer-content > div:first-child {
  flex: 1;
  min-width: 250px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4B3B38;
  font-weight: 600;
}

.footer-content > div:first-child i {
  background: linear-gradient(135deg, #FF9F4A, #FFB7B2);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-right: 6px;
  font-size: 1.1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-icons a {
  font-size: 1.5rem;
  transition: var(--bounce-transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: white;
  box-shadow: var(--soft-shadow);
}

.social-icons a:nth-child(1) { color: #E4405F; }
.social-icons a:nth-child(2) { color: #000000; }
.social-icons a:nth-child(3) { color: #1877F2; }
.social-icons a:nth-child(4) { color: #25D366; }

.social-icons a:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--playful-shadow);
}

.bunny-silhouette {
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 8px;
  opacity: 0.3;
  margin-top: 2rem;
  color: #FF9F4A;
}

footer .copyright {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #8B7B74;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(255, 159, 74, 0.2);
  font-weight: 500;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablets */
@media (max-width: 1024px) {
  footer {
    padding: 2.5rem 0 1.2rem;
    margin-top: 3rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Mobile Devices */
@media (max-width: 780px) {
  footer {
    padding: 2rem 0 1rem;
    margin-top: 2.5rem;
    border-radius: 1.5rem 1.5rem 0 0;
  }
  
  footer::before {
    font-size: 1rem;
    top: 10px;
    right: 15px;
  }
  
  footer::after {
    font-size: 1.5rem;
    bottom: 10px;
    left: 15px;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-content > div:first-child {
    font-size: 0.9rem;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .social-icons a {
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
  }
  
  .bunny-silhouette {
    font-size: 1.2rem;
    letter-spacing: 6px;
    margin-top: 1.5rem;
  }
  
  footer .copyright {
    font-size: 0.8rem;
    margin-top: 1rem;
    padding-top: 1rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  footer {
    padding: 1.5rem 0 0.8rem;
    margin-top: 2rem;
    border-radius: 1.2rem 1.2rem 0 0;
  }
  
  .footer-content > div:first-child {
    font-size: 0.85rem;
  }
  
  .social-icons a {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
  
  .bunny-silhouette {
    font-size: 1rem;
    letter-spacing: 4px;
  }
  
  footer .copyright {
    font-size: 0.75rem;
  }
}