/* Styles CSS pour ONG AFAD */

* {
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}

.hidden-page {
  display: none;
}

.hero-bg {
  background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
}

.gradient-text {
  background: linear-gradient(135deg, #059669, #10b981, #34d399);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #059669, #10b981);
  margin: 0 auto;
  border-radius: 2px;
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #059669, #10b981);
  z-index: 9999;
  transition: width 0.3s ease;
}

.progress-initial {
  width: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

@keyframes btnPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(249, 115, 22, 0);
  }
}

.animate-fade-up {
  animation: fadeUp 1s ease-out;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

.animate-slide-in {
  animation: slideIn 0.5s ease-out;
}

.btn-pulse {
  animation: btnPulse 2s infinite;
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.logo-fallback {
  display: none;
}

.success-circle-2 {
  animation: pulse 2s infinite 0.2s;
}

.success-circle-3 {
  animation: pulse 2s infinite 0.4s;
}

.success-circle-4 {
  animation: pulse 2s infinite 0.6s;
}

.form-element-hidden {
  display: none;
}

.fallback-logo {
  display: none;
}

/* Galerie */
.gallery-filter {
  background: #f3f4f6;
  color: #4b5563;
}

.gallery-filter:hover {
  background: #e5e7eb;
}

.gallery-filter.active {
  background: linear-gradient(135deg, #059669, #10b981);
  color: white;
}

.gallery-item {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Lightbox */
#lightbox {
  backdrop-filter: blur(10px);
}

#lightboxImage {
  animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
