/**
 * Glass Effects CSS - Simple & Clean
 * Chemin: styles/glass-effects.css
 * Effets glassmorphism simples pour navigation
 */

/* Base glass effect - simple */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Animations simples */
@keyframes slide-up {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse-soft {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

@keyframes scale-in {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.animate-slide-up { animation: slide-up 0.3s ease-out; }
.animate-pulse-soft { animation: pulse-soft 2s ease-in-out infinite; }
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-scale-in { animation: scale-in 0.2s ease-out; }

/* Custom colors */
:root {
    --primary: #e97a29;
    --primary-dark: #c66c23;
}

.text-primary { color: var(--primary); }
.bg-primary { background-color: var(--primary); }
.from-primary { --tw-gradient-from: var(--primary); }
.to-primary-dark { --tw-gradient-to: var(--primary-dark); }

/* Hover effects */
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:scale-105:hover { transform: scale(1.05); }

/* Transitions */
.transition-all { transition: all 0.3s ease; }

/* Mobile responsive */
@media (min-width: 1024px) {
    .lg\:hidden { display: none; }
}

/* Fallback for unsupported browsers */
@supports not (backdrop-filter: blur(10px)) {
    .glass {
        background: rgba(255, 255, 255, 0.9);
    }
}