.ember-footer {
  background: url('/kuvat/hiillos_hehku.jpg') center/cover;
  position: relative;
  overflow: hidden;
}

.ember-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.ember-footer .container {
  position: relative;
  z-index: 1;
}

/* Animaatio hehkulle */
@keyframes emberGlow {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 0.9; }
}

.ember-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 40%, rgba(255, 100, 0, 0.3) 0%, rgba(255, 0, 0, 0) 50%);
  animation: emberGlow 4s ease-in-out infinite;
  z-index: 0;
}
