footer {
  background: #FBF3EA;
  margin-top: 4rem;
  padding: 3rem 0 1.5rem;
  border-radius: 2rem 2rem 0 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}

.footer-content > div:first-child {
  flex: 1;
  min-width: 250px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4B3B38;
}

.footer-content > div:first-child i {
  color: #F472B6;
  margin-right: 6px;
}

.social-icons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.social-icons a {
  font-size: 1.5rem;
  color: #A2816E;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.social-icons a:hover {
  color: #F59E7A;
  background: rgba(245, 158, 122, 0.1);
  transform: translateY(-2px);
}

.bunny-silhouette {
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 8px;
  opacity: 0.2;
  margin-top: 2rem;
  color: #A2816E;
}

footer .copyright {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #8B7B74;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}

/* ===== 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-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: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
  
  .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: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
  
  .bunny-silhouette {
    font-size: 1rem;
    letter-spacing: 4px;
  }
  
  footer .copyright {
    font-size: 0.75rem;
  }
}