/* Custom CSS additionnel pour Destination Sahara */

/* Animation de flottement pour la section Hero */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

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

/* Glassmorphism Classes */
.glass-panel {
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 26, 0.1);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Text Shadow for Hero titles over backgrounds */
.text-shadow-md {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.text-shadow-sm {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* Custom Sand gradient overlays */
.bg-sand-gradient {
    background: linear-gradient(to bottom, rgba(250, 248, 245, 0.8) 0%, rgba(250, 248, 245, 0.95) 80%, rgba(250, 248, 245, 1) 100%);
}

.bg-dune-gradient {
    background: linear-gradient(135deg, #c2410c 0%, #f97316 50%, #f59e0b 100%);
}
