/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(229, 38, 36, 0.7); 
    }
    70% { 
        box-shadow: 0 0 0 20px rgba(229, 38, 36, 0); 
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.restaurant-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.restaurant-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.logo-glow {
    animation: pulse-glow 3s infinite;
}

.text-gradient {
    background: linear-gradient(135deg, #e52624 0%, #ab0202 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Sobrescribir gradientes existentes */
.bg-gradient-to-r.from-blue-600.to-purple-600 {
    background: linear-gradient(to right, #e52624, #ab0202) !important;
}

/* Footer personalizado */
.footer-custom-bg {
    background: #000000;
}

/* Ícono del footer con gradiente rojo */
.footer-custom-bg .bg-gradient-to-r.from-blue-600.to-purple-600 {
    background: linear-gradient(to right, #e52624, #ab0202) !important;
}

/* ==========================================
   WELCOME LOADING INDICATOR
   ========================================== */

.welcome-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 60;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.welcome-loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.welcome-loading-icon {
    background: linear-gradient(to right, #e52624, #ab0202);
    border-radius: 1rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    animation: pulse-glow 3s infinite;
}

.welcome-loading-icon i {
    color: white;
    font-size: 1.5rem;
}

.welcome-loading-logo {
    height: 32px;
    margin-bottom: 8px;
}

.welcome-loading-text {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
}