/* Footer.css */

footer {
  background: linear-gradient(135deg, #2b2b2b 0%, #1a1a1a 100%);
  color: #e0e0e0;
  padding: 4rem 2rem 2rem;
  margin-top: auto;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-paragraphe {
  text-align: center;
  color: #999;
  font-size: 0.9rem;
  padding: 2rem 0 1rem !important;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  margin-top: 2rem;
}

.footer-paragraphe::before {
  content: '© ';
}

/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-to-top.visible {
  display: flex;
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.scroll-to-top i {
  font-size: 1.2rem !important;
  padding: 0 !important;
}

@media (max-width: 768px) {
  footer {
    padding: 3rem 1.5rem 1.5rem;
  }

  .scroll-to-top {
    width: 45px;
    height: 45px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}